We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d99c903 commit 5d4917fCopy full SHA for 5d4917f
README.md
@@ -151,6 +151,19 @@ void main() {
151
}
152
```
153
154
+8\. Use 64bit float precision (instead of 32bit)
155
+
156
+```dart
157
+// Use different import statement.
158
+// Which is a drop-in replacement for 'package:vector_math/vector_math.dart'
159
+import 'package:vector_math/vector_math_64.dart';
160
+void main() {
161
+ // Types work the same, but using 64 bit storage.
162
+ Vector3 x = Vector3.zero();
163
+ Matrix4 m = Matrix4.identity();
164
+}
165
+```
166
167
## Development
168
169
To run the unit tests:
0 commit comments