0

In Flutter the transform method for path requires at Float64List to represent a Matrix4. How can one convert a Matrix4 into a Float64List to be used in path.transform()?

Flutter Path Transform: https://api.flutter.dev/flutter/dart-ui/Path/transform.html

Kdigital
  • 3,795
  • 3
  • 28
  • 24

1 Answers1

0

As @pskink commented, Matrix4d.storage returns at Float64List.

Kdigital
  • 3,795
  • 3
  • 28
  • 24