Glare.Plane4f.Plane4f C# (CSharp) Method

Plane4f() public method

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

Same methods

Plane4f::Plane4f ( Vector4f normal, System.Single distance ) : System