Point3::Point3

Point3::Point3
SF_INLINE Point3();
SF_INLINE explicit Point3(T value);
SF_INLINE Point3(T x2, T y2, T z2);
SF_INLINE Point3(const Point3<T> & pt);
Description

Point3 class constructors initializes a new instance of the point with the specified coordinates. If no parameters are passed, x, y and z values are undefined.

Parameters
Parameters 
Description 
T value 
A value which initializes both the x, y and z coordinate values. 
T x2 
A value which initialize the x coordinate value. 
T y2 
A value which initialize the y coordinate value. 
T z2 
A value which initialize the z coordinate value. 
const Point3<T> & pt 
A point whose x, y and z coordinate values initialize the local x, y and z coordinates respectively.