Point3::Offset

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

Offset offsets the point by adding values to its coordinate values. A call to the Offset function is equivalent to calling the += operator.

Parameters
Parameters 
Description 
const Point3<T> & pt 
A point whose coordinate values are added to the coordinate values of the original point. 
T val 
A fixed value added to both the x, y and z coordinate values of the current point. 
T x2 
Variable whose value is added to the x coordinate of the current point. 
T y2 
Variable whose value is added to the y coordinate of the current point. 
T z2 
Variable whose value is added to the z coordinate of the current point. 
Return Value

Point3 resulting from the offset operation.