|
| typedef TDataType::Real | Real |
| |
| typedef TDataType::Coord | Coord |
| |
| typedef PointType | Point |
| |
| typedef VectorND< PointType, 2 > | Edge |
| |
| typedef Vector< PointType, 3 > | Triangle |
| |
| typedef VectorND< PointType, 4 > | Quad |
| |
| typedef VectorND< PointType, 4 > | Tetrahedron |
| |
| typedef VectorND< PointType, 5 > | Pyramid |
| |
| typedef VectorND< PointType, 6 > | Pentahedron |
| |
| typedef VectorND< PointType, 8 > | Hexahedron |
| |
| typedef VectorND< PointType, 2 > | Edg2Tri |
| |
| typedef VectorND< PointType, 3 > | Tri2Edg |
| |
| typedef VectorND< PointType, 2 > | Edg2Quad |
| |
| typedef VectorND< PointType, 4 > | Quad2Edg |
| |
| typedef VectorND< PointType, 2 > | Tri2Tet |
| |
| typedef VectorND< PointType, 4 > | Tet2Tri |
| |
| typedef VectorND< PointType, 2 > | Tri2Quad |
| |
| typedef VectorND< PointType, 2 > | Quad2Hex |
| |
| typedef VectorND< PointType, 2 > | Edg2Hex |
| |
| typedef VectorND< PointType, 2 > | Edg2Poly |
| |
| typedef std::vector< FBase * > | FieldVector |
| |
| typedef std::map< FieldID, FBase * > | FieldMap |
| |
|
| | VoxelOctree () |
| |
| | ~VoxelOctree () override |
| |
| DYN_FUNC uint | size () const |
| |
| DYN_FUNC void | setLevelNum (int num) |
| |
| DYN_FUNC void | setGrid (int nx, int ny, int nz) |
| |
| DYN_FUNC void | setDx (Real dx) |
| |
| DYN_FUNC void | setOrigin (Coord origin) |
| |
| DYN_FUNC void | setLevel0 (int level0) |
| |
| DYN_FUNC int | getLevelNum () |
| |
| DYN_FUNC Real | getDx () |
| |
| DYN_FUNC Coord | getOrigin () |
| |
| DYN_FUNC Coord | getTopOrigin () |
| |
| DYN_FUNC int | getLevel0 () |
| |
| DYN_FUNC void | getGrid (int &nx, int &ny, int &nz) |
| |
| GPU_FUNC VoxelOctreeNode< Coord > & | operator[] (unsigned int id) |
| |
| void | setVoxelOctree (DArray< VoxelOctreeNode< Coord > > &oct) |
| |
| GPU_FUNC void | getNode (int point_i, int point_j, int point_k, VoxelOctreeNode< Coord > &node_index, int &id) |
| |
| void | getLeafs (DArray< Coord > &pos, DArray< int > &pos_pos) |
| |
| void | getCellVertices (DArray< Coord > &pos) |
| |
| void | getCellVertices0 (DArray< Coord > &pos) |
| |
| void | getCellVertices1 (DArray< Coord > &pos) |
| |
| void | getCellVertices2 (DArray< Coord > &pos) |
| |
| void | setSdfValues (DArray< Real > &vals) |
| |
| DArray< Real > & | getSdfValues () |
| |
| void | getLeafsValue (DArray< Coord > &pos, DArray< Real > &val) |
| |
| void | updateNeighbors () |
| |
| DArray< VoxelOctreeNode< Coord > > & | getVoxelOctree () |
| |
| DArrayList< int > & | getNeighbors () |
| |
| void | getSignDistance (DArray< Coord > point_pos, DArray< Real > &point_sdf, DArray< Coord > &point_normal, bool inverted=false) |
| |
| void | getSignDistanceKernel (DArray< Coord > point_pos, DArray< Real > &point_sdf) |
| |
| void | getSignDistanceMLS (DArray< Coord > point_pos, DArray< Real > &point_sdf, DArray< Coord > &point_normal, bool inverted=false) |
| |
| | TopologyModule () |
| |
| | ~TopologyModule () override |
| |
| virtual int | getDOF () |
| |
| void | tagAsChanged () |
| |
| void | tagAsUnchanged () |
| |
| bool | isTopologyChanged () |
| |
| void | update () |
| |
| | OBase () |
| |
| | ~OBase () override |
| |
| virtual std::string | caption () |
| | Return the caption.
|
| |
| virtual bool | captionVisible () |
| | Whether to hide the caption in the GUI.
|
| |
| virtual std::string | description () |
| | Return a description for the node or module, override this function to support user-defined description.
|
| |
| virtual std::string | getName () |
| |
| bool | addField (FBase *data) |
| | Add a field to Base FieldID will be set to the name of Field by default.
|
| |
| bool | addField (FieldID name, FBase *data) |
| | Add a field to Base.
|
| |
| bool | addFieldAlias (FieldID name, FBase *data) |
| |
| bool | addFieldAlias (FieldID name, FBase *data, FieldMap &fieldAlias) |
| |
| bool | findField (FBase *data) |
| | Find a field by its pointer.
|
| |
| bool | findFieldAlias (const FieldID name) |
| | Find a field by its name.
|
| |
| bool | findFieldAlias (const FieldID name, FieldMap &fieldAlias) |
| | Find a field in fieldAlias by its name This function is typically called by other functions.
|
| |
| bool | removeField (FBase *data) |
| | Remove a field by its pointer.
|
| |
| bool | removeFieldAlias (const FieldID name) |
| | Remove a field by its name.
|
| |
| bool | removeFieldAlias (const FieldID name, FieldMap &fieldAlias) |
| |
| FBase * | getField (const FieldID name) |
| | Return a field by its name.
|
| |
| std::vector< FBase * > & | getAllFields () |
| |
| virtual bool | attachField (FBase *field, std::string name, std::string desc, bool autoDestroy=true) |
| | Attach a field to Base.
|
| |
| template<typename T> |
| T * | getField (FieldID name) |
| |
| bool | isAllFieldsReady () |
| | Check the completeness of all required fields.
|
| |
| std::vector< FieldID > | getFieldAlias (FBase *data) |
| |
| int | getFieldAliasCount (FBase *data) |
| |
| void | setBlockCoord (float x, float y) |
| |
| float | bx () |
| |
| float | by () |
| |
| bool | findInputField (FBase *field) |
| |
| bool | addInputField (FBase *field) |
| |
| bool | removeInputField (FBase *field) |
| |
| std::vector< FBase * > & | getInputFields () |
| |
| bool | findOutputField (FBase *field) |
| |
| bool | addOutputField (FBase *field) |
| |
| bool | addToOutput (FBase *field) |
| |
| bool | removeOutputField (FBase *field) |
| |
| bool | removeFromOutput (FBase *field) |
| |
| std::vector< FBase * > & | getOutputFields () |
| |
| bool | findParameter (FBase *field) |
| |
| bool | addParameter (FBase *field) |
| |
| bool | removeParameter (FBase *field) |
| |
| std::vector< FBase * > & | getParameters () |
| |
| | Object () |
| |
| virtual | ~Object () |
| |
| ObjectId | objectId () |
| |
template<typename TDataType>
class dyno::VoxelOctree< TDataType >
Definition at line 199 of file VoxelOctree.h.