From ec49a65b82517cd044d87e3abed349f5108cd503 Mon Sep 17 00:00:00 2001 From: Mike Kremer Date: Thu, 1 Apr 2010 08:35:42 +0000 Subject: [PATCH] Added note on mesh reading/writing git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@311 fdac6126-5c0c-442c-9429-916003d36597 --- Doc/mesh.docu | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Doc/mesh.docu b/Doc/mesh.docu index c01352f8..b7a25dd9 100644 --- a/Doc/mesh.docu +++ b/Doc/mesh.docu @@ -602,7 +602,7 @@ provides the pubic member functions of //----------------------------------------------------------------------------- -/** \page mesh_io Mesh Read and write files +/** \page mesh_io Read and write meshes from files This section explains the methods used to read a mesh from a file or write it to a file. The corresponding functions are defined in the @@ -615,6 +615,10 @@ finally step three will show you how to add your own modules to IOManager. For a quick start you can copy the following code directly to your project. +Note: IOManager uses the filename extension to determine which reader/writer +to use. I.e. if passing "inputmesh.obj" as filename parameter, the OBJ-File +reader/writer will be used to parse/write the file. + \include mesh_io.cc