|
std::string | getElementName () const override |
|
bool | registerDelegate (PlyReader *reader) override |
| Registers the delegate with the reader. More...
|
|
bool | fileIsAcceptable (const PlyReader &reader) override |
| Check whether the file in the reader can be used with this delegate, this gives the delegate a chance to make sure that all the elements and properties that are required are available in the file encapsulated by the reader.
|
|
void | endParseFile () override |
| Callback for end of PlyReader::parseFile.
|
|
void | processVertex (const std::string &elementName) override |
| Callback function to process one vertex. More...
|
|
void | processFemElement (const std::string &elementName) override |
| Callback function to process one FemElement. More...
|
|
void * | beginRadius (const std::string &elementName, size_t radiusCount) |
| Callback function, begin the processing of radius. More...
|
|
void | endRadius (const std::string &elementName) |
| Callback function, end the processing of radius. More...
|
|
void | processBoundaryCondition (const std::string &elementName) override |
| Callback function to process one boundary condition. More...
|
|
bool | registerDelegate (SurgSim::DataStructures::PlyReader *reader) override |
| Registers the delegate with the reader. More...
|
|
bool | fileIsAcceptable (const SurgSim::DataStructures::PlyReader &reader) override |
| Check whether the file in the reader can be used with this delegate, this gives the delegate a chance to make sure that all the elements and properties that are required are available in the file encapsulated by the reader.
|
|
virtual void * | beginVertices (const std::string &elementName, size_t vertexCount) |
| Callback function, begin the processing of vertices. More...
|
|
virtual void | endVertices (const std::string &elementName) |
| Callback function to finalize processing of vertices. More...
|
|
void * | beginFemElements (const std::string &elementName, size_t elementCount) |
| Callback function, begin the processing of FemElements. More...
|
|
void | endFemElements (const std::string &elementName) |
| Callback function to finalize processing of FemElements. More...
|
|
void * | beginMaterials (const std::string &elementName, size_t materialCount) |
| Callback function, begin the processing of materials. More...
|
|
void | endMaterials (const std::string &elementName) |
| Callback function, end the processing of materials. More...
|
|
void * | beginBoundaryConditions (const std::string &elementName, size_t boundaryConditionCount) |
| Callback function, begin the processing of boundary conditions. More...
|
|