Creates a halfspace from the center point (x,y,z) and the cosine and sine of the angle.
Namespace: SphericalAssembly: 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,
double sin0
) |
Visual C++ |
---|
public:
Halfspace(
double x,
double y,
double z,
bool normalize,
double cos0,
double sin0
) |
F# |
---|
new :
x:float *
y:float *
z:float *
normalize:bool *
cos0:float *
sin0: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.
- sin0
- Type: System..::..Double
The sine of the radius.
See Also