-
Notifications
You must be signed in to change notification settings - Fork 240
Expand file tree
/
Copy pathmidas_page.dart
More file actions
109 lines (95 loc) · 3.09 KB
/
midas_page.dart
File metadata and controls
109 lines (95 loc) · 3.09 KB
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
100
101
102
103
104
105
106
107
108
109
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 MidasPage extends StatefulWidget {
const MidasPage({super.key});
@override
State<MidasPage> createState() => _MidasPageState();
}
class _MidasPageState extends State<MidasPage> {
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('Midas Sample')),
body: ARKitSceneView(
enableTapRecognizer: true,
onARKitViewCreated: onARKitViewCreated,
planeDetection: ARPlaneDetection.horizontalAndVertical,
environmentTexturing:
ARWorldTrackingConfigurationEnvironmentTexturing.automatic,
),
);
void onARKitViewCreated(ARKitController arkitController) {
this.arkitController = arkitController;
this.arkitController.onAddNodeForAnchor = _handleAddAnchor;
this.arkitController.onUpdateNodeForAnchor = _handleUpdateAnchor;
this.arkitController.onNodeTap = (nodes) => onNodeTapHandler(nodes);
final material = ARKitMaterial(
lightingModelName: ARKitLightingModel.lambert,
diffuse: ARKitMaterialProperty.image('earth.jpg'),
);
final sphere = ARKitSphere(
materials: [material],
radius: 0.1,
);
final node = ARKitNode(
geometry: sphere,
position: vector.Vector3(0, 0, -0.5),
);
this.arkitController.add(node);
}
void onNodeTapHandler(List<String> nodesList) {
final name = nodesList.first;
arkitController.update(name, materials: [
ARKitMaterial(
lightingModelName: ARKitLightingModel.physicallyBased,
diffuse: ARKitMaterialProperty.color(
Colors.yellow[600]!,
),
metalness: ARKitMaterialProperty.value(1),
roughness: ARKitMaterialProperty.value(0),
)
]);
}
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);
}
}