Bounds constructor
Bounds({})
Implementation
Bounds({
this.boxInitialized = false,
BoundingBox? box,
this.sphereInitialized = false,
BoundingSphere? sphere
}){
this.sphere = sphere ?? BoundingSphere();
this.box = box ?? BoundingBox();
}