C# Class Glare.Plane4d

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

Public Properties

Property Type Description
Distance Double
Normal Vector4d

Public Methods

Method Description
NormalizeInPlace ( ) : void

Normalize the Plane4d in place.

Plane4d ( Double normalX, Double normalY, Double normalZ, Double normalW, Double distance ) : System

Initialise the Plane4d.

Plane4d ( Vector4d normal, Double distance ) : System

Initialise the Plane4d.

Method Details

NormalizeInPlace() public method

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

Plane4d() public method

Initialise the Plane4d.
public Plane4d ( Double normalX, Double normalY, Double normalZ, Double normalW, Double distance ) : System
normalX Double
normalY Double
normalZ Double
normalW Double
distance Double
return System

Plane4d() public method

Initialise the Plane4d.
public Plane4d ( Vector4d normal, Double distance ) : System
normal Vector4d
distance Double
return System

Property Details

Distance public property

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

Normal public property

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