Point3::SetPoint

Point3::SetPoint
SF_INLINE void SetPoint(T val);
SF_INLINE void SetPoint(T x2, T y2, T z2);
SF_INLINE void SetPoint(const Point3<T> & pt);
Description

SetPoint initializes the x, y and z coordinate values of the current point. A call to the SetPoint function is equivalent to calling the = operator.

Parameters
Parameters 
Description 
T val 
A fixed value that both the x, y and z coordinates of the current point are set to. 
T x2 
The argument that the x coordinate of the Point3 variable is set to. 
T y2 
The argument that the y coordinate of the Point3 variable is set to. 
T z2 
The argument that the z coordinate of the Point3 variable is set to. 
const Point3<T> & pt 
The coordinate values of the Point3 variable are set to the coordinate values of pt.