Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
GEO::MeshIOHandler Class Referenceabstract

Mesh loader and saver. More...

#include <geogram/mesh/mesh_io.h>

Inheritance diagram for GEO::MeshIOHandler:
GEO::Counted

Public Member Functions

virtual bool load (const std::string &filename, Mesh &M, const MeshIOFlags &ioflags=MeshIOFlags())=0
 Loads a double precision mesh from a file.
 
virtual bool save (const Mesh &M, const std::string &filename, const MeshIOFlags &ioflags=MeshIOFlags())=0
 Saves a mesh to a file.
 
- Public Member Functions inherited from GEO::Counted
void ref () const
 Increments the reference count.
 
void unref () const
 Decrements the reference count.
 
bool is_shared () const
 Check if the object is shared.
 
int nb_refs () const
 Gets the number of references that point to this object.
 

Static Public Member Functions

static MeshIOHandlercreate (const std::string &format)
 Creates a MeshIOHandler.
 
static MeshIOHandlerget_handler (const std::string &filename)
 Gets the MeshIOHandler for a file.
 
- Static Public Member Functions inherited from GEO::Counted
static void ref (const Counted *counted)
 Increments the reference count.
 
static void unref (const Counted *counted)
 Decrements the reference count.
 

Protected Member Functions

 MeshIOHandler ()
 MeshIOHandler default constructor.
 
 ~MeshIOHandler () override
 MeshIOHandler destructor.
 
virtual void bind_attributes (const Mesh &M, const MeshIOFlags &flags, bool create)
 
virtual void unbind_attributes ()
 
- Protected Member Functions inherited from GEO::Counted
 Counted ()
 Creates a reference counted object.
 
virtual ~Counted ()
 Destroys a reference counted object.
 

Protected Attributes

Attribute< index_tvertex_region_
 
Attribute< index_tedge_region_
 
Attribute< index_tfacet_region_
 
Attribute< index_tcell_region_
 

Related Symbols

(Note that these are not member symbols.)

typedef SmartPointer< MeshIOHandlerMeshIOHandler_var
 A smart pointer that contains a MeshIOHandler object.
 
typedef Factory0< MeshIOHandlerMeshIOHandlerFactory
 MeshIOHandler Factory.
 

Detailed Description

Mesh loader and saver.

MeshIOHandler is responsible to load and save meshes in a specific file format. MeshIOHandler is used internally by mesh_load() and mesh_save(), so you don't normally need to use it directly, unless you need to implement a new file format.

Vorpaline currently supports thr following file formats:

MeshIOHandlers are created using method create() which uses the Factory service. Handlers for new file formats can be implemented and registered to the factory using geo_register_MeshIOHandler_creator().

See also
MeshIOHandlerFactory
geo_register_MeshIOHandler_creator

Definition at line 352 of file mesh_io.h.

Constructor & Destructor Documentation

◆ MeshIOHandler()

GEO::MeshIOHandler::MeshIOHandler ( )
inlineprotected

MeshIOHandler default constructor.

Definition at line 408 of file mesh_io.h.

Member Function Documentation

◆ create()

static MeshIOHandler * GEO::MeshIOHandler::create ( const std::string &  format)
static

Creates a MeshIOHandler.

Parameters
[in]formatformat of the file
Return values
nullptrif format is not a supported file format.
otherwise,apointer to a IO handler. The returned pointer must be stored in an MeshIOHandler_var that does automatic destruction:
static MeshIOHandler * create(const std::string &format)
Creates a MeshIOHandler.
A smart pointer with reference-counted copy semantics.

◆ get_handler()

static MeshIOHandler * GEO::MeshIOHandler::get_handler ( const std::string &  filename)
static

Gets the MeshIOHandler for a file.

Determines the file format from the extension of file filename and creates a MeshIOHandler for this format.

Parameters
[in]filenamea path to a mesh file
Return values
nullptrif format is not a supported file format.
apointer to a IO handler if format is supported.
nullptrotherwise
See also
create()

◆ load()

virtual bool GEO::MeshIOHandler::load ( const std::string &  filename,
Mesh M,
const MeshIOFlags ioflags = MeshIOFlags() 
)
pure virtual

Loads a double precision mesh from a file.

Parameters
[in]filenamename of the file
[out]Mthe loaded mesh
[in]ioflagsspecifies which attributes and elements should be loaded

◆ save()

virtual bool GEO::MeshIOHandler::save ( const Mesh M,
const std::string &  filename,
const MeshIOFlags ioflags = MeshIOFlags() 
)
pure virtual

Saves a mesh to a file.

Parameters
[in]Mthe mesh to save
[in]filenamename of the file
[in]ioflagsspecifies which attributes and elements should be saved
Returns
true on success, false otherwise.

Friends And Related Symbol Documentation

◆ MeshIOHandler_var

A smart pointer that contains a MeshIOHandler object.

Definition at line 432 of file mesh_io.h.

◆ MeshIOHandlerFactory

MeshIOHandler Factory.

This Factory is used to create MeshIOHandler objects. It can also be used to register new MeshIOHandler implementations.

See also
geo_register_MeshIOHandler_creator
Factory

Definition at line 444 of file mesh_io.h.

Member Data Documentation

◆ cell_region_

Attribute<index_t> GEO::MeshIOHandler::cell_region_
protected

Definition at line 425 of file mesh_io.h.

◆ edge_region_

Attribute<index_t> GEO::MeshIOHandler::edge_region_
protected

Definition at line 423 of file mesh_io.h.

◆ facet_region_

Attribute<index_t> GEO::MeshIOHandler::facet_region_
protected

Definition at line 424 of file mesh_io.h.

◆ vertex_region_

Attribute<index_t> GEO::MeshIOHandler::vertex_region_
protected

Definition at line 422 of file mesh_io.h.


The documentation for this class was generated from the following file: