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

#include <OgrePCPlane.h>

+ Inheritance diagram for Ogre::PCPlane:
+ Collaboration diagram for Ogre::PCPlane:

Public Types

enum  Side { NO_SIDE, POSITIVE_SIDE, NEGATIVE_SIDE, BOTH_SIDE }
 The "positive side" of the plane is the half space to which the plane normal points. More...
 

Public Member Functions

 PCPlane ()
 Standard constructor. More...
 
 PCPlane (const Plane &plane)
 Alternative constructor. More...
 
 PCPlane (const Vector3 &rkNormal, const Vector3 &rkPoint)
 Alternative constructor. More...
 
 PCPlane (const Vector3 &rkPoint0, const Vector3 &rkPoint1, const Vector3 &rkPoint2)
 Alternative constructor. More...
 
 ~PCPlane ()
 Standard destructor. More...
 
Real getDistance (const Vector3 &rkPoint) const
 This is a pseudodistance. More...
 
PortalBasegetPortal ()
 Returns the Portal that was used to create this plane. More...
 
Side getSide (const Vector3 &rkPoint) const
 
Side getSide (const AxisAlignedBox &rkBox) const
 Returns the side where the alignedBox is. More...
 
Side getSide (const Vector3 &centre, const Vector3 &halfSize) const
 Returns which side of the plane that the given box lies on. More...
 
Real normalise (void)
 Normalises the plane. More...
 
bool operator!= (const Plane &rhs) const
 
bool operator== (const Plane &rhs) const
 Comparison operator. More...
 
Vector3 projectVector (const Vector3 &v) const
 Project a vector onto the plane. More...
 
void redefine (const Vector3 &rkPoint0, const Vector3 &rkPoint1, const Vector3 &rkPoint2)
 Redefine this plane based on 3 points. More...
 
void redefine (const Vector3 &rkNormal, const Vector3 &rkPoint)
 Redefine this plane based on a normal and a point. More...
 
void setFromOgrePlane (Plane &ogrePlane)
 Copy from an Ogre Plane. More...
 
void setPortal (PortalBase *o)
 Sets the Portal that was used to create this plane. More...
 

Public Attributes

Real d
 
Vector3 normal
 

Protected Attributes

PortalBasemPortal
 Portal used to create this plane. More...
 

Detailed Description

Definition at line 53 of file OgrePCPlane.h.

Member Enumeration Documentation

enum Ogre::Plane::Side
inherited

The "positive side" of the plane is the half space to which the plane normal points.

The "negative side" is the other half space. The flag "no side" indicates the plane itself.

Enumerator
NO_SIDE 
POSITIVE_SIDE 
NEGATIVE_SIDE 
BOTH_SIDE 

Definition at line 80 of file OgrePlane.h.

Constructor & Destructor Documentation

Ogre::PCPlane::PCPlane ( )

Standard constructor.

Ogre::PCPlane::PCPlane ( const Plane plane)

Alternative constructor.

Ogre::PCPlane::PCPlane ( const Vector3 rkNormal,
const Vector3 rkPoint 
)

Alternative constructor.

Ogre::PCPlane::PCPlane ( const Vector3 rkPoint0,
const Vector3 rkPoint1,
const Vector3 rkPoint2 
)

Alternative constructor.

Ogre::PCPlane::~PCPlane ( )

Standard destructor.

Member Function Documentation

Real Ogre::Plane::getDistance ( const Vector3 rkPoint) const
inherited

This is a pseudodistance.

The sign of the return value is positive if the point is on the positive side of the plane, negative if the point is on the negative side, and zero if the point is on the plane.

The absolute value of the return value is the true distance only when the plane normal is a unit length vector.

Referenced by Ogre::PlaneBoundedVolume::intersects().

PortalBase* Ogre::PCPlane::getPortal ( )
inline

Returns the Portal that was used to create this plane.

Definition at line 72 of file OgrePCPlane.h.

Side Ogre::Plane::getSide ( const Vector3 rkPoint) const
inherited
Side Ogre::Plane::getSide ( const AxisAlignedBox rkBox) const
inherited

Returns the side where the alignedBox is.

The flag BOTH_SIDE indicates an intersecting box. One corner ON the plane is sufficient to consider the box and the plane intersecting.

Side Ogre::Plane::getSide ( const Vector3 centre,
const Vector3 halfSize 
) const
inherited

Returns which side of the plane that the given box lies on.

The box is defined as centre/half-size pairs for effectively.

Parameters
centreThe centre of the box.
halfSizeThe half-size of the box.
Returns
POSITIVE_SIDE if the box complete lies on the "positive side" of the plane, NEGATIVE_SIDE if the box complete lies on the "negative side" of the plane, and BOTH_SIDE if the box intersects the plane.
Real Ogre::Plane::normalise ( void  )
inherited

Normalises the plane.

Remarks
This method normalises the plane's normal and the length scale of d is as well.
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 plane's normal.
bool Ogre::Plane::operator!= ( const Plane rhs) const
inlineinherited

Definition at line 152 of file OgrePlane.h.

References Ogre::Plane::d, and Ogre::Plane::normal.

bool Ogre::Plane::operator== ( const Plane rhs) const
inlineinherited

Comparison operator.

Definition at line 148 of file OgrePlane.h.

References Ogre::Plane::d, and Ogre::Plane::normal.

Vector3 Ogre::Plane::projectVector ( const Vector3 v) const
inherited

Project a vector onto the plane.

Remarks
This gives you the element of the input vector that is perpendicular to the normal of the plane. You can get the element which is parallel to the normal of the plane by subtracting the result of this method from the original vector, since parallel + perpendicular = original.
Parameters
vThe input vector
void Ogre::Plane::redefine ( const Vector3 rkPoint0,
const Vector3 rkPoint1,
const Vector3 rkPoint2 
)
inherited

Redefine this plane based on 3 points.

void Ogre::Plane::redefine ( const Vector3 rkNormal,
const Vector3 rkPoint 
)
inherited

Redefine this plane based on a normal and a point.

void Ogre::PCPlane::setFromOgrePlane ( Plane ogrePlane)

Copy from an Ogre Plane.

void Ogre::PCPlane::setPortal ( PortalBase o)
inline

Sets the Portal that was used to create this plane.

Definition at line 79 of file OgrePCPlane.h.

Member Data Documentation

Real Ogre::Plane::d
inherited
PortalBase* Ogre::PCPlane::mPortal
protected

Portal used to create this plane.

Definition at line 82 of file OgrePCPlane.h.

Vector3 Ogre::Plane::normal
inherited

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