|
virtual std::string | getElementName () const override |
|
virtual void | processFemElement (const std::string &elementName) override |
| Callback function to process one FemElement. More...
|
|
virtual bool | registerDelegate (SurgSim::DataStructures::PlyReader *reader) override |
| Registers the delegate with the reader. More...
|
|
virtual 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. More...
|
|
void | startParseFile () |
| Callback for beginning of PlyReader::parseFile. More...
|
|
virtual void | endParseFile () |
| Callback for end of PlyReader::parseFile. More...
|
|
void * | beginVertices (const std::string &elementName, size_t vertexCount) |
| Callback function, begin the processing of vertices. More...
|
|
void | processVertex (const std::string &elementName) |
| Callback function to process one vertex. More...
|
|
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...
|
|
void | processBoundaryCondition (const std::string &elementName) |
| Callback function to process one boundary condition. More...
|
|
Implementation of PlyReaderDelegate for Fem3DRepresentation.