BoundingBoxD constructor
BoundingBoxD({
- StructPointer<
BoundingBoxD> ? op, - Vector3D? min,
- Vector3D? max,
Implementation
BoundingBoxD({
super.op,
Vector3D? min,
Vector3D? max,
}) :
_min = min ?? .zero(),
_max = max ?? .zero();