matrix4 static method

Matrix4? matrix4(
  1. GltfRoot root,
  2. Map<String, Object?> map,
  3. String key
)

Implementation

static Matrix4? matrix4(
  GltfRoot root,
  Map<String, Object?> map,
  String key,
) {
  final entries = floatList(map, key);
  return entries?.let(Matrix4.fromList);
}