Table of subdivision stencils. More...
#include <stencilTable.h>
Public Member Functions | |
virtual | ~StencilTableReal () |
int | GetNumStencils () const |
Returns the number of stencils in the table. More... | |
int | GetNumControlVertices () const |
Returns the number of control vertices indexed in the table. More... | |
StencilReal< REAL > | GetStencil (Index i) const |
Returns a Stencil at index i in the table. More... | |
std::vector< int > const & | GetSizes () const |
Returns the number of control vertices of each stencil in the table. More... | |
std::vector< Index > const & | GetOffsets () const |
Returns the offset to a given stencil (factory may leave empty) More... | |
std::vector< Index > const & | GetControlIndices () const |
Returns the indices of the control vertices. More... | |
std::vector< REAL > const & | GetWeights () const |
Returns the stencil interpolation weights. More... | |
StencilReal< REAL > | operator[] (Index index) const |
Returns the stencil at index i in the table. More... | |
template<class T , class U > | |
void | UpdateValues (T const &srcValues, U &dstValues, Index start=-1, Index end=-1) const |
Updates point values based on the control values. More... | |
template<class T1 , class T2 , class U > | |
void | UpdateValues (T1 const &srcBase, int numBase, T2 const &srcRef, U &dstValues, Index start=-1, Index end=-1) const |
template<class T , class U > | |
void | UpdateValues (T const *src, U *dst, Index start=-1, Index end=-1) const |
template<class T1 , class T2 , class U > | |
void | UpdateValues (T1 const *srcBase, int numBase, T2 const *srcRef, U *dst, Index start=-1, Index end=-1) const |
void | Clear () |
Clears the stencils from the table. More... | |
Protected Member Functions | |
StencilTableReal (int numControlVerts, std::vector< int > const &offsets, std::vector< int > const &sizes, std::vector< int > const &sources, std::vector< REAL > const &weights, bool includeCoarseVerts, size_t firstOffset) | |
template<class T , class U > | |
void | update (T const &srcValues, U &dstValues, std::vector< REAL > const &valueWeights, Index start, Index end) const |
template<class T1 , class T2 , class U > | |
void | update (T1 const &srcBase, int numBase, T2 const &srcRef, U &dstValues, std::vector< REAL > const &valueWeights, Index start, Index end) const |
void | generateOffsets () |
void | resize (int nstencils, int nelems) |
void | reserve (int nstencils, int nelems) |
void | shrinkToFit () |
void | finalize () |
StencilTableReal () | |
StencilTableReal (int numControlVerts) | |
Protected Attributes | |
int | _numControlVertices |
std::vector< int > | _sizes |
std::vector< Index > | _offsets |
std::vector< Index > | _indices |
std::vector< REAL > | _weights |
Friends | |
class | StencilTableFactoryReal< REAL > |
class | Far::PatchTableBuilder |
Table of subdivision stencils.
Stencils are the most direct method of evaluation of locations on the limit of a surface. Every point of a limit surface can be computed by linearly blending a collection of coarse control vertices.
A stencil assigns a series of control vertex indices with a blending weight that corresponds to a unique parametric location of the limit surface. When the control vertices move in space, the limit location can be very efficiently recomputed simply by applying the blending weights to the series of coarse control vertices.
Definition at line 141 of file stencilTable.h.
|
protected |
|
inlinevirtual |
Definition at line 153 of file stencilTable.h.
|
inlineprotected |
Definition at line 255 of file stencilTable.h.
|
inlineprotected |
Definition at line 256 of file stencilTable.h.
void Clear | ( | ) |
Clears the stencils from the table.
|
inlineprotected |
Definition at line 714 of file stencilTable.h.
|
inlineprotected |
Definition at line 678 of file stencilTable.h.
|
inline |
Returns the indices of the control vertices.
Definition at line 179 of file stencilTable.h.
|
inline |
Returns the number of control vertices indexed in the table.
Definition at line 161 of file stencilTable.h.
|
inline |
Returns the number of stencils in the table.
Definition at line 156 of file stencilTable.h.
|
inline |
Returns the offset to a given stencil (factory may leave empty)
Definition at line 174 of file stencilTable.h.
|
inline |
Returns the number of control vertices of each stencil in the table.
Definition at line 169 of file stencilTable.h.
|
inline |
Returns a Stencil at index i in the table.
Definition at line 722 of file stencilTable.h.
|
inline |
Returns the stencil interpolation weights.
Definition at line 184 of file stencilTable.h.
|
inline |
Returns the stencil at index i in the table.
Definition at line 734 of file stencilTable.h.
|
inlineprotected |
Definition at line 698 of file stencilTable.h.
|
inlineprotected |
Definition at line 690 of file stencilTable.h.
|
inlineprotected |
Definition at line 706 of file stencilTable.h.
|
protected |
Definition at line 650 of file stencilTable.h.
|
protected |
Definition at line 618 of file stencilTable.h.
|
inline |
Updates point values based on the control values.
GetNumStencils()
elements.srcValues | Buffer with primvar data for the control vertices |
dstValues | Destination buffer for the interpolated primvar data |
start | Index of first destination value to update |
end | Index of last destination value to update |
Definition at line 205 of file stencilTable.h.
|
inline |
Definition at line 210 of file stencilTable.h.
Definition at line 217 of file stencilTable.h.
|
inline |
Definition at line 221 of file stencilTable.h.
|
friend |
Definition at line 261 of file stencilTable.h.
|
friend |
Definition at line 260 of file stencilTable.h.
|
protected |
Definition at line 266 of file stencilTable.h.
|
protected |
Definition at line 263 of file stencilTable.h.
|
protected |
Definition at line 266 of file stencilTable.h.
|
protected |
Definition at line 265 of file stencilTable.h.
|
protected |
Definition at line 268 of file stencilTable.h.