C# Class Glare.Plane4

A Vector4d normal with a Length distance from origin.
Show file Open project: Burton-Radons/Alexandria

Public Properties

Property Type Description
Distance Length
Normal Vector4d

Public Methods

Method Description
NormalizeInPlace ( ) : void

Normalize the Plane4 in place.

Plane4 ( Double normalX, Double normalY, Double normalZ, Double normalW, Length distance ) : System

Initialise the Plane4.

Plane4 ( Vector4d normal, Length distance ) : System

Initialise the Plane4.

Method Details

NormalizeInPlace() public method

Normalize the Plane4 in place.
public NormalizeInPlace ( ) : void
return void

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

Plane4() public method

Initialise the Plane4.
public Plane4 ( Vector4d normal, Length distance ) : System
normal Vector4d
distance Length
return System

Property Details

Distance public property

Get or set the distance from origin.
public Length Distance
return Length

Normal public property

Get or set the direction of the Plane4.
public Vector4d Normal
return Vector4d