Glare.Plane4.Plane4 C# (CSharp) Method

Plane4() public method

Initialise the Plane4.
public Plane4 ( Double normalX, Double normalY, Double normalZ, Double normalW, Length distance ) : System
normalX Double
normalY Double
normalZ Double
normalW Double
distance Length
return System
        public Plane4( Double normalX ,  Double normalY ,  Double normalZ ,  Double normalW , Length distance)
        {
            Normal = new Vector4d( normalX ,  normalY ,  normalZ ,  normalW );
            Distance = distance;
        }

Same methods

Plane4::Plane4 ( Vector4d normal, Length distance ) : System