C# Class Glare.Plane2

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

Public Properties

Property Type Description
Distance Length
Normal Vector2d

Public Methods

Method Description
NormalizeInPlace ( ) : void

Normalize the Plane2 in place.

Plane2 ( Double normalX, Double normalY, Length distance ) : System

Initialise the Plane2.

Plane2 ( Vector2d normal, Length distance ) : System

Initialise the Plane2.

Method Details

NormalizeInPlace() public method

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

Plane2() public method

Initialise the Plane2.
public Plane2 ( Double normalX, Double normalY, Length distance ) : System
normalX Double
normalY Double
distance Length
return System

Plane2() public method

Initialise the Plane2.
public Plane2 ( Vector2d normal, Length distance ) : System
normal Vector2d
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 Plane2.
public Vector2d Normal
return Vector2d