Point3::=

Point3::=
SF_INLINE const Point3<T>& operator =(const Point3<T> & pt);
SF_INLINE const Point3<T>& operator =(T val);
Description

= operator assigns a fixed value (number or another Point3) to the x, y and z coordinate values of the current point.

Parameters
Parameters 
Description 
const Point3<T> & pt 
The x, y and z coordinate values of the Point3 are set to the x, y and z coordinate values of the current point respectively. 
T val 
A fixed value that the coordinate values of the current point are set to. 
Return Value

Assigned Point3.