-
Notifications
You must be signed in to change notification settings - Fork 227
/
occlusion_page.dart
99 lines (89 loc) · 2.91 KB
/
occlusion_page.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import 'dart:math' as math;
import 'package:arkit_plugin/arkit_plugin.dart';
import 'package:flutter/material.dart';
import 'package:vector_math/vector_math_64.dart' as vector;
import 'package:collection/collection.dart';
class OcclusionPage extends StatefulWidget {
@override
_OcclusionPageState createState() => _OcclusionPageState();
}
class _OcclusionPageState extends State<OcclusionPage> {
late ARKitController arkitController;
ARKitPlane? plane;
ARKitNode? node;
String? anchorId;
@override
void dispose() {
arkitController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) => Scaffold(
appBar: AppBar(title: const Text('Occlusion Sample')),
body: Container(
child: ARKitSceneView(
showFeaturePoints: true,
enableTapRecognizer: true,
planeDetection: ARPlaneDetection.horizontalAndVertical,
onARKitViewCreated: onARKitViewCreated,
),
),
);
void onARKitViewCreated(ARKitController arkitController) {
this.arkitController = arkitController;
this.arkitController.onAddNodeForAnchor = _handleAddAnchor;
this.arkitController.onUpdateNodeForAnchor = _handleUpdateAnchor;
this.arkitController.onARTap = (ar) {
final point = ar.firstWhereOrNull(
(o) => o.type == ARKitHitTestResultType.featurePoint,
);
if (point != null) {
_onARTapHandler(point);
}
};
}
void _handleAddAnchor(ARKitAnchor anchor) {
if (!(anchor is ARKitPlaneAnchor)) {
return;
}
_addPlane(arkitController, anchor);
}
void _handleUpdateAnchor(ARKitAnchor anchor) {
if (anchor.identifier != anchorId || anchor is! ARKitPlaneAnchor) {
return;
}
node?.position = vector.Vector3(anchor.center.x, 0, anchor.center.z);
plane?.width.value = anchor.extent.x;
plane?.height.value = anchor.extent.z;
}
void _addPlane(ARKitController controller, ARKitPlaneAnchor anchor) {
anchorId = anchor.identifier;
plane = ARKitPlane(
width: anchor.extent.x,
height: anchor.extent.z,
materials: [ARKitMaterial(colorBufferWriteMask: ARKitColorMask.none)],
);
node = ARKitNode(
geometry: plane,
renderingOrder: -1,
position: vector.Vector3(anchor.center.x, 0, anchor.center.z),
rotation: vector.Vector4(1, 0, 0, -math.pi / 2),
);
controller.add(node!, parentNodeName: anchor.nodeName);
}
void _onARTapHandler(ARKitTestResult point) {
final position = vector.Vector3(
point.worldTransform.getColumn(3).x,
point.worldTransform.getColumn(3).y,
point.worldTransform.getColumn(3).z,
);
final material =
ARKitMaterial(diffuse: ARKitMaterialProperty.color(Colors.red));
final sphere = ARKitSphere(
radius: 0.006,
materials: [material],
);
final node = ARKitNode(geometry: sphere, position: position);
arkitController.add(node);
}
}