Function
Constructs a Point or a Vector with the specified coordinates.
Syntax
#include <dx/dx.h>
Point DXPt(double x, double y, double z)
Point DXVec(double x, double y, double z)
Functional Details
A
Point
or
Vector
is defined as
typedef struct point {
float x, y, z;
} Point, Vector;
Return Value
Return the point or vector.
See Also
[Data Explorer Home Page | Contact Data Explorer | Same document on Data Explorer Home Page ]