#include <opennurbs_fpoint.h>
Public Member Functions | |
ON_3fVector ()=default | |
x,y,z not initialized More... | |
ON_3fVector (const ON_3fVector &)=default | |
ON_3fVector (float x, float y, float z) | |
ON_3fVector (const ON_2fPoint &) | |
ON_3fVector (const ON_3fPoint &) | |
ON_3fVector (const ON_2fVector &) | |
ON_3fVector (const float *) | |
ON_3fVector (const ON_2dPoint &) | |
ON_3fVector (const ON_3dPoint &) | |
ON_3fVector (const ON_2dVector &) | |
ON_3fVector (const ON_3dVector &) | |
ON_3fVector (const double *) | |
~ON_3fVector ()=default | |
ON__UINT32 | DataCRC (ON__UINT32 current_remainder) const |
double | Fuzz (double=ON_ZERO_TOLERANCE) const |
bool | IsNotZero () const |
bool | IsPerpendicularTo (const ON_3fVector &, double=ON_DEFAULT_ANGLE_TOLERANCE) const |
bool | IsTiny (double=ON_ZERO_TOLERANCE) const |
Test a vector to see if it is very short More... | |
bool | IsUnitVector () const |
bool | IsUnset () const |
bool | IsValid () const |
bool | IsZero () const |
double | Length () const |
double | LengthSquared () const |
double | MaximumCoordinate () const |
int | MaximumCoordinateIndex () const |
operator const float * () const | |
operator float * () | |
(float*) conversion operators More... | |
bool | operator!= (const ON_3fVector &) const |
float | operator* (const ON_3fVector &) const |
float | operator* (const ON_3fPoint &) const |
double | operator* (const ON_3dVector &) const |
ON_3fVector | operator* (int) const |
ON_3fVector | operator* (float) const |
ON_3dVector | operator* (double) const |
ON_3fVector & | operator*= (float) |
ON_3fVector | operator+ (const ON_3fVector &) const |
ON_3fPoint | operator+ (const ON_3fPoint &) const |
ON_3fVector | operator+ (const ON_2fVector &) const |
ON_3fPoint | operator+ (const ON_2fPoint &) const |
ON_3dVector | operator+ (const ON_3dVector &) const |
ON_3dPoint | operator+ (const ON_3dPoint &) const |
ON_3dVector | operator+ (const ON_2dVector &) const |
ON_3dPoint | operator+ (const ON_2dPoint &) const |
ON_3fVector & | operator+= (const ON_3fVector &) |
ON_3fVector | operator- () const |
ON_3fVector | operator- (const ON_3fVector &) const |
ON_3fPoint | operator- (const ON_3fPoint &) const |
ON_3fVector | operator- (const ON_2fVector &) const |
ON_3fPoint | operator- (const ON_2fPoint &) const |
ON_3dVector | operator- (const ON_3dVector &) const |
ON_3dPoint | operator- (const ON_3dPoint &) const |
ON_3dVector | operator- (const ON_2dVector &) const |
ON_3dPoint | operator- (const ON_2dPoint &) const |
ON_3fVector & | operator-= (const ON_3fVector &) |
ON_3fVector | operator/ (int) const |
ON_3fVector | operator/ (float) const |
ON_3dVector | operator/ (double) const |
ON_3fVector & | operator/= (float) |
bool | operator< (const ON_3fVector &) const |
bool | operator<= (const ON_3fVector &) const |
dictionary order comparisons More... | |
ON_3fVector & | operator= (const ON_3fVector &)=default |
ON_3fVector & | operator= (const ON_2fPoint &) |
use implicit operator=(const ON_3fVector&) More... | |
ON_3fVector & | operator= (const ON_3fPoint &) |
ON_3fVector & | operator= (const ON_2fVector &) |
ON_3fVector & | operator= (const float *) |
ON_3fVector & | operator= (const ON_2dPoint &) |
ON_3fVector & | operator= (const ON_3dPoint &) |
ON_3fVector & | operator= (const ON_2dVector &) |
ON_3fVector & | operator= (const ON_3dVector &) |
ON_3fVector & | operator= (const double *) |
bool | operator== (const ON_3fVector &) const |
bool | operator> (const ON_3fVector &) const |
bool | operator>= (const ON_3fVector &) const |
float & | operator[] (int) |
index operators mimic float[3] behavior More... | |
float | operator[] (int) const |
float & | operator[] (unsigned int) |
float | operator[] (unsigned int) const |
bool | PerpendicularTo (const ON_3fVector &) |
set this vector to be perpendicular to another vector More... | |
void | Reverse () |
void | Rotate (double, const ON_3fVector &) |
void | Rotate (double, double, const ON_3fVector &) |
void | Set (float, float, float) |
set 3d vector value More... | |
void | Transform (const ON_Xform &) |
bool | Unitize () |
ON_3fVector | UnitVector () const |
void | Zero () |
Static Public Member Functions | |
static int | Compare (const ON_3fVector &lhs, const ON_3fVector &rhs) |
A well ordered dictionary compare function that is nan aware and can be used for robust sorting. More... | |
static const ON_3fVector & | UnitVector (int) |
A index driven function to get unit axis vectors. More... | |
Public Attributes | |
float | x |
float | y |
float | z |
Static Public Attributes | |
static const ON_3fVector | NanVector |
static const ON_3fVector | XAxis |
static const ON_3fVector | YAxis |
static const ON_3fVector | ZAxis |
static const ON_3fVector | ZeroVector |
|
default |
x,y,z not initialized
|
default |
|
default |
|
explicit |
|
explicit |
|
explicit |
|
explicit |
|
explicit |
|
explicit |
|
explicit |
|
explicit |
|
explicit |
|
explicit |
|
static |
A well ordered dictionary compare function that is nan aware and can be used for robust sorting.
ON__UINT32 ON_3fVector::DataCRC | ( | ON__UINT32 | current_remainder | ) | const |
double ON_3fVector::Fuzz | ( | double | = ON_ZERO_TOLERANCE | ) | const |
bool ON_3fVector::IsNotZero | ( | ) | const |
bool ON_3fVector::IsPerpendicularTo | ( | const ON_3fVector & | , |
double | = ON_DEFAULT_ANGLE_TOLERANCE |
||
) | const |
bool ON_3fVector::IsTiny | ( | double | = ON_ZERO_TOLERANCE | ) | const |
Test a vector to see if it is very short
tiny_tol | [in] (default = ON_ZERO_TOLERANCE) a nonzero value used as the coordinate zero tolerance. |
( fabs(x) <= tiny_tol && fabs(y) <= tiny_tol && fabs(z) <= tiny_tol )
bool ON_3fVector::IsUnitVector | ( | ) | const |
bool ON_3fVector::IsUnset | ( | ) | const |
bool ON_3fVector::IsValid | ( | ) | const |
bool ON_3fVector::IsZero | ( | ) | const |
double ON_3fVector::Length | ( | ) | const |
double ON_3fVector::LengthSquared | ( | ) | const |
double ON_3fVector::MaximumCoordinate | ( | ) | const |
int ON_3fVector::MaximumCoordinateIndex | ( | ) | const |
ON_3fVector::operator const float * | ( | ) | const |
ON_3fVector::operator float * | ( | ) |
(float*) conversion operators
bool ON_3fVector::operator!= | ( | const ON_3fVector & | ) | const |
float ON_3fVector::operator* | ( | const ON_3fVector & | ) | const |
float ON_3fVector::operator* | ( | const ON_3fPoint & | ) | const |
double ON_3fVector::operator* | ( | const ON_3dVector & | ) | const |
ON_3fVector ON_3fVector::operator* | ( | int | ) | const |
ON_3fVector ON_3fVector::operator* | ( | float | ) | const |
ON_3dVector ON_3fVector::operator* | ( | double | ) | const |
ON_3fVector& ON_3fVector::operator*= | ( | float | ) |
ON_3fVector ON_3fVector::operator+ | ( | const ON_3fVector & | ) | const |
ON_3fPoint ON_3fVector::operator+ | ( | const ON_3fPoint & | ) | const |
ON_3fVector ON_3fVector::operator+ | ( | const ON_2fVector & | ) | const |
ON_3fPoint ON_3fVector::operator+ | ( | const ON_2fPoint & | ) | const |
ON_3dVector ON_3fVector::operator+ | ( | const ON_3dVector & | ) | const |
ON_3dPoint ON_3fVector::operator+ | ( | const ON_3dPoint & | ) | const |
ON_3dVector ON_3fVector::operator+ | ( | const ON_2dVector & | ) | const |
ON_3dPoint ON_3fVector::operator+ | ( | const ON_2dPoint & | ) | const |
ON_3fVector& ON_3fVector::operator+= | ( | const ON_3fVector & | ) |
ON_3fVector ON_3fVector::operator- | ( | ) | const |
ON_3fVector ON_3fVector::operator- | ( | const ON_3fVector & | ) | const |
ON_3fPoint ON_3fVector::operator- | ( | const ON_3fPoint & | ) | const |
ON_3fVector ON_3fVector::operator- | ( | const ON_2fVector & | ) | const |
ON_3fPoint ON_3fVector::operator- | ( | const ON_2fPoint & | ) | const |
ON_3dVector ON_3fVector::operator- | ( | const ON_3dVector & | ) | const |
ON_3dPoint ON_3fVector::operator- | ( | const ON_3dPoint & | ) | const |
ON_3dVector ON_3fVector::operator- | ( | const ON_2dVector & | ) | const |
ON_3dPoint ON_3fVector::operator- | ( | const ON_2dPoint & | ) | const |
ON_3fVector& ON_3fVector::operator-= | ( | const ON_3fVector & | ) |
ON_3fVector ON_3fVector::operator/ | ( | int | ) | const |
ON_3fVector ON_3fVector::operator/ | ( | float | ) | const |
ON_3dVector ON_3fVector::operator/ | ( | double | ) | const |
ON_3fVector& ON_3fVector::operator/= | ( | float | ) |
bool ON_3fVector::operator< | ( | const ON_3fVector & | ) | const |
bool ON_3fVector::operator<= | ( | const ON_3fVector & | ) | const |
dictionary order comparisons
|
default |
ON_3fVector& ON_3fVector::operator= | ( | const ON_2fPoint & | ) |
use implicit operator=(const ON_3fVector&)
ON_3fVector& ON_3fVector::operator= | ( | const ON_3fPoint & | ) |
ON_3fVector& ON_3fVector::operator= | ( | const ON_2fVector & | ) |
ON_3fVector& ON_3fVector::operator= | ( | const float * | ) |
ON_3fVector& ON_3fVector::operator= | ( | const ON_2dPoint & | ) |
ON_3fVector& ON_3fVector::operator= | ( | const ON_3dPoint & | ) |
ON_3fVector& ON_3fVector::operator= | ( | const ON_2dVector & | ) |
ON_3fVector& ON_3fVector::operator= | ( | const ON_3dVector & | ) |
ON_3fVector& ON_3fVector::operator= | ( | const double * | ) |
bool ON_3fVector::operator== | ( | const ON_3fVector & | ) | const |
bool ON_3fVector::operator> | ( | const ON_3fVector & | ) | const |
bool ON_3fVector::operator>= | ( | const ON_3fVector & | ) | const |
float& ON_3fVector::operator[] | ( | int | ) |
index operators mimic float[3] behavior
float ON_3fVector::operator[] | ( | int | ) | const |
float& ON_3fVector::operator[] | ( | unsigned | int | ) |
float ON_3fVector::operator[] | ( | unsigned | int | ) | const |
bool ON_3fVector::PerpendicularTo | ( | const ON_3fVector & | ) |
set this vector to be perpendicular to another vector
void ON_3fVector::Reverse | ( | ) |
void ON_3fVector::Rotate | ( | double | , |
const ON_3fVector & | |||
) |
void ON_3fVector::Rotate | ( | double | , |
double | , | ||
const ON_3fVector & | |||
) |
void ON_3fVector::Set | ( | float | , |
float | , | ||
float | |||
) |
set 3d vector value
void ON_3fVector::Transform | ( | const ON_Xform & | ) |
bool ON_3fVector::Unitize | ( | ) |
|
static |
A index driven function to get unit axis vectors.
index | [in] 0 returns (1,0,0), 1 returns (0,1,0) 2 returns (0,0,1) |
ON_3fVector ON_3fVector::UnitVector | ( | ) | const |
void ON_3fVector::Zero | ( | ) |
|
static |
float ON_3fVector::x |
|
static |
float ON_3fVector::y |
|
static |
float ON_3fVector::z |
|
static |
|
static |