Plane constructor
Implementation
Plane([this.width = double.infinity,this.height= double.infinity]):super(type: ShapeType.plane ){
// World oriented normal
worldNormal = Vec3();
worldNormalNeedsUpdate = true;
boundingSphereRadius = double.infinity;
}