OGRE  1.9.0
OgreWireBoundingBox.h
Go to the documentation of this file.
1/*
2-----------------------------------------------------------------------------
3This source file is part of OGRE
4 (Object-oriented Graphics Rendering Engine)
5For the latest info, see http://www.ogre3d.org/
6
7Copyright (c) 2000-2014 Torus Knot Software Ltd
8
9Permission is hereby granted, free of charge, to any person obtaining a copy
10of this software and associated documentation files (the "Software"), to deal
11in the Software without restriction, including without limitation the rights
12to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13copies of the Software, and to permit persons to whom the Software is
14furnished to do so, subject to the following conditions:
15
16The above copyright notice and this permission notice shall be included in
17all copies or substantial portions of the Software.
18
19THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25THE SOFTWARE.
26-----------------------------------------------------------------------------
27*/
28#ifndef _WireBoundingBox_H__
29#define _WireBoundingBox_H__
30
31#include "OgrePrerequisites.h"
32
34
35namespace Ogre {
36
49 {
50 protected:
53 void getWorldTransforms( Matrix4* xform ) const;
54
58
60
62
63 public:
64
66 WireBoundingBox(const String& name);
68
74
75 Real getSquaredViewDepth(const Camera* cam) const;
76
77 Real getBoundingRadius(void) const { return mRadius; }
78
79 };
80
82
83}// namespace
84
85#endif
86
87
#define _OgreExport
A 3D box aligned with the x/y/z axes.
A viewpoint from which the scene will be rendered.
Definition OgreCamera.h:87
Class encapsulating a standard 4x4 homogeneous matrix.
Definition OgreMatrix4.h:79
SimpleRenderable()
Constructor.
void setupBoundingBoxVertices(const AxisAlignedBox &aab)
Builds the wireframe line list.
WireBoundingBox(const String &name)
void setupBoundingBox(const AxisAlignedBox &aabb)
Builds the wireframe line list.
Real getSquaredViewDepth(const Camera *cam) const
Returns the camera-relative squared depth of this renderable.
Real getBoundingRadius(void) const
Retrieves the radius of the origin-centered bounding sphere for this object.
void getWorldTransforms(Matrix4 *xform) const
Override this method to prevent parent transforms (rotation,translation,scale)
float Real
Software floating point type.
_StringBase String