This is the base class for all two-component vectors and points. More...
#include "lvecBase2.h"
Public Types | |
enum | { num_components = 2, is_int = 0 } |
typedef const double * | const_iterator |
typedef LSimpleMatrix< double, 1, 2 > | EVector2 |
typedef const double * | iterator |
typedef double | numeric_type |
Public Member Functions | |
LVecBase2d (const LVecBase2d ©) | |
LVecBase2d (double fill_value) | |
LVecBase2d (double x, double y) | |
LVecBase2d (const EVector2 &v) | |
size_t | add_hash (size_t hash) const |
Adds the vector into the running hash. More... | |
size_t | add_hash (size_t hash, double threshold) const |
Adds the vector into the running hash. More... | |
void | add_to_cell (int i, double value) |
void | add_x (double value) |
void | add_y (double value) |
bool | almost_equal (const LVecBase2d &other, double threshold) const |
Returns true if two vectors are memberwise equal within a specified tolerance. More... | |
bool | almost_equal (const LVecBase2d &other) const |
Returns true if two vectors are memberwise equal within a default tolerance based on the numeric type. More... | |
iterator | begin () |
Returns an iterator that may be used to traverse the elements of the matrix, STL-style. More... | |
const_iterator | begin () const |
Returns an iterator that may be used to traverse the elements of the matrix, STL-style. More... | |
int | compare_to (const LVecBase2d &other) const |
This flavor of compare_to uses a default threshold value based on the numeric type. More... | |
int | compare_to (const LVecBase2d &other, double threshold) const |
Sorts vectors lexicographically, componentwise. More... | |
void | componentwise_mult (const LVecBase2d &other) |
double | dot (const LVecBase2d &other) const |
iterator | end () |
Returns an iterator that may be used to traverse the elements of the matrix, STL-style. More... | |
const_iterator | end () const |
Returns an iterator that may be used to traverse the elements of the matrix, STL-style. More... | |
void | fill (double fill_value) |
Sets each element of the vector to the indicated fill_value. More... | |
LVecBase2d | fmax (const LVecBase2d &other) const |
LVecBase2d | fmin (const LVecBase2d &other) const |
void | generate_hash (ChecksumHashGenerator &hashgen) const |
Adds the vector to the indicated hash generator. More... | |
void | generate_hash (ChecksumHashGenerator &hashgen, double threshold) const |
Adds the vector to the indicated hash generator. More... | |
double | get_cell (int i) const |
const double * | get_data () const |
Returns the address of the first of the two data elements in the vector. More... | |
size_t | get_hash () const |
Returns a suitable hash for phash_map. More... | |
size_t | get_hash (double threshold) const |
Returns a suitable hash for phash_map. More... | |
int | get_num_components () const |
Returns the number of elements in the vector, two. More... | |
double | get_x () const |
double | get_y () const |
bool | is_nan () const |
Returns true if any component of the vector is not-a-number, false otherwise. More... | |
double | length () const |
Returns the length of the vector, by the Pythagorean theorem. More... | |
double | length_squared () const |
Returns the square of the vector's length, cheap and easy. More... | |
bool | normalize () |
Normalizes the vector in place. More... | |
bool | operator!= (const LVecBase2d &other) const |
LVecBase2d | operator* (double scalar) const |
void | operator*= (double scalar) |
LVecBase2d | operator+ (const LVecBase2d &other) const |
void | operator+= (const LVecBase2d &other) |
LVecBase2d | operator- () const |
LVecBase2d | operator- (const LVecBase2d &other) const |
void | operator-= (const LVecBase2d &other) |
LVecBase2d | operator/ (double scalar) const |
void | operator/= (double scalar) |
bool | operator< (const LVecBase2d &other) const |
This performs a lexicographical comparison. More... | |
LVecBase2d & | operator= (const LVecBase2d ©) |
LVecBase2d & | operator= (double fill_value) |
bool | operator== (const LVecBase2d &other) const |
double | operator[] (int i) const |
double & | operator[] (int i) |
void | output (ostream &out) const |
LVecBase2d | project (const LVecBase2d &onto) const |
Returns a new vector representing the projection of this vector onto another one. More... | |
void | read_datagram (DatagramIterator &source) |
Reads the vector from the Datagram using get_stdfloat(). More... | |
void | read_datagram_fixed (DatagramIterator &source) |
Reads the vector from the Datagram using get_float32() or get_float64(). More... | |
void | set (double x, double y) |
void | set_cell (int i, double value) |
void | set_x (double value) |
void | set_y (double value) |
void | write_datagram (Datagram &destination) const |
Writes the vector to the Datagram using add_stdfloat(). More... | |
void | write_datagram_fixed (Datagram &destination) const |
Writes the vector to the Datagram using add_float32() or add_float64(), depending on the type of floats in the vector, regardless of the setting of Datagram::set_stdfloat_double(). More... | |
Static Public Member Functions | |
static TypeHandle | get_class_type () |
static void | init_type () |
static int | size () |
Returns 2: the number of components of a LVecBase2. More... | |
static const LVecBase2d & | unit_x () |
Returns a unit X vector. More... | |
static const LVecBase2d & | unit_y () |
Returns a unit Y vector. More... | |
static const LVecBase2d & | zero () |
Returns a zero-length vector. More... | |
Public Attributes | |
EVector2 | _v |
This is the base class for all two-component vectors and points.
Definition at line 1241 of file lvecBase2.h.
|
inline |
Adds the vector into the running hash.
Definition at line 1922 of file lvecBase2.h.
|
inline |
Adds the vector into the running hash.
Definition at line 1988 of file lvecBase2.h.
|
inline |
Returns true if two vectors are memberwise equal within a specified tolerance.
Definition at line 2198 of file lvecBase2.h.
Referenced by TextureReference::is_equivalent().
|
inline |
Returns true if two vectors are memberwise equal within a default tolerance based on the numeric type.
Definition at line 2211 of file lvecBase2.h.
|
inline |
Returns an iterator that may be used to traverse the elements of the matrix, STL-style.
Definition at line 1697 of file lvecBase2.h.
|
inline |
Returns an iterator that may be used to traverse the elements of the matrix, STL-style.
Definition at line 1719 of file lvecBase2.h.
|
inline |
This flavor of compare_to uses a default threshold value based on the numeric type.
Definition at line 1890 of file lvecBase2.h.
|
inline |
Sorts vectors lexicographically, componentwise.
Returns a number less than 0 if this vector sorts before the other one, greater than zero if it sorts after, 0 if they are equivalent (within the indicated tolerance).
Definition at line 1960 of file lvecBase2.h.
|
inline |
Returns an iterator that may be used to traverse the elements of the matrix, STL-style.
Definition at line 1708 of file lvecBase2.h.
|
inline |
Returns an iterator that may be used to traverse the elements of the matrix, STL-style.
Definition at line 1730 of file lvecBase2.h.
|
inline |
Sets each element of the vector to the indicated fill_value.
This is particularly useful for initializing to zero.
Definition at line 1742 of file lvecBase2.h.
|
inline |
Adds the vector to the indicated hash generator.
Definition at line 1940 of file lvecBase2.h.
|
inline |
Adds the vector to the indicated hash generator.
Definition at line 2002 of file lvecBase2.h.
|
inline |
Returns the address of the first of the two data elements in the vector.
The next element occupies the next position consecutively in memory.
Definition at line 1676 of file lvecBase2.h.
Referenced by XFileDataObject::set().
|
inline |
Returns a suitable hash for phash_map.
Definition at line 1911 of file lvecBase2.h.
|
inline |
Returns a suitable hash for phash_map.
Definition at line 1977 of file lvecBase2.h.
|
inline |
Returns the number of elements in the vector, two.
Definition at line 1686 of file lvecBase2.h.
|
inline |
Returns true if any component of the vector is not-a-number, false otherwise.
Definition at line 1566 of file lvecBase2.h.
|
inline |
Returns the length of the vector, by the Pythagorean theorem.
Definition at line 1799 of file lvecBase2.h.
|
inline |
Returns the square of the vector's length, cheap and easy.
Definition at line 1782 of file lvecBase2.h.
|
inline |
Normalizes the vector in place.
Returns true if the vector was normalized, false if it was a zero-length vector.
Definition at line 1816 of file lvecBase2.h.
|
inline |
This performs a lexicographical comparison.
It's of questionable mathematical meaning, but sometimes has a practical purpose for sorting unique vectors, especially in an STL container. Also see compare_to().
Definition at line 1852 of file lvecBase2.h.
|
inline |
Returns a new vector representing the projection of this vector onto another one.
The resulting vector will be a scalar multiple of onto.
Definition at line 1837 of file lvecBase2.h.
|
inline |
Reads the vector from the Datagram using get_stdfloat().
Definition at line 2297 of file lvecBase2.h.
|
inline |
Reads the vector from the Datagram using get_float32() or get_float64().
Definition at line 2259 of file lvecBase2.h.
|
inlinestatic |
Returns 2: the number of components of a LVecBase2.
Definition at line 1555 of file lvecBase2.h.
|
inlinestatic |
Returns a unit X vector.
Definition at line 1504 of file lvecBase2.h.
|
inlinestatic |
Returns a unit Y vector.
Definition at line 1514 of file lvecBase2.h.
|
inline |
Writes the vector to the Datagram using add_stdfloat().
This is appropriate when you want to write the vector using the standard width setting, especially when you are writing a bam file.
Definition at line 2281 of file lvecBase2.h.
|
inline |
Writes the vector to the Datagram using add_float32() or add_float64(), depending on the type of floats in the vector, regardless of the setting of Datagram::set_stdfloat_double().
This is appropriate when you want to write a fixed-width value to the datagram, especially when you are not writing a bam file.
Definition at line 2239 of file lvecBase2.h.
|
inlinestatic |
Returns a zero-length vector.
Definition at line 1494 of file lvecBase2.h.
Referenced by GeomVertexReader::get_data2d().