|
SS_XYZ
|
|
|
A data type that holds 3 Cartesian coordinates of a point in 3D.
struct SS_XYZ
{
double x;
double y;
double z;
};
|
|
Members
|
Member
|
Description
|
x
|
A value containing the x-axis coordinate of the 3D point
|
y
|
A value containing the y-axis coordinate of the 3D point
|
z
|
A value containing the z-axis coordinate of the 3D point
|
|
|
See Also
|
xyz_add, xyz_clear, xyz_equal, xyz_mult
|
|
Header
|
ssdef.h
|
|