libalmath  1.14.5
 All Classes Namespaces Functions Variables
Public Member Functions | Public Attributes
AL::Math::Position3D Struct Reference

Create and play with a Position3D. More...

#include <alposition3d.h>

List of all members.

Public Member Functions

 Position3D ()
 Create a Position3D initialize with 0.0f.
 Position3D (float pInit)
 Create a Position3D initialize with the same float.
 Position3D (float pX, float pY, float pZ)
 Create a Position3D initialize with explicit value.
 Position3D (const std::vector< float > &pFloats)
 Create a Position3D with an std::vector.
Position3D operator+ (const Position3D &pPos2) const
 Overloading of operator + for Position3D.
Position3D operator- (const Position3D &pPos2) const
 Overloading of operator - for Position3D.
Position3D operator+ () const
 Overloading of operator + for Position3D.
Position3D operator- () const
 Overloading of operator - for Position3D.
Position3Doperator+= (const Position3D &pPos2)
 Overloading of operator += for Position3D.
Position3Doperator-= (const Position3D &pPos2)
 Overloading of operator -= for Position3D.
bool operator== (const Position3D &pPos2) const
 Overloading of operator == for Position3D.
bool operator!= (const Position3D &pPos2) const
 Overloading of operator != for Position3D.
Position3D operator* (float pVal) const
 Overloading of operator * for Position3D.
Position3D operator/ (float pVal) const
 Overloading of operator / for Position3D.
Position3Doperator*= (float pVal)
 Overloading of operator *= for Position3D.
Position3Doperator/= (float pVal)
 Overloading of operator /= for Position3D.
float distanceSquared (const Position3D &pPos2) const
 Compute the squared distance between the actual Position3D and the one given in argument.
float distance (const Position3D &pPos2) const
 Compute the distance between the actual Position3D and the one given in argument.
bool isNear (const Position3D &pPos2, const float &pEpsilon=0.0001f) const
 Check if the actual Position3D is near the one give in argument.
float norm () const
 Compute the norm of the actual Position3D.
Position3D normalize () const
 Normalize the actual Position3D.
float dotProduct (const Position3D &pPos2) const
 Compute the dot Product between the actual Position3D and the one give in argument.
Position3D crossProduct (const Position3D &pPos2) const
 Compute the cross Product between the actual Position3D and the one give in argument.
std::vector< float > toVector () const
 Return the Position3D as a vector of float [x, y, z].

Public Attributes

float x
float y
float z

Detailed Description

Create and play with a Position3D.

A Position3D is just defined by x, y and z.

Definition at line 23 of file alposition3d.h.


Constructor & Destructor Documentation

Create a Position3D initialize with 0.0f.

$ \left[\begin{array}{c} x \\ y \\ z \end{array}\right] = \left[\begin{array}{c} 0.0 \\ 0.0 \\ 0.0 \end{array}\right]$

AL::Math::Position3D::Position3D ( float  pInit) [explicit]

Create a Position3D initialize with the same float.

$ \left[\begin{array}{c} x \\ y \\ z \end{array}\right] = \left[\begin{array}{c} pInit \\ pInit \\ pInit \end{array}\right]$

Parameters:
pInitthe float value for each member
AL::Math::Position3D::Position3D ( float  pX,
float  pY,
float  pZ 
)

Create a Position3D initialize with explicit value.

$ \left[\begin{array}{c} x \\ y \\ z \end{array}\right] = \left[\begin{array}{c} pX \\ pY \\ pZ \end{array}\right]$

Parameters:
pXthe float value for x
pYthe float value for y
pZthe float value for z
AL::Math::Position3D::Position3D ( const std::vector< float > &  pFloats)

Create a Position3D with an std::vector.

$ \left[\begin{array}{c} x \\ y \\ z \end{array}\right] = \left[\begin{array}{c} pFloats[0] \\ pFloats[1] \\ pFloats[2] \end{array}\right]$

Parameters:
pFloatsAn std::vector<float> of size 3 for respectively: x, y and z

Member Function Documentation

Compute the cross Product between the actual Position3D and the one give in argument.

$pRes.x = pPos1.y*pPos2.z - pPos1.z*pPos2.y$
$pRes.y = pPos1.z*pPos2.x - pPos1.x*pPos2.z$
$pRes.z = pPos1.x*pPos2.y - pPos1.y*pPos2.x$

Parameters:
pPos2the second Position3D
Returns:
the Position3D cross product between the two Position3D
float AL::Math::Position3D::distance ( const Position3D pPos2) const

Compute the distance between the actual Position3D and the one given in argument.

$\sqrt{(pPos1.x-pPos2.x)^2+(pPos1.y-pPos2.y)^2+(pPos1.z-pPos2.z)^2}$

Parameters:
pPos2the second Position3D
Returns:
the float distance between the two Position3D
float AL::Math::Position3D::distanceSquared ( const Position3D pPos2) const

Compute the squared distance between the actual Position3D and the one given in argument.

$(pPos1.x-pPos2.x)^2+(pPos1.y-pPos2.y)^2+(pPos1.z-pPos2.z)^2$

Parameters:
pPos2the second Position3D
Returns:
the float squared distance between the two Position3D
float AL::Math::Position3D::dotProduct ( const Position3D pPos2) const

Compute the dot Product between the actual Position3D and the one give in argument.

$result = (pPos1.x*pPos2.x + pPos1.y*pPos2.y + pPos1.z*pPos2.z)$

Parameters:
pPos2the second Position3D
Returns:
the float dot product between the two Position3D
bool AL::Math::Position3D::isNear ( const Position3D pPos2,
const float &  pEpsilon = 0.0001f 
) const

Check if the actual Position3D is near the one give in argument.

Parameters:
pPos2the second Position3D
pEpsilonan optionnal epsilon distance
Returns:
true if the distance between the two Position3D is less than pEpsilon
float AL::Math::Position3D::norm ( ) const

Compute the norm of the actual Position3D.

$\sqrt{pPos.x^2+pPos.y^2+pPos.z^2}$

Returns:
the float norm of the Position3D

Normalize the actual Position3D.

$result = \frac{pPos}{norm(pPos)}$

Returns:
the Position3D normalized
bool AL::Math::Position3D::operator!= ( const Position3D pPos2) const

Overloading of operator != for Position3D.

Parameters:
pPos2the second Position3D
Position3D AL::Math::Position3D::operator* ( float  pVal) const

Overloading of operator * for Position3D.

Parameters:
pValthe float factor
Position3D& AL::Math::Position3D::operator*= ( float  pVal)

Overloading of operator *= for Position3D.

Parameters:
pValthe float factor
Position3D AL::Math::Position3D::operator+ ( const Position3D pPos2) const

Overloading of operator + for Position3D.

Parameters:
pPos2the second Position3D
Position3D AL::Math::Position3D::operator+ ( ) const

Overloading of operator + for Position3D.

Position3D& AL::Math::Position3D::operator+= ( const Position3D pPos2)

Overloading of operator += for Position3D.

Parameters:
pPos2the second Position3D
Position3D AL::Math::Position3D::operator- ( const Position3D pPos2) const

Overloading of operator - for Position3D.

Parameters:
pPos2the second Position3D
Position3D AL::Math::Position3D::operator- ( ) const

Overloading of operator - for Position3D.

Position3D& AL::Math::Position3D::operator-= ( const Position3D pPos2)

Overloading of operator -= for Position3D.

Parameters:
pPos2the second Position3D
Position3D AL::Math::Position3D::operator/ ( float  pVal) const

Overloading of operator / for Position3D.

Parameters:
pValthe float factor
Position3D& AL::Math::Position3D::operator/= ( float  pVal)

Overloading of operator /= for Position3D.

Parameters:
pValthe float factor
bool AL::Math::Position3D::operator== ( const Position3D pPos2) const

Overloading of operator == for Position3D.

Parameters:
pPos2the second Position3D
std::vector<float> AL::Math::Position3D::toVector ( ) const

Return the Position3D as a vector of float [x, y, z].


Member Data Documentation

Definition at line 25 of file alposition3d.h.

Definition at line 27 of file alposition3d.h.

Definition at line 29 of file alposition3d.h.


The documentation for this struct was generated from the following file:
 All Classes Namespaces Functions Variables