Creates a halfspace from the center point and the cosine of the angle.

Namespace: Spherical
Assembly: SphericalLib (in SphericalLib.dll) Version: 1.0.5951.32246 (1.0.0.0)

Syntax

C#
public Halfspace(
	double x,
	double y,
	double z,
	bool normalize,
	double cos0
)
Visual C++
public:
Halfspace(
	double x, 
	double y, 
	double z, 
	bool normalize, 
	double cos0
)
F#
new : 
        x:float * 
        y:float * 
        z:float * 
        normalize:bool * 
        cos0:float -> Halfspace

Parameters

x
Type: System..::..Double
The X coordinate.
y
Type: System..::..Double
The Y coordinate.
z
Type: System..::..Double
The Z coordinate.
normalize
Type: System..::..Boolean
The flag that determines whether the vector is normalized.
cos0
Type: System..::..Double
The cosine of the radius.

See Also