Plane constructor

Plane([
  1. double width = double.infinity,
  2. double height = double.infinity
])

Implementation

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