-
Notifications
You must be signed in to change notification settings - Fork 227
/
plane_detection_page.dart
77 lines (68 loc) · 2.18 KB
/
plane_detection_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
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;
class PlaneDetectionPage extends StatefulWidget {
@override
_PlaneDetectionPageState createState() => _PlaneDetectionPageState();
}
class _PlaneDetectionPageState extends State<PlaneDetectionPage> {
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('Plane Detection Sample')),
body: Container(
child: ARKitSceneView(
showFeaturePoints: true,
planeDetection: ARPlaneDetection.horizontal,
onARKitViewCreated: onARKitViewCreated,
),
),
);
void onARKitViewCreated(ARKitController arkitController) {
this.arkitController = arkitController;
this.arkitController.onAddNodeForAnchor = _handleAddAnchor;
this.arkitController.onUpdateNodeForAnchor = _handleUpdateAnchor;
}
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(
transparency: 0.5,
diffuse: ARKitMaterialProperty.color(Colors.white),
)
],
);
node = ARKitNode(
geometry: plane,
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);
}
}