Glare.Plane3d.Plane3d C# (CSharp) Method

Plane3d() public method

Initialise the Plane3d.
public Plane3d ( Double normalX, Double normalY, Double normalZ, Double distance ) : System
normalX Double
normalY Double
normalZ Double
distance Double
return System
        public Plane3d( Double normalX ,  Double normalY ,  Double normalZ , Double distance)
        {
            Normal = new Vector3d( normalX ,  normalY ,  normalZ );
            Distance = distance;
        }

Same methods

Plane3d::Plane3d ( Vector3d normal, Double distance ) : System