Mitsuba Renderer  0.5.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
mitsuba::TPoint2< T > Struct Template Reference

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...
 
TPoint2operator+= (const TVector2< T > &v)
 Add a vector to this one (e.g. to compute a weighted position) More...
 
TPoint2operator+= (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...
 
TPoint2operator-= (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...
 
TPoint2operator*= (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...
 
TPoint2operator/= (T f)
 Divide the point's coordinates by the given scalar. More...
 
T & operator[] (int i)
 Index into the point's components. More...
 
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

x
 
y
 

Static Public Attributes

static const int dim = 2
 Number of dimensions. More...
 

Detailed Description

template<typename T>
struct mitsuba::TPoint2< T >

Parameterizable two-dimensional point data structure.

Member Typedef Documentation

template<typename T>
typedef T mitsuba::TPoint2< T >::Scalar
template<typename T>
typedef TVector2<T> mitsuba::TPoint2< T >::VectorType

Constructor & Destructor Documentation

template<typename T>
mitsuba::TPoint2< T >::TPoint2 ( )
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.

template<typename T>
mitsuba::TPoint2< T >::TPoint2 ( x,
y 
)
inline

Initialize the point with the specified X, Y and Z components.

template<typename T>
template<typename T2 >
mitsuba::TPoint2< T >::TPoint2 ( const TPoint2< T2 > &  p)
inlineexplicit

Initialize the point with the components of another point.

template<typename T>
template<typename T2 >
mitsuba::TPoint2< T >::TPoint2 ( const TVector2< T2 > &  v)
inlineexplicit

Initialize the point with the components of a vector data structure.

template<typename T>
mitsuba::TPoint2< T >::TPoint2 ( val)
inlineexplicit

Initialize all components of the the point with the specified value.

template<typename T>
mitsuba::TPoint2< T >::TPoint2 ( Stream stream)
inlineexplicit

Unserialize a point from a binary data stream.

Member Function Documentation

template<typename T>
bool mitsuba::TPoint2< T >::isZero ( ) const
inline

Return whether or not this point is identically zero.

template<typename T>
bool mitsuba::TPoint2< T >::operator!= ( const TPoint2< T > &  v) const
inline

Inequality test.

template<typename T>
TPoint2 mitsuba::TPoint2< T >::operator* ( f) const
inline

Scale the point's coordinates by the given scalar and return the result.

template<typename T>
TPoint2& mitsuba::TPoint2< T >::operator*= ( f)
inline

Scale the point's coordinates by the given scalar.

template<typename T>
TPoint2 mitsuba::TPoint2< T >::operator+ ( const TVector2< T > &  v) const
inline

Add a vector to a point and return the result.

template<typename T>
TPoint2 mitsuba::TPoint2< T >::operator+ ( const TPoint2< T > &  p) const
inline

Add two points and return the result (e.g. to compute a weighted position)

template<typename T>
TPoint2& mitsuba::TPoint2< T >::operator+= ( const TVector2< T > &  v)
inline

Add a vector to this one (e.g. to compute a weighted position)

template<typename T>
TPoint2& mitsuba::TPoint2< T >::operator+= ( const TPoint2< T > &  p)
inline

Add a point to this one (e.g. to compute a weighted position)

template<typename T>
TPoint2 mitsuba::TPoint2< T >::operator- ( const TVector2< T > &  v) const
inline

Subtract a vector from this point.

template<typename T>
TVector2<T> mitsuba::TPoint2< T >::operator- ( const TPoint2< T > &  p) const
inline

Subtract two points from each other and return the difference as a vector.

template<typename T>
TPoint2 mitsuba::TPoint2< T >::operator- ( ) const
inline

Return a version of the point, which has been flipped along the origin.

template<typename T>
TPoint2& mitsuba::TPoint2< T >::operator-= ( const TVector2< T > &  v)
inline

Subtract a vector from this point.

template<typename T>
TPoint2 mitsuba::TPoint2< T >::operator/ ( f) const
inline

Divide the point's coordinates by the given scalar and return the result.

template<typename T>
TPoint2& mitsuba::TPoint2< T >::operator/= ( f)
inline

Divide the point's coordinates by the given scalar.

template<typename T>
bool mitsuba::TPoint2< T >::operator== ( const TPoint2< T > &  v) const
inline

Equality test.

template<typename T>
T& mitsuba::TPoint2< T >::operator[] ( int  i)
inline

Index into the point's components.

template<typename T>
T mitsuba::TPoint2< T >::operator[] ( int  i) const
inline

Index into the point's components (const version)

template<typename T>
void mitsuba::TPoint2< T >::serialize ( Stream stream) const
inline

Serialize this point to a binary data stream.

template<typename T>
std::string mitsuba::TPoint2< T >::toString ( ) const
inline

Return a readable string representation of this point.

Member Data Documentation

template<typename T>
const int mitsuba::TPoint2< T >::dim = 2
static

Number of dimensions.

template<typename T>
T mitsuba::TPoint2< T >::x
template<typename T>
T mitsuba::TPoint2< T >::y

The documentation for this struct was generated from the following file: