storage method

Float64List storage(
  1. Vector3 vertices,
  2. Matrix4 transform
)

Implementation

Float64List storage(Vector3 vertices, Matrix4 transform){
  final toDraw = Vector3.copy(vertices);

  transform.transform3(toDraw);
  toDraw.scale(scene.camera.zoom);
  return toDraw.storage;
}