Plane constructor

Plane()

Implementation

Plane():super(type: ShapeType.plane ){
  // World oriented normal
  worldNormal = Vector3.zero();
  worldNormalNeedsUpdate = true;
  boundingSphereRadius = double.infinity;
}