Glare.Plane3f.Plane3f C# (CSharp) Method

Plane3f() public method

Initialise the Plane3f.
public Plane3f ( System.Single normalX, System.Single normalY, System.Single normalZ, System.Single distance ) : System
normalX System.Single
normalY System.Single
normalZ System.Single
distance System.Single
return System
        public Plane3f( Single normalX ,  Single normalY ,  Single normalZ , Single distance)
        {
            Normal = new Vector3f( normalX ,  normalY ,  normalZ );
            Distance = distance;
        }

Same methods

Plane3f::Plane3f ( Vector3f normal, System.Single distance ) : System