getMeshBoundingBox function

BoundingBox getMeshBoundingBox(
  1. Mesh mesh
)

Compute mesh bounding box limits.

Implementation

BoundingBox getMeshBoundingBox(Mesh mesh) {
  return BoundingBox.fromRef(library.GetMeshBoundingBox(mesh.ref));
}