A surface which is defined by curves of some kind to form a patch, e.g.
More...
#include <OgrePatchSurface.h>
|
| PatchSurface () |
|
| ~PatchSurface () |
|
void | build (HardwareVertexBufferSharedPtr destVertexBuffer, size_t vertexStart, HardwareIndexBufferSharedPtr destIndexBuffer, size_t indexStart) |
| Tells the system to build the mesh relating to the surface into externally created buffers. More...
|
|
void | defineSurface (void *controlPointBuffer, VertexDeclaration *declaration, size_t width, size_t height, PatchSurfaceType pType=PST_BEZIER, size_t uMaxSubdivisionLevel=AUTO_LEVEL, size_t vMaxSubdivisionLevel=AUTO_LEVEL, VisibleSide visibleSide=VS_FRONT) |
| Sets up the surface by defining it's control points, type and initial subdivision level. More...
|
|
Real | getBoundingSphereRadius (void) const |
| Gets the radius of the bounding sphere for this patch, only valid after defineSurface has been called. More...
|
|
const AxisAlignedBox & | getBounds (void) const |
| Gets the bounds of this patch, only valid after calling defineSurface. More...
|
|
void * | getControlPointBuffer (void) const |
|
size_t | getCurrentIndexCount (void) const |
| Gets the current index count based on the current subdivision level. More...
|
|
size_t | getIndexOffset (void) const |
| Returns the index offset used by this buffer to write data into the buffer. More...
|
|
size_t | getRequiredIndexCount (void) const |
| Based on a previous call to defineSurface, establishes the number of indexes required to hold this patch at the maximum detail level. More...
|
|
size_t | getRequiredVertexCount (void) const |
| Based on a previous call to defineSurface, establishes the number of vertices required to hold this patch at the maximum detail level. More...
|
|
Real | getSubdivisionFactor (void) const |
| Gets the current level of subdivision. More...
|
|
size_t | getVertexOffset (void) const |
| Returns the vertex offset used by this buffer to write data into the buffer. More...
|
|
void | notifyControlPointBufferDeallocated (void) |
| Convenience method for telling the patch that the control points have been deleted, since once the patch has been built they are not required. More...
|
|
void | setSubdivisionFactor (Real factor) |
| Alters the level of subdivision for this surface. More...
|
|
A surface which is defined by curves of some kind to form a patch, e.g.
a Bezier patch.
◆ PatchSurfaceType
Enumerator |
---|
PST_BEZIER | A patch defined by a set of bezier curves.
|
◆ anonymous enum
Constant for indicating automatic determination of subdivision level for patches.
◆ VisibleSide
Enumerator |
---|
VS_FRONT | The side from which u goes right and v goes up (as in texture coords)
|
VS_BACK | The side from which u goes right and v goes down (reverse of texture coords)
|
VS_BOTH | Both sides are visible - warning this creates 2x the number of triangles and adds extra overhead for calculating normals.
|
◆ PatchSurface()
Ogre::PatchSurface::PatchSurface |
( |
| ) |
|
◆ ~PatchSurface()
Ogre::PatchSurface::~PatchSurface |
( |
| ) |
|
◆ defineSurface()
Sets up the surface by defining it's control points, type and initial subdivision level.
- Parameters
-
controlPointBuffer | A pointer to a buffer containing the vertex data which defines control points of the curves rather than actual vertices. Note that you are expected to provide not just position information, but potentially normals and texture coordinates too. The format of the buffer is defined in the VertexDeclaration parameter |
declaration | VertexDeclaration describing the contents of the buffer. Note this declaration must only draw on buffer source 0! |
width | Specifies the width of the patch in control points. |
height | Specifies the height of the patch in control points. |
pType | The type of surface - currently only PST_BEZIER is supported |
uMaxSubdivisionLevel,vMaxSubdivisionLevel | If you want to manually set the top level of subdivision, do it here, otherwise let the system decide. |
visibleSide | Determines which side of the patch (or both) triangles are generated for. |
◆ getRequiredVertexCount()
size_t Ogre::PatchSurface::getRequiredVertexCount |
( |
void |
| ) |
const |
Based on a previous call to defineSurface, establishes the number of vertices required to hold this patch at the maximum detail level.
◆ getRequiredIndexCount()
size_t Ogre::PatchSurface::getRequiredIndexCount |
( |
void |
| ) |
const |
Based on a previous call to defineSurface, establishes the number of indexes required to hold this patch at the maximum detail level.
◆ getCurrentIndexCount()
size_t Ogre::PatchSurface::getCurrentIndexCount |
( |
void |
| ) |
const |
Gets the current index count based on the current subdivision level.
◆ getIndexOffset()
size_t Ogre::PatchSurface::getIndexOffset |
( |
void |
| ) |
const |
|
inline |
Returns the index offset used by this buffer to write data into the buffer.
◆ getVertexOffset()
size_t Ogre::PatchSurface::getVertexOffset |
( |
void |
| ) |
const |
|
inline |
Returns the vertex offset used by this buffer to write data into the buffer.
◆ getBounds()
Gets the bounds of this patch, only valid after calling defineSurface.
◆ getBoundingSphereRadius()
Real Ogre::PatchSurface::getBoundingSphereRadius |
( |
void |
| ) |
const |
Gets the radius of the bounding sphere for this patch, only valid after defineSurface has been called.
◆ build()
Tells the system to build the mesh relating to the surface into externally created buffers.
- Parameters
-
destVertexBuffer | The destination vertex buffer in which to build the patch. |
vertexStart | The offset at which to start writing vertices for this patch |
destIndexBuffer | The destination index buffer in which to build the patch. |
indexStart | The offset at which to start writing indexes for this patch |
◆ setSubdivisionFactor()
void Ogre::PatchSurface::setSubdivisionFactor |
( |
Real |
factor | ) |
|
Alters the level of subdivision for this surface.
◆ getSubdivisionFactor()
Real Ogre::PatchSurface::getSubdivisionFactor |
( |
void |
| ) |
const |
Gets the current level of subdivision.
◆ getControlPointBuffer()
void* Ogre::PatchSurface::getControlPointBuffer |
( |
void |
| ) |
const |
|
inline |
◆ notifyControlPointBufferDeallocated()
void Ogre::PatchSurface::notifyControlPointBufferDeallocated |
( |
void |
| ) |
|
|
inline |
Convenience method for telling the patch that the control points have been deleted, since once the patch has been built they are not required.
The documentation for this class was generated from the following file: