OGRE  1.9
Object-Oriented Graphics Rendering Engine
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Ogre::Ray Class Reference

Representation of a ray in space, i.e. More...

#include <OgreRay.h>

+ Collaboration diagram for Ogre::Ray:

Public Member Functions

 Ray ()
 
 Ray (const Vector3 &origin, const Vector3 &direction)
 
const Vector3getDirection (void) const
 Gets the direction of the ray. More...
 
const Vector3getOrigin (void) const
 Gets the origin of the ray. More...
 
Vector3 getPoint (Real t) const
 Gets the position of a point t units along the ray. More...
 
std::pair< bool, Realintersects (const Plane &p) const
 Tests whether this ray intersects the given plane. More...
 
std::pair< bool, Realintersects (const PlaneBoundedVolume &p) const
 Tests whether this ray intersects the given plane bounded volume. More...
 
std::pair< bool, Realintersects (const Sphere &s) const
 Tests whether this ray intersects the given sphere. More...
 
std::pair< bool, Realintersects (const AxisAlignedBox &box) const
 Tests whether this ray intersects the given box. More...
 
Vector3 operator* (Real t) const
 Gets the position of a point t units along the ray. More...
 
void setDirection (const Vector3 &dir)
 Sets the direction of the ray. More...
 
void setOrigin (const Vector3 &origin)
 Sets the origin of the ray. More...
 

Protected Attributes

Vector3 mDirection
 
Vector3 mOrigin
 

Detailed Description

Representation of a ray in space, i.e.

a line with an origin and direction.

Definition at line 46 of file OgreRay.h.

Constructor & Destructor Documentation

Ogre::Ray::Ray ( )
inline

Definition at line 52 of file OgreRay.h.

Ogre::Ray::Ray ( const Vector3 origin,
const Vector3 direction 
)
inline

Definition at line 53 of file OgreRay.h.

Member Function Documentation

const Vector3& Ogre::Ray::getDirection ( void  ) const
inline

Gets the direction of the ray.

Definition at line 64 of file OgreRay.h.

const Vector3& Ogre::Ray::getOrigin ( void  ) const
inline

Gets the origin of the ray.

Definition at line 59 of file OgreRay.h.

Vector3 Ogre::Ray::getPoint ( Real  t) const
inline

Gets the position of a point t units along the ray.

Definition at line 67 of file OgreRay.h.

std::pair<bool, Real> Ogre::Ray::intersects ( const Plane p) const
inline

Tests whether this ray intersects the given plane.

Returns
A pair structure where the first element indicates whether an intersection occurs, and if true, the second element will indicate the distance along the ray at which it intersects. This can be converted to a point in space by calling getPoint().

Definition at line 82 of file OgreRay.h.

References Ogre::Math::intersects().

std::pair<bool, Real> Ogre::Ray::intersects ( const PlaneBoundedVolume p) const
inline

Tests whether this ray intersects the given plane bounded volume.

Returns
A pair structure where the first element indicates whether an intersection occurs, and if true, the second element will indicate the distance along the ray at which it intersects. This can be converted to a point in space by calling getPoint().

Definition at line 92 of file OgreRay.h.

References Ogre::Math::intersects(), Ogre::PlaneBoundedVolume::outside, Ogre::PlaneBoundedVolume::planes, and Ogre::Plane::POSITIVE_SIDE.

std::pair<bool, Real> Ogre::Ray::intersects ( const Sphere s) const
inline

Tests whether this ray intersects the given sphere.

Returns
A pair structure where the first element indicates whether an intersection occurs, and if true, the second element will indicate the distance along the ray at which it intersects. This can be converted to a point in space by calling getPoint().

Definition at line 102 of file OgreRay.h.

References Ogre::Math::intersects().

std::pair<bool, Real> Ogre::Ray::intersects ( const AxisAlignedBox box) const
inline

Tests whether this ray intersects the given box.

Returns
A pair structure where the first element indicates whether an intersection occurs, and if true, the second element will indicate the distance along the ray at which it intersects. This can be converted to a point in space by calling getPoint().

Definition at line 112 of file OgreRay.h.

References Ogre::Math::intersects().

Vector3 Ogre::Ray::operator* ( Real  t) const
inline

Gets the position of a point t units along the ray.

Definition at line 72 of file OgreRay.h.

void Ogre::Ray::setDirection ( const Vector3 dir)
inline

Sets the direction of the ray.

Definition at line 62 of file OgreRay.h.

void Ogre::Ray::setOrigin ( const Vector3 origin)
inline

Sets the origin of the ray.

Definition at line 57 of file OgreRay.h.

Member Data Documentation

Vector3 Ogre::Ray::mDirection
protected

Definition at line 50 of file OgreRay.h.

Vector3 Ogre::Ray::mOrigin
protected

Definition at line 49 of file OgreRay.h.


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