Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages  

Ogre::Vector3 Class Reference

Standard 3-dimensional vector. More...

#include <OgreVector3.h>

Collaboration diagram for Ogre::Vector3:

Collaboration graph
[legend]
List of all members.

Public Methods

 Vector3 ()
 Vector3 (Real fX, Real fY, Real fZ)
 Vector3 (Real afCoordinate[3])
 Vector3 (int afCoordinate[3])
 Vector3 (const Real *const r)
 Vector3 (const Vector3 &rkVector)
Real operator[] (unsigned i) const
Realoperator[] (unsigned i)
Vector3 & operator= (const Vector3 &rkVector)
 Assigns the value of the other vector.

bool operator== (const Vector3 &rkVector) const
bool operator!= (const Vector3 &rkVector) const
Vector3 operator+ (const Vector3 &rkVector) const
Vector3 operator- (const Vector3 &rkVector) const
Vector3 operator * (Real fScalar) const
Vector3 operator * (const Vector3 &rhs) const
Vector3 operator/ (Real fScalar) const
Vector3 operator- () const
Vector3 & operator+= (const Vector3 &rkVector)
Vector3 & operator-= (const Vector3 &rkVector)
Vector3 & operator *= (Real fScalar)
Vector3 & operator/= (Real fScalar)
Real length () const
 Returns the length (magnitude) of the vector.

Real squaredLength () const
 Returns the square of the length(magnitude) of the vector.

Real dotProduct (const Vector3 &vec) const
 Calculates the dot (scalar) product of this vector with another.

Real normalise ()
 Normalises the vector.

Vector3 crossProduct (const Vector3 &rkVector) const
 Calculates the cross-product of 2 vectors, i.e.

Vector3 midPoint (const Vector3 &vec) const
 Returns a vector at a point half way between this and the passed in vector.

bool operator< (const Vector3 &rhs) const
 Returns true if the vector's scalar components are all greater that the ones of the vector it is compared against.

bool operator> (const Vector3 &rhs) const
 Returns true if the vector's scalar components are all smaller that the ones of the vector it is compared against.

void makeFloor (const Vector3 &cmp)
 Sets this vector's components to the minimum of its own and the ones of the passed in vector.

void makeCeil (const Vector3 &cmp)
 Sets this vector's components to the maximum of its own and the ones of the passed in vector.

Vector3 perpendicular (void) const
 Generates a vector perpendicular to this vector (eg an 'up' vector).

Vector3 randomDeviant (Real angle, const Vector3 &up=Vector3::ZERO) const
 Generates a new random vector which deviates from this vector by a given angle in a random direction.

Quaternion getRotationTo (const Vector3 &dest) const
 Gets the shortest arc quaternion to rotate this vector to the destination vector.

bool isZeroLength (void) const
 Returns true if this vector is zero length.

Vector3 normalisedCopy (void) const
 As normalise, except that this vector is unaffected and the normalised vector is returned as a copy.

Vector3 reflect (const Vector3 &normal)
 Calculates a reflection vector to the plane with the given normal .


Static Public Attributes

const Vector3 ZERO
const Vector3 UNIT_X
const Vector3 UNIT_Y
const Vector3 UNIT_Z
const Vector3 UNIT_SCALE

Friends

Vector3 operator * (Real fScalar, const Vector3 &rkVector)
_OgreExport friend std::ostream & operator<< (std::ostream &o, const Vector3 &v)
 Function for writing to a stream.


Detailed Description

Standard 3-dimensional vector.

Remarks:
A direction in 3D space represented as distances along the 3 orthoganal axes (x, y, z). Note that positions, directions and scaling factors can be represented by a vector, depending on how you interpret the values.

Definition at line 42 of file OgreVector3.h.


Constructor & Destructor Documentation

Ogre::Vector3::Vector3  
 

Definition at line 53 of file OgreVector3.h.

Ogre::Vector3::Vector3 Real    fX,
Real    fY,
Real    fZ
 

Definition at line 57 of file OgreVector3.h.

References Ogre::Real.

Ogre::Vector3::Vector3 Real    afCoordinate[3]
 

Definition at line 62 of file OgreVector3.h.

References Ogre::Real.

Ogre::Vector3::Vector3 int    afCoordinate[3]
 

Definition at line 69 of file OgreVector3.h.

Ogre::Vector3::Vector3 const Real *const    r
 

Definition at line 76 of file OgreVector3.h.

References Ogre::Real.

Ogre::Vector3::Vector3 const Vector3 &    rkVector
 

Definition at line 81 of file OgreVector3.h.


Member Function Documentation

Vector3 Ogre::Vector3::crossProduct const Vector3 &    rkVector const
 

Calculates the cross-product of 2 vectors, i.e.

the vector that lies perpendicular to them both.

Remarks:
The cross-product is normally used to calculate the normal vector of a plane, by calculating the cross-product of 2 non-equivalent vectors which lie on the plane (e.g. 2 edges of a triangle).
Parameters:
vec  Vector which, together with this one, will be used to calculate the cross-product.
Returns:
A vector which is the result of the cross-product. This vector will NOT be normalised, to maximise efficiency
  • call Vector3::normalise on the result if you wish this to be done. As for which side the resultant vector will be on, the returned vector will be on the side from which the arc from 'this' to rkVector is anticlockwise, e.g. UNIT_Y.crossProduct(UNIT_Z) = UNIT_X, whilst UNIT_Z.crossProduct(UNIT_Y) = -UNIT_X.

For a clearer explanation, look a the left and the bottom edges of your monitor's screen. Assume that the first vector is the left edge and the second vector is the bottom edge, both of them starting from the lower-left corner of the screen. The resulting vector is going to be perpendicular to both of them and will go inside the screen, towards the cathode tube (assuming you're using a CRT monitor, of course).

Definition at line 342 of file OgreVector3.h.

References x, y, and z.

Referenced by Ogre::TerrainRenderable::_getNormalAt(), Ogre::Math::calculateTangentSpaceVector(), Ogre::ProgressiveMesh::PMTriangle::computeNormal(), Ogre::MeshManager::createCurvedIllusionPlane(), Ogre::MeshManager::createCurvedPlane(), Ogre::MeshManager::createPlane(), Ogre::Matrix3::EigenSolveSymmetric(), Ogre::AreaEmitter::genAreaAxes(), Ogre::ParticleSystem::genBillboardAxes(), Ogre::BillboardSet::genBillboardAxes(), getRotationTo(), Ogre::Quaternion::operator *(), Ogre::Plane::Plane(), Ogre::Camera::setDirection(), and Ogre::SceneManager::setSkyPlane().

Real Ogre::Vector3::dotProduct const Vector3 &    vec const
 

Calculates the dot (scalar) product of this vector with another.

Remarks:
The dot product can be used to calculate the angle between 2 vectors. If both are unit vectors, the dot product is the cosine of the angle; otherwise the dot product must be divided by the product of the lengths of both vectors to get the cosine of the angle. This result can further be used to calculate the distance of a point from a plane.
Parameters:
vec  Vector with which to calculate the dot product (together with this one).
Returns:
A float representing the dot product value.

Definition at line 285 of file OgreVector3.h.

References Ogre::Real, x, y, and z.

Referenced by Ogre::TerrainRenderable::_generateVertexLighting(), Ogre::Math::calculateTangentSpaceVector(), Ogre::ProgressiveMesh::computeEdgeCollapseCost(), Ogre::Matrix3::EigenSolveSymmetric(), Ogre::PatchSurface::findLevel(), Ogre::Plane::getDistance(), getRotationTo(), Ogre::Math::intersects(), Ogre::BspLevel::loadQuake3Level(), Ogre::Plane::Plane(), Ogre::Frustum::updateView(), and Ogre::Camera::updateView().

Quaternion Ogre::Vector3::getRotationTo const Vector3 &    dest const
 

Gets the shortest arc quaternion to rotate this vector to the destination vector.

Remarks:
Don't call this if you think the dest vector can be close to the inverse of this vector, since then ANY axis of rotation is ok.

Definition at line 487 of file OgreVector3.h.

References crossProduct(), dotProduct(), normalise(), Ogre::Real, Ogre::Quaternion::w, x, Ogre::Quaternion::x, y, Ogre::Quaternion::y, z, and Ogre::Quaternion::z.

Referenced by Ogre::Camera::setDirection().

bool Ogre::Vector3::isZeroLength void    const
 

Returns true if this vector is zero length.

Definition at line 519 of file OgreVector3.h.

References Ogre::Real.

Real Ogre::Vector3::length   const
 

Returns the length (magnitude) of the vector.

Warning:
This operation requires a square root and is expensive in terms of CPU operations. If you don't need to know the exact length (e.g. for just comparing lengths) use squaredLength() instead.

Definition at line 251 of file OgreVector3.h.

References Ogre::Real.

Referenced by Ogre::MeshManager::createCurvedIllusionPlane(), Ogre::MeshManager::createCurvedPlane(), Ogre::MeshManager::createPlane(), and Ogre::Sphere::intersects().

void Ogre::Vector3::makeCeil const Vector3 &    cmp
 

Sets this vector's components to the maximum of its own and the ones of the passed in vector.

Remarks:
'Maximum' in this case means the combination of the highest value of x, y and z from both vectors. Highest is taken just numerically, not magnitude, so 1 > -3.

Definition at line 405 of file OgreVector3.h.

References x, y, and z.

Referenced by Ogre::ParticleSystem::_updateBounds(), Ogre::BillboardSet::_updateBounds(), Ogre::MeshManager::createCurvedIllusionPlane(), Ogre::MeshManager::createCurvedPlane(), Ogre::MeshManager::createPlane(), Ogre::PatchSurface::defineSurface(), Ogre::AxisAlignedBox::merge(), and Ogre::MeshSerializerImpl_v1::readGeometry().

void Ogre::Vector3::makeFloor const Vector3 &    cmp
 

Sets this vector's components to the minimum of its own and the ones of the passed in vector.

Remarks:
'Minimum' in this case means the combination of the lowest value of x, y and z from both vectors. Lowest is taken just numerically, not magnitude, so -1 < 0.

Definition at line 391 of file OgreVector3.h.

References x, y, and z.

Referenced by Ogre::ParticleSystem::_updateBounds(), Ogre::BillboardSet::_updateBounds(), Ogre::MeshManager::createCurvedIllusionPlane(), Ogre::MeshManager::createCurvedPlane(), Ogre::MeshManager::createPlane(), Ogre::PatchSurface::defineSurface(), Ogre::AxisAlignedBox::merge(), and Ogre::MeshSerializerImpl_v1::readGeometry().

Vector3 Ogre::Vector3::midPoint const Vector3 &    vec const
 

Returns a vector at a point half way between this and the passed in vector.

Definition at line 356 of file OgreVector3.h.

References x, y, and z.

Referenced by Ogre::Octree::_getChildIndexes(), Ogre::OctreeNode::_isIn(), and Ogre::PatchSurface::findLevel().

Real Ogre::Vector3::normalise void   
 

Normalises the vector.

Remarks:
This method normalises the vector such that it's length / magnitude is 1. The result is called a unit vector.
Note:
This function will not crash for zero-sized vectors, but there will be no changes made to their components.
Returns:
The previous length of the vector.

Definition at line 299 of file OgreVector3.h.

References Ogre::Real.

Referenced by Ogre::TerrainRenderable::_generateVertexLighting(), Ogre::TerrainRenderable::_getNormalAt(), Ogre::GpuProgramParameters::_updateAutoParamsLightsOnly(), Ogre::Mesh::buildTangentVectors(), Ogre::Math::calculateTangentSpaceVector(), Ogre::ProgressiveMesh::computeEdgeCollapseCost(), Ogre::ProgressiveMesh::PMTriangle::computeNormal(), Ogre::MeshManager::createCurvedIllusionPlane(), Ogre::MeshManager::createCurvedPlane(), Ogre::MeshManager::createPlane(), getRotationTo(), Ogre::PatchSurface::interpolateVertexData(), Ogre::TerrainRenderable::intersectSegment(), normalisedCopy(), Ogre::Plane::Plane(), Ogre::ParticleEmitter::setDirection(), Ogre::Camera::setDirection(), Ogre::RenderSystem::softwareVertexBlend(), and Ogre::Matrix3::ToAxisAngle().

Vector3 Ogre::Vector3::normalisedCopy void    const
 

As normalise, except that this vector is unaffected and the normalised vector is returned as a copy.

Definition at line 528 of file OgreVector3.h.

References normalise().

Vector3 Ogre::Vector3::operator * const Vector3 &    rhs const
 

Definition at line 157 of file OgreVector3.h.

References x, y, and z.

Vector3 Ogre::Vector3::operator * Real    fScalar const
 

Definition at line 146 of file OgreVector3.h.

References Ogre::Real, x, y, and z.

Vector3& Ogre::Vector3::operator *= Real    fScalar
 

Definition at line 223 of file OgreVector3.h.

References Ogre::Real.

bool Ogre::Vector3::operator!= const Vector3 &    rkVector const
 

Definition at line 118 of file OgreVector3.h.

References x, y, and z.

Vector3 Ogre::Vector3::operator+ const Vector3 &    rkVector const
 

Definition at line 124 of file OgreVector3.h.

References x, y, and z.

Vector3& Ogre::Vector3::operator+= const Vector3 &    rkVector
 

Definition at line 205 of file OgreVector3.h.

References x, y, and z.

Vector3 Ogre::Vector3::operator-   const
 

Definition at line 182 of file OgreVector3.h.

References x, y, and z.

Vector3 Ogre::Vector3::operator- const Vector3 &    rkVector const
 

Definition at line 135 of file OgreVector3.h.

References x, y, and z.

Vector3& Ogre::Vector3::operator-= const Vector3 &    rkVector
 

Definition at line 214 of file OgreVector3.h.

References x, y, and z.

Vector3 Ogre::Vector3::operator/ Real    fScalar const
 

Definition at line 168 of file OgreVector3.h.

References Ogre::Real, x, y, and z.

Vector3& Ogre::Vector3::operator/= Real    fScalar
 

Definition at line 231 of file OgreVector3.h.

References Ogre::Real.

bool Ogre::Vector3::operator< const Vector3 &    rhs const
 

Returns true if the vector's scalar components are all greater that the ones of the vector it is compared against.

Definition at line 367 of file OgreVector3.h.

References x, y, and z.

Vector3& Ogre::Vector3::operator= const Vector3 &    rkVector
 

Assigns the value of the other vector.

Parameters:
rkVector  The other vector

Definition at line 104 of file OgreVector3.h.

References x, y, and z.

bool Ogre::Vector3::operator== const Vector3 &    rkVector const
 

Definition at line 113 of file OgreVector3.h.

References x, y, and z.

bool Ogre::Vector3::operator> const Vector3 &    rhs const
 

Returns true if the vector's scalar components are all smaller that the ones of the vector it is compared against.

Definition at line 377 of file OgreVector3.h.

References x, y, and z.

Real& Ogre::Vector3::operator[] unsigned    i
 

Definition at line 93 of file OgreVector3.h.

References Ogre::Real.

Real Ogre::Vector3::operator[] unsigned    i const
 

Definition at line 86 of file OgreVector3.h.

References Ogre::Real.

Vector3 Ogre::Vector3::perpendicular void    const
 

Generates a vector perpendicular to this vector (eg an 'up' vector).

Remarks:
This method will return a vector which is perpendicular to this vector. There are an infinite number of possibilities but this method will guarantee to generate one of them. If you need more control you should use the Quaternion class.

Definition at line 419 of file OgreVector3.h.

References Ogre::Real, and squaredLength().

Referenced by Ogre::ParticleEmitter::setDirection().

Vector3 Ogre::Vector3::randomDeviant Real    angle,
const Vector3 &    up = Vector3::ZERO
const
 

Generates a new random vector which deviates from this vector by a given angle in a random direction.

Remarks:
This method assumes that the random number generator has already been seeded appropriately.
Parameters:
angle  The angle at which to deviate in radians
up  Any vector perpendicular to this one (which could generated by cross-product of this vector and any other non-colinear vector). If you choose not to provide this the function will derive one on it's own, however if you provide one yourself the function will be faster (this allows you to reuse up vectors if you call this method more than once)
Returns:
A random vector which deviates from this vector by angle. This vector will not be normalised, normalise it if you wish afterwards.

Definition at line 455 of file OgreVector3.h.

References Ogre::Quaternion::FromAngleAxis(), and Ogre::Real.

Referenced by Ogre::ParticleEmitter::genEmissionDirection().

Vector3 Ogre::Vector3::reflect const Vector3 &    normal
 

Calculates a reflection vector to the plane with the given normal .

Remarks:
NB assumes 'this' is pointing AWAY FROM the plane, invert if it is not.

Definition at line 538 of file OgreVector3.h.

Referenced by Ogre::Camera::updateView().

Real Ogre::Vector3::squaredLength   const
 

Returns the square of the length(magnitude) of the vector.

Remarks:
This method is for efficiency - calculating the actual length of a vector requires a square root, which is expensive in terms of the operations required. This method returns the square of the length of the vector, i.e. the same as the length but before the square root is taken. Use this if you want to find the longest / shortest vector without incurring the square root.

Definition at line 266 of file OgreVector3.h.

References Ogre::Real.

Referenced by Ogre::TerrainRenderable::_notifyCurrentCamera(), Ogre::Mesh::_setBounds(), Ogre::BillboardSet::_updateBounds(), Ogre::MeshManager::createCurvedIllusionPlane(), Ogre::MeshManager::createCurvedPlane(), Ogre::MeshManager::createPlane(), Ogre::PatchSurface::defineSurface(), Ogre::WireBoundingBox::getSquaredViewDepth(), Ogre::TerrainRenderable::getSquaredViewDepth(), Ogre::OctreeCamera::getSquaredViewDepth(), Ogre::Node::getSquaredViewDepth(), Ogre::intersect(), Ogre::Math::intersects(), perpendicular(), Ogre::MeshSerializerImpl_v1::readGeometry(), and Ogre::WireBoundingBox::setupBoundingBoxVertices().


Friends And Related Function Documentation

Vector3 operator * Real    fScalar,
const Vector3 &    rkVector
[friend]
 

Definition at line 193 of file OgreVector3.h.

_OgreExport friend std::ostream& operator<< std::ostream &    o,
const Vector3 &    v
[friend]
 

Function for writing to a stream.

Definition at line 553 of file OgreVector3.h.


Member Data Documentation

const Vector3 Ogre::Vector3::UNIT_SCALE [static]
 

const Vector3 Ogre::Vector3::UNIT_X [static]
 

const Vector3 Ogre::Vector3::UNIT_Y [static]
 

const Vector3 Ogre::Vector3::UNIT_Z [static]
 

Real Ogre::Vector3::val[3]
 

Definition at line 49 of file OgreVector3.h.

Real Ogre::Vector3::x
 

Definition at line 47 of file OgreVector3.h.

Referenced by Ogre::OctreeSceneManager::_addOctreeNode(), Ogre::TerrainRenderable::_calculateNormals(), Ogre::TerrainRenderable::_generateVertexLighting(), Ogre::Octree::_getChildIndexes(), Ogre::OctreeCamera::_getCorner(), Ogre::TerrainRenderable::_getNormalAt(), Ogre::HollowEllipsoidEmitter::_initParticle(), Ogre::Octree::_isTwiceSize(), Ogre::GpuProgramParameters::_updateAutoParamsLightsOnly(), Ogre::ProgressiveMesh::addWorkingData(), Ogre::Math::buildReflectionMatrix(), Ogre::Mesh::buildTangentVectors(), Ogre::Camera::Camera(), Ogre::MeshManager::createCurvedIllusionPlane(), Ogre::MeshManager::createCurvedPlane(), Ogre::MeshManager::createPlane(), crossProduct(), dotProduct(), Ogre::Quaternion::FromAngleAxis(), Ogre::Quaternion::FromAxes(), Ogre::Matrix3::FromAxisAngle(), Ogre::AreaEmitter::genAreaAxes(), Ogre::BillboardSet::genVertices(), Ogre::Entity::getBoundingRadius(), Ogre::TerrainRenderable::getHeightAt(), Ogre::HollowEllipsoidEmitter::getInnerSizeX(), Ogre::Node::getLocalAxes(), getRotationTo(), Ogre::Matrix4::getScale(), Ogre::TerrainSceneManager::getTerrainTile(), Ogre::Matrix4::getTrans(), Ogre::AreaEmitter::getWidth(), Ogre::TerrainRenderable::init(), Ogre::SimpleSpline::interpolate(), Ogre::PatchSurface::interpolateVertexData(), Ogre::intersect(), Ogre::Math::intersects(), Ogre::AxisAlignedBox::intersects(), Ogre::TerrainRenderable::intersectSegment(), Ogre::KeyFrame::KeyFrame(), Ogre::LinearForceAffector::LinearForceAffector(), Ogre::BspLevel::loadEntities(), makeCeil(), makeFloor(), Ogre::Node::makeInverseTransform(), Ogre::Matrix4::makeTrans(), Ogre::Node::makeTransform(), midPoint(), operator *(), Ogre::Matrix4::operator *(), operator!=(), Ogre::vectorLess::operator()(), operator+(), operator+=(), operator-(), operator-=(), operator/(), operator<(), Ogre::Vector4::operator=(), operator=(), operator==(), operator>(), Ogre::MeshSerializerImpl::readBoundsInfo(), Ogre::Serializer::readObject(), Ogre::Node::scale(), Ogre::Matrix3::SetColumn(), Ogre::GpuProgramParameters::setConstant(), Ogre::D3D9RenderSystem::setD3D9Light(), Ogre::D3DRenderSystem::setD3DLight(), Ogre::Light::setDirection(), Ogre::AxisAlignedBox::setExtents(), Ogre::GLRenderSystem::setGLLightPositionDirection(), Ogre::HollowEllipsoidEmitter::setInnerSize(), Ogre::HollowEllipsoidEmitter::setInnerSizeX(), Ogre::AxisAlignedBox::setMaximum(), Ogre::AxisAlignedBox::setMinimum(), Ogre::Light::setPosition(), Ogre::Camera::setPosition(), Ogre::Billboard::setPosition(), Ogre::Node::setScale(), Ogre::Matrix4::setScale(), Ogre::AreaEmitter::setSize(), Ogre::Matrix4::setTrans(), Ogre::WireBoundingBox::setupBoundingBoxVertices(), Ogre::AreaEmitter::setWidth(), Ogre::RenderSystem::softwareVertexBlend(), Ogre::Quaternion::ToAngleAxis(), Ogre::Quaternion::ToAxes(), Ogre::Matrix3::ToAxisAngle(), Ogre::StringConverter::toString(), Ogre::AxisAlignedBox::transform(), Ogre::AxisAlignedBox::updateCorners(), Ogre::Frustum::updateView(), Ogre::Camera::updateView(), Ogre::MeshSerializerImpl::writeBoundsInfo(), and Ogre::Serializer::writeObject().

Real Ogre::Vector3::y
 

Definition at line 47 of file OgreVector3.h.

Referenced by Ogre::OctreeSceneManager::_addOctreeNode(), Ogre::TerrainRenderable::_calculateNormals(), Ogre::TerrainRenderable::_generateVertexLighting(), Ogre::Octree::_getChildIndexes(), Ogre::OctreeCamera::_getCorner(), Ogre::TerrainRenderable::_getNormalAt(), Ogre::HollowEllipsoidEmitter::_initParticle(), Ogre::Octree::_isTwiceSize(), Ogre::GpuProgramParameters::_updateAutoParamsLightsOnly(), Ogre::ProgressiveMesh::addWorkingData(), Ogre::Math::buildReflectionMatrix(), Ogre::Mesh::buildTangentVectors(), Ogre::Camera::Camera(), Ogre::MeshManager::createCurvedIllusionPlane(), Ogre::MeshManager::createCurvedPlane(), Ogre::MeshManager::createPlane(), crossProduct(), dotProduct(), Ogre::Quaternion::FromAngleAxis(), Ogre::Quaternion::FromAxes(), Ogre::Matrix3::FromAxisAngle(), Ogre::AreaEmitter::genAreaAxes(), Ogre::BillboardSet::genVertices(), Ogre::Entity::getBoundingRadius(), Ogre::AreaEmitter::getHeight(), Ogre::TerrainRenderable::getHeightAt(), Ogre::HollowEllipsoidEmitter::getInnerSizeY(), Ogre::Node::getLocalAxes(), getRotationTo(), Ogre::Matrix4::getScale(), Ogre::Matrix4::getTrans(), Ogre::TerrainRenderable::init(), Ogre::SimpleSpline::interpolate(), Ogre::PatchSurface::interpolateVertexData(), Ogre::intersect(), Ogre::Math::intersects(), Ogre::AxisAlignedBox::intersects(), Ogre::TerrainRenderable::intersectSegment(), Ogre::KeyFrame::KeyFrame(), Ogre::LinearForceAffector::LinearForceAffector(), Ogre::BspLevel::loadEntities(), makeCeil(), makeFloor(), Ogre::Node::makeInverseTransform(), Ogre::Matrix4::makeTrans(), Ogre::Node::makeTransform(), midPoint(), operator *(), Ogre::Matrix4::operator *(), operator!=(), Ogre::vectorLess::operator()(), operator+(), operator+=(), operator-(), operator-=(), operator/(), operator<(), Ogre::Vector4::operator=(), operator=(), operator==(), operator>(), Ogre::MeshSerializerImpl::readBoundsInfo(), Ogre::Serializer::readObject(), Ogre::Node::scale(), Ogre::Matrix3::SetColumn(), Ogre::GpuProgramParameters::setConstant(), Ogre::D3D9RenderSystem::setD3D9Light(), Ogre::D3DRenderSystem::setD3DLight(), Ogre::Light::setDirection(), Ogre::AxisAlignedBox::setExtents(), Ogre::GLRenderSystem::setGLLightPositionDirection(), Ogre::AreaEmitter::setHeight(), Ogre::HollowEllipsoidEmitter::setInnerSize(), Ogre::HollowEllipsoidEmitter::setInnerSizeY(), Ogre::AxisAlignedBox::setMaximum(), Ogre::AxisAlignedBox::setMinimum(), Ogre::Light::setPosition(), Ogre::Camera::setPosition(), Ogre::Billboard::setPosition(), Ogre::Node::setScale(), Ogre::Matrix4::setScale(), Ogre::AreaEmitter::setSize(), Ogre::Matrix4::setTrans(), Ogre::WireBoundingBox::setupBoundingBoxVertices(), Ogre::RenderSystem::softwareVertexBlend(), Ogre::Quaternion::ToAngleAxis(), Ogre::Quaternion::ToAxes(), Ogre::Matrix3::ToAxisAngle(), Ogre::StringConverter::toString(), Ogre::AxisAlignedBox::transform(), Ogre::AxisAlignedBox::updateCorners(), Ogre::Frustum::updateView(), Ogre::Camera::updateView(), Ogre::MeshSerializerImpl::writeBoundsInfo(), and Ogre::Serializer::writeObject().

Real Ogre::Vector3::z
 

Definition at line 47 of file OgreVector3.h.

Referenced by Ogre::OctreeSceneManager::_addOctreeNode(), Ogre::TerrainRenderable::_calculateNormals(), Ogre::TerrainRenderable::_generateVertexLighting(), Ogre::Octree::_getChildIndexes(), Ogre::OctreeCamera::_getCorner(), Ogre::TerrainRenderable::_getNormalAt(), Ogre::HollowEllipsoidEmitter::_initParticle(), Ogre::Octree::_isTwiceSize(), Ogre::GpuProgramParameters::_updateAutoParamsLightsOnly(), Ogre::ProgressiveMesh::addWorkingData(), Ogre::Math::buildReflectionMatrix(), Ogre::Mesh::buildTangentVectors(), Ogre::Camera::Camera(), Ogre::MeshManager::createCurvedIllusionPlane(), Ogre::MeshManager::createCurvedPlane(), Ogre::MeshManager::createPlane(), crossProduct(), dotProduct(), Ogre::Quaternion::FromAngleAxis(), Ogre::Quaternion::FromAxes(), Ogre::Matrix3::FromAxisAngle(), Ogre::AreaEmitter::genAreaAxes(), Ogre::BillboardSet::genVertices(), Ogre::Entity::getBoundingRadius(), Ogre::AreaEmitter::getDepth(), Ogre::TerrainRenderable::getHeightAt(), Ogre::HollowEllipsoidEmitter::getInnerSizeZ(), Ogre::Node::getLocalAxes(), getRotationTo(), Ogre::Matrix4::getScale(), Ogre::TerrainSceneManager::getTerrainTile(), Ogre::Matrix4::getTrans(), Ogre::TerrainRenderable::init(), Ogre::SimpleSpline::interpolate(), Ogre::PatchSurface::interpolateVertexData(), Ogre::intersect(), Ogre::Math::intersects(), Ogre::AxisAlignedBox::intersects(), Ogre::TerrainRenderable::intersectSegment(), Ogre::KeyFrame::KeyFrame(), Ogre::LinearForceAffector::LinearForceAffector(), Ogre::BspLevel::loadEntities(), makeCeil(), makeFloor(), Ogre::Node::makeInverseTransform(), Ogre::Matrix4::makeTrans(), Ogre::Node::makeTransform(), midPoint(), operator *(), Ogre::Matrix4::operator *(), operator!=(), Ogre::vectorLess::operator()(), operator+(), operator+=(), operator-(), operator-=(), operator/(), operator<(), Ogre::Vector4::operator=(), operator=(), operator==(), operator>(), Ogre::MeshSerializerImpl::readBoundsInfo(), Ogre::Serializer::readObject(), Ogre::Node::scale(), Ogre::Matrix3::SetColumn(), Ogre::GpuProgramParameters::setConstant(), Ogre::D3D9RenderSystem::setD3D9Light(), Ogre::D3DRenderSystem::setD3DLight(), Ogre::AreaEmitter::setDepth(), Ogre::Light::setDirection(), Ogre::AxisAlignedBox::setExtents(), Ogre::GLRenderSystem::setGLLightPositionDirection(), Ogre::HollowEllipsoidEmitter::setInnerSize(), Ogre::HollowEllipsoidEmitter::setInnerSizeZ(), Ogre::AxisAlignedBox::setMaximum(), Ogre::AxisAlignedBox::setMinimum(), Ogre::Light::setPosition(), Ogre::Camera::setPosition(), Ogre::Billboard::setPosition(), Ogre::Node::setScale(), Ogre::Matrix4::setScale(), Ogre::AreaEmitter::setSize(), Ogre::Matrix4::setTrans(), Ogre::WireBoundingBox::setupBoundingBoxVertices(), Ogre::RenderSystem::softwareVertexBlend(), Ogre::Quaternion::ToAngleAxis(), Ogre::Quaternion::ToAxes(), Ogre::Matrix3::ToAxisAngle(), Ogre::StringConverter::toString(), Ogre::AxisAlignedBox::transform(), Ogre::AxisAlignedBox::updateCorners(), Ogre::Frustum::updateView(), Ogre::Camera::updateView(), Ogre::MeshSerializerImpl::writeBoundsInfo(), and Ogre::Serializer::writeObject().

const Vector3 Ogre::Vector3::ZERO [static]
 


The documentation for this class was generated from the following files:

Copyright © 2002-2003 by The OGRE Team
Last modified Wed Jan 21 00:21:13 2004