|
template<typename MapT > |
bool | addAttributeMap (const MapT &map, const std::string &name) |
| addAttributeMap Stores a general attribute map to the persistence layer where the attribute group is defined by the given map type. Note, that the map keys are also stored, if you want to store a dense attribute map, please see addDenseAttributeMap. More...
|
|
template<typename MapT , typename BaseVecT > |
bool | addDenseAttributeMap (const BaseMesh< BaseVecT > &mesh, const MapT &map, const std::string &name) |
| addDenseAttributeMap Stores a dense attribute map to the persistence layer where the attribute group is defined by the given map type. More...
|
|
template<typename MapT > |
bool | addDenseAttributeMap (const MapT &map, const std::string &name) |
| addDenseAttributeMap Stores a dense attribute map to the persistence layer where the attribute group is defined by the given map type. More...
|
|
bool | addMesh (const HalfEdgeMesh< BaseVec > &hem) |
| Adds a HalfEdgeMesh to the persistence layer. More...
|
|
template<typename MapT > |
boost::optional< MapT > | getAttributeMap (const std::string &name) |
| getAttributeMap Reads a general attribute map from the persistence layer where the attribute group is defined by the given map type. Note, that the map keys have to be available in the persistence layer. If you want to load a DenseAttributeMap, please use getDenseAttributeMap. More...
|
|
template<typename MapT > |
boost::optional< MapT > | getDenseAttributeMap (const std::string &name) |
| getDenseAttributeMap Reads a dense attribute map from the persistence layer where the attribute group is defined by the given map type. More...
|
|
boost::optional< HalfEdgeMesh< BaseVec > > | getMesh () |
| Reads a HalfEdgeMesh from the persistence layer. More...
|
|
virtual bool | addIndices (const IndexChannel &channel_ptr)=0 |
| Persistence layer interface, Writes the face indices of the mesh to the persistence layer. More...
|
|
virtual bool | addVertices (const FloatChannel &channel_ptr)=0 |
| Persistence layer interface, Writes the vertices of the mesh to the persistence layer. More...
|
|
virtual IndexChannelOptional | getIndices ()=0 |
| Persistence layer interface, Accesses the face indices of the mesh in the persistence layer. More...
|
|
virtual FloatChannelOptional | getVertices ()=0 |
| Persistence layer interface, Accesses the vertices of the mesh in the persistence layer. More...
|
|
virtual bool | addChannel (const std::string group, const std::string name, const FloatChannel &channel)=0 |
| addChannel Writes a float attribute channel from the given group with the given name More...
|
|
virtual bool | addChannel (const std::string group, const std::string name, const FloatChannel &channel)=0 |
| addChannel Writes a float attribute channel from the given group with the given name More...
|
|
virtual bool | addChannel (const std::string group, const std::string name, const IndexChannel &channel)=0 |
| addChannel Writes an index attribute channel from the given group with the given name More...
|
|
virtual bool | addChannel (const std::string group, const std::string name, const IndexChannel &channel)=0 |
| addChannel Writes an index attribute channel from the given group with the given name More...
|
|
virtual bool | addChannel (const std::string group, const std::string name, const UCharChannel &channel)=0 |
| addChannel Writes an unsigned char attribute channel from the given group with the given name More...
|
|
virtual bool | addChannel (const std::string group, const std::string name, const UCharChannel &channel)=0 |
| addChannel Writes an unsigned char attribute channel from the given group with the given name More...
|
|
virtual bool | getChannel (const std::string group, const std::string name, FloatChannelOptional &channel)=0 |
| getChannel Reads a float attribute channel in the given group with the given name More...
|
|
virtual bool | getChannel (const std::string group, const std::string name, FloatChannelOptional &channel)=0 |
| getChannel Reads a float attribute channel in the given group with the given name More...
|
|
virtual bool | getChannel (const std::string group, const std::string name, IndexChannelOptional &channel)=0 |
| getChannel Reads an index attribute channel in the given group with the given name More...
|
|
virtual bool | getChannel (const std::string group, const std::string name, IndexChannelOptional &channel)=0 |
| getChannel Reads an index attribute channel in the given group with the given name More...
|
|
virtual bool | getChannel (const std::string group, const std::string name, UCharChannelOptional &channel)=0 |
| getChannel Reads an unsigned char attribute channel in the given group with the given name More...
|
|
virtual bool | getChannel (const std::string group, const std::string name, UCharChannelOptional &channel)=0 |
| getChannel Reads an unsigned char attribute channel in the given group with the given name More...
|
|
Definition at line 47 of file AttributeMeshIOBase.hpp.