Parameterizable two-dimensional point data structure. More...
#include <mitsuba/mitsuba.h>
Public Types | |
typedef T | Scalar |
typedef TVector2< T > | VectorType |
Public Member Functions | |
TPoint2 () | |
Construct a new point without initializing it. More... | |
TPoint2 (T x, T y) | |
Initialize the point with the specified X, Y and Z components. More... | |
template<typename T2 > | |
TPoint2 (const TPoint2< T2 > &p) | |
Initialize the point with the components of another point. More... | |
template<typename T2 > | |
TPoint2 (const TVector2< T2 > &v) | |
Initialize the point with the components of a vector data structure. More... | |
TPoint2 (T val) | |
Initialize all components of the the point with the specified value. More... | |
TPoint2 (Stream *stream) | |
Unserialize a point from a binary data stream. More... | |
TPoint2 | operator+ (const TVector2< T > &v) const |
Add a vector to a point and return the result. More... | |
TPoint2 | operator+ (const TPoint2 &p) const |
Add two points and return the result (e.g. to compute a weighted position) More... | |
TPoint2 & | operator+= (const TVector2< T > &v) |
Add a vector to this one (e.g. to compute a weighted position) More... | |
TPoint2 & | operator+= (const TPoint2 &p) |
Add a point to this one (e.g. to compute a weighted position) More... | |
TPoint2 | operator- (const TVector2< T > &v) const |
Subtract a vector from this point. More... | |
TVector2< T > | operator- (const TPoint2 &p) const |
Subtract two points from each other and return the difference as a vector. More... | |
TPoint2 & | operator-= (const TVector2< T > &v) |
Subtract a vector from this point. More... | |
TPoint2 | operator* (T f) const |
Scale the point's coordinates by the given scalar and return the result. More... | |
TPoint2 & | operator*= (T f) |
Scale the point's coordinates by the given scalar. More... | |
TPoint2 | operator- () const |
Return a version of the point, which has been flipped along the origin. More... | |
TPoint2 | operator/ (T f) const |
Divide the point's coordinates by the given scalar and return the result. More... | |
TPoint2 & | operator/= (T f) |
Divide the point's coordinates by the given scalar. More... | |
T & | operator[] (int i) |
Index into the point's components. More... | |
T | operator[] (int i) const |
Index into the point's components (const version) More... | |
bool | isZero () const |
Return whether or not this point is identically zero. More... | |
bool | operator== (const TPoint2 &v) const |
Equality test. More... | |
bool | operator!= (const TPoint2 &v) const |
Inequality test. More... | |
void | serialize (Stream *stream) const |
Serialize this point to a binary data stream. More... | |
std::string | toString () const |
Return a readable string representation of this point. More... | |
Public Attributes | |
T | x |
T | y |
Static Public Attributes | |
static const int | dim = 2 |
Number of dimensions. More... | |
Parameterizable two-dimensional point data structure.
typedef T mitsuba::TPoint2< T >::Scalar |
typedef TVector2<T> mitsuba::TPoint2< T >::VectorType |
|
inline |
Construct a new point without initializing it.
This construtor is useful when the point will either not be used at all (it might be part of a larger data structure) or initialized at a later point in time. Always make sure that one of the two is the case! Otherwise your program will do computations involving uninitialized memory, which will probably lead to a difficult-to-find bug.
|
inline |
Initialize the point with the specified X, Y and Z components.
|
inlineexplicit |
Initialize the point with the components of another point.
|
inlineexplicit |
Initialize the point with the components of a vector data structure.
|
inlineexplicit |
Initialize all components of the the point with the specified value.
|
inlineexplicit |
Unserialize a point from a binary data stream.
|
inline |
Return whether or not this point is identically zero.
|
inline |
Inequality test.
|
inline |
Scale the point's coordinates by the given scalar and return the result.
|
inline |
Scale the point's coordinates by the given scalar.
|
inline |
Add a vector to a point and return the result.
|
inline |
Add two points and return the result (e.g. to compute a weighted position)
|
inline |
Add a vector to this one (e.g. to compute a weighted position)
|
inline |
Add a point to this one (e.g. to compute a weighted position)
|
inline |
Subtract a vector from this point.
|
inline |
Subtract two points from each other and return the difference as a vector.
|
inline |
Return a version of the point, which has been flipped along the origin.
|
inline |
Subtract a vector from this point.
|
inline |
Divide the point's coordinates by the given scalar and return the result.
|
inline |
Divide the point's coordinates by the given scalar.
|
inline |
Equality test.
|
inline |
Index into the point's components.
|
inline |
Index into the point's components (const version)
|
inline |
Serialize this point to a binary data stream.
|
inline |
Return a readable string representation of this point.
|
static |
Number of dimensions.
T mitsuba::TPoint2< T >::x |
T mitsuba::TPoint2< T >::y |