From b57f01e29d03c9ce6dc0fdf28a9f7efda969ba4f Mon Sep 17 00:00:00 2001 From: Paolo Cignoni cignoni Date: Thu, 19 Jan 2006 09:36:29 +0000 Subject: [PATCH] cleaned up history log --- src/meshlabplugins/meshio/meshio.cpp | 133 +------------------ src/meshlabplugins/meshio/meshio.h | 28 +--- src/meshlabplugins/meshio/savemaskdialog.cpp | 13 +- src/test/io/export_3ds.h | 54 +------- src/test/io/export_obj.h | 87 +----------- 5 files changed, 15 insertions(+), 300 deletions(-) diff --git a/src/meshlabplugins/meshio/meshio.cpp b/src/meshlabplugins/meshio/meshio.cpp index 003c0dba3..491cecc20 100644 --- a/src/meshlabplugins/meshio/meshio.cpp +++ b/src/meshlabplugins/meshio/meshio.cpp @@ -24,6 +24,9 @@ History $Log$ + Revision 1.53 2006/01/19 09:36:28 fmazzant + cleaned up history log + Revision 1.52 2006/01/17 23:46:36 cignoni Moved some include from meshmodel.h to here @@ -37,136 +40,6 @@ added rename texture dialog for exporter removed old maskobj - Revision 1.48 2006/01/16 11:49:48 fmazzant - added base texture name option. - - Revision 1.47 2006/01/15 00:45:39 fmazzant - extend mask exporter for all type file format + - - Revision 1.46 2006/01/14 14:20:32 fmazzant - bux-fix: mask -> newmask in exporter3ds - - Revision 1.45 2006/01/14 14:12:07 fmazzant - sample for use save's mask exporter. ony 3ds. - - Revision 1.44 2006/01/14 11:23:24 fmazzant - update savemask exporter with init a mask [base type] - - Revision 1.43 2006/01/14 00:02:52 fmazzant - added new include for exporter dialog - - Revision 1.42 2006/01/13 15:46:20 cignoni - added mask to ply saving - - Revision 1.41 2006/01/13 15:35:58 fmazzant - changed return type of exporter from bool to int - - Revision 1.40 2006/01/13 14:18:36 cignoni - Added initialization of mask to zero - - Revision 1.39 2006/01/10 16:52:19 fmazzant - update ply::PlyMask -> io::Mask - - Revision 1.38 2006/01/10 00:36:48 buzzelli - adding first rough implementation of 3ds file importer - - Revision 1.37 2006/01/04 15:27:30 alemochi - Renamed property of Format struct, and changed plugin dialog - - Revision 1.36 2005/12/23 00:56:42 buzzelli - Face normals computed also for STL and OFF files. - Solved (hopefully) bug with progressbar. - - Revision 1.35 2005/12/22 23:39:21 buzzelli - UpdateNormals is now called only when needed - - Revision 1.34 2005/12/22 21:05:43 cignoni - Removed Optional Face Normal and added some initalization after opening - - Revision 1.33 2005/12/21 23:28:56 buzzelli - code cleaning - - Revision 1.32 2005/12/21 14:22:58 buzzelli - First steps in STL and OFF files importing - - Revision 1.31 2005/12/21 01:17:05 buzzelli - Better handling of errors residing inside opened file - - Revision 1.30 2005/12/16 17:14:42 fmazzant - added control file's extension - - Revision 1.29 2005/12/16 00:37:30 fmazzant - update base export_3ds.h + callback - - Revision 1.28 2005/12/15 12:27:57 fmazzant - first commit 3ds - - Revision 1.27 2005/12/15 09:50:53 fmazzant - 3ds - - Revision 1.26 2005/12/15 09:24:23 fmazzant - added base support (very base) 3ds & cleaned code - - Revision 1.25 2005/12/15 08:10:51 fmazzant - added OFF & STL in formats(...) - - Revision 1.24 2005/12/15 01:20:28 buzzelli - formats method adapted in order to fit with recent changes in MeshIOInterface - - Revision 1.23 2005/12/14 18:08:24 fmazzant - added generic save of all type define obj, ply, off, stl - - Revision 1.22 2005/12/14 00:11:33 fmazzant - update method SaveAs for a using generic (not still optimized) - - Revision 1.21 2005/12/13 14:02:50 fmazzant - added the rescue of the materials of the obj - - Revision 1.20 2005/12/09 18:16:14 fmazzant - added generic obj save with plugin arch. - - Revision 1.19 2005/12/09 16:37:20 fmazzant - maskobj for select element to save - - Revision 1.18 2005/12/09 00:34:31 buzzelli - io importing mechanism adapted in order to be fully transparent towards the user - - Revision 1.17 2005/12/07 07:52:25 fmazzant - export obj generic(base) - - Revision 1.16 2005/12/07 00:56:40 fmazzant - added support for exporter generic obj file (level base) - - Revision 1.15 2005/12/06 05:16:54 buzzelli - added code to grant that material files will be searched into the right directory - - Revision 1.14 2005/12/03 23:46:56 cignoni - Adapted to the new plugin interface in a more standard way - - Revision 1.13 2005/12/03 09:45:42 fmazzant - adding to mask how much we save a obj file format. the mask taken from the dialogue window SaveMaskDialog. - - Revision 1.12 2005/12/02 23:36:52 fmazzant - update to the new interface of MeshIOInterface - - Revision 1.11 2005/12/02 17:41:33 fmazzant - added support obj dialog exporter - - Revision 1.10 2005/11/30 16:26:56 cignoni - All the modification, restructuring seen during the 30/12 lesson... - - Revision 1.9 2005/11/30 08:58:57 mariolatronico - temporary remove of ExportOBJ (in save) - - Revision 1.8 2005/11/30 08:34:33 cignoni - Removed spurious 'i' before the comment header. - Corrected small error in save. - - Revision 1.7 2005/11/30 01:06:59 fmazzant - added support Export OBJ(base) - added comment line history - deleted bug-fix in meshio.pro in unix{ ... } - *****************************************************************************/ #include #include diff --git a/src/meshlabplugins/meshio/meshio.h b/src/meshlabplugins/meshio/meshio.h index def717bbb..a9cadf660 100644 --- a/src/meshlabplugins/meshio/meshio.h +++ b/src/meshlabplugins/meshio/meshio.h @@ -24,6 +24,9 @@ History $Log$ + Revision 1.17 2006/01/19 09:36:28 fmazzant + cleaned up history log + Revision 1.16 2006/01/17 13:47:45 fmazzant update interface meshio : formats -> importFormats() & exportFormts @@ -36,31 +39,6 @@ Revision 1.13 2005/12/07 07:52:25 fmazzant export obj generic(base) - Revision 1.12 2005/12/07 01:11:18 fmazzant - bug-fix(sorry) - - Revision 1.11 2005/12/03 23:46:56 cignoni - Adapted to the new plugin interface in a more standard way - - Revision 1.10 2005/12/03 22:50:06 cignoni - Added copyright info - - Revision 1.9 2005/12/02 23:36:52 fmazzant - update to the new interface of MeshIOInterface - - Revision 1.8 2005/12/02 17:41:33 fmazzant - added support obj dialog exporter - - Revision 1.7 2005/11/30 16:26:56 cignoni - All the modification, restructuring seen during the 30/12 lesson... - - Revision 1.6 2005/11/30 01:06:59 fmazzant - added support Export OBJ(base) - added comment line history - deleted bug-fix in meshio.pro in unix{ ... } - - - *****************************************************************************/ #ifndef EXTRAIOPLUGIN_H #define EXTRAIOPLUGIN_H diff --git a/src/meshlabplugins/meshio/savemaskdialog.cpp b/src/meshlabplugins/meshio/savemaskdialog.cpp index 4b04f6795..5402188ad 100644 --- a/src/meshlabplugins/meshio/savemaskdialog.cpp +++ b/src/meshlabplugins/meshio/savemaskdialog.cpp @@ -24,6 +24,9 @@ History $Log$ + Revision 1.8 2006/01/19 09:36:28 fmazzant + cleaned up history log + Revision 1.7 2006/01/10 16:52:19 fmazzant update ply::PlyMask -> io::Mask @@ -36,16 +39,6 @@ Revision 1.4 2005/12/07 07:52:25 fmazzant export obj generic(base) - Revision 1.3 2005/12/06 15:54:59 fmazzant - update dialog export obj - - Revision 1.2 2005/12/03 09:45:42 fmazzant - adding to mask how much we save a obj file format. the mask taken from the dialogue window SaveMaskDialog. - - Revision 1.1 2005/12/02 17:40:26 fmazzant - added dialog obj exporter. - - *****************************************************************************/ #include "savemaskdialog.h" diff --git a/src/test/io/export_3ds.h b/src/test/io/export_3ds.h index 1d86fd8fc..fabf6f8f7 100644 --- a/src/test/io/export_3ds.h +++ b/src/test/io/export_3ds.h @@ -25,6 +25,9 @@ History $Log$ + Revision 1.22 2006/01/19 09:36:29 fmazzant + cleaned up history log + Revision 1.21 2006/01/18 16:14:52 fmazzant update small error @@ -37,57 +40,6 @@ Revision 1.18 2006/01/18 14:57:26 fmazzant added Lib3dsNode in export_3ds - Revision 1.17 2006/01/18 12:27:49 fmazzant - added control on diffuse component - - Revision 1.16 2006/01/17 18:13:06 fmazzant - changed vertflags in vertnormal [bug] - - Revision 1.15 2006/01/17 13:48:54 fmazzant - added capability mask on export file format - - Revision 1.14 2006/01/15 08:51:30 fmazzant - added mask specificy in 3ds code - - Revision 1.13 2006/01/14 00:03:26 fmazzant - added more controls - - Revision 1.12 2006/01/13 15:35:58 fmazzant - changed return type of exporter from bool to int - - Revision 1.11 2006/01/12 23:53:17 fmazzant - deleted part of texture base - - Revision 1.10 2006/01/12 16:38:45 fmazzant - update code & clean code - - Revision 1.9 2006/01/11 16:32:43 fmazzant - added comment-code for coord text - - Revision 1.8 2006/01/10 16:52:19 fmazzant - update ply::PlyMask -> io::Mask - - Revision 1.7 2005/12/23 10:24:37 fmazzant - added base save 3ds materials - - Revision 1.6 2005/12/16 17:26:05 fmazzant - cleaned up code - - Revision 1.5 2005/12/16 15:30:17 fmazzant - added in Save 3ds vertexs & faces - - Revision 1.4 2005/12/16 13:04:04 fmazzant - update method SaveBinary. generete empty file 3ds. - - Revision 1.3 2005/12/16 00:37:31 fmazzant - update base export_3ds.h + callback - - Revision 1.2 2005/12/15 15:26:33 fmazzant - update lib3ds - - Revision 1.1 2005/12/15 12:27:58 fmazzant - first commit 3ds - ****************************************************************************/ #ifndef __VCGLIB_EXPORT_3DS diff --git a/src/test/io/export_obj.h b/src/test/io/export_obj.h index 4863f8479..8179fc635 100644 --- a/src/test/io/export_obj.h +++ b/src/test/io/export_obj.h @@ -25,6 +25,9 @@ History $Log$ + Revision 1.33 2006/01/19 09:36:29 fmazzant + cleaned up history log + Revision 1.32 2006/01/18 00:45:56 fmazzant added control on face's diffuse @@ -37,90 +40,6 @@ Revision 1.29 2006/01/14 00:03:26 fmazzant added more controls - Revision 1.28 2006/01/13 15:35:58 fmazzant - changed return type of exporter from bool to int - - Revision 1.27 2006/01/12 19:34:43 fmazzant - cleaned code - - Revision 1.26 2006/01/12 18:43:41 fmazzant - ostream -> fprintf - - Revision 1.24 2006/01/12 16:16:36 fmazzant - diminished the time completely of the export_obj - - Revision 1.23 2006/01/11 15:55:14 fmazzant - bug-fix in vertex-normal - - Revision 1.22 2006/01/10 16:52:19 fmazzant - update ply::PlyMask -> io::Mask - - Revision 1.21 2006/01/04 16:51:44 fmazzant - changed PM_VERTEXCOORD in PM_WEDGTEXCOORD - - Revision 1.20 2005/12/23 10:12:51 fmazzant - deleted bug to save a face - - Revision 1.19 2005/12/16 14:58:28 fmazzant - deleted old code - - Revision 1.18 2005/12/15 01:00:51 fmazzant - added the +1 to the value of return from function GetIndexVertex(m, (*fi).V(k)) - - Revision 1.17 2005/12/14 22:21:49 cignoni - Changed GetIndexVertex from O(n) to O(1) - - Revision 1.16 2005/12/14 18:08:24 fmazzant - added generic save of all type define obj, ply, off, stl - - Revision 1.15 2005/12/14 10:49:00 mariolatronico - check on textures size [ with Federico Mazzanti supervision ] - - Revision 1.14 2005/12/14 08:38:55 fmazzant - bugfix - - Revision 1.13 2005/12/14 01:21:15 fmazzant - bug-fix - - Revision 1.12 2005/12/14 00:06:19 fmazzant - deleted bug meterial index usemtl. - - Revision 1.11 2005/12/13 14:02:51 fmazzant - added the rescue of the materials of the obj - - Revision 1.10 2005/12/11 08:33:57 fmazzant - deleted method. - - Revision 1.9 2005/12/09 18:16:14 fmazzant - added generic obj save with plugin arch. - - Revision 1.8 2005/12/07 08:01:09 fmazzant - exporter obj temporany - - Revision 1.7 2005/12/03 09:45:43 fmazzant - adding to mask how much we save a obj file format. the mask taken from the dialogue window SaveMaskDialog. - - Revision 1.6 2005/12/02 17:49:27 fmazzant - added support for the rescue of the normal per vertex - - Revision 1.5 2005/11/30 00:44:07 fmazzant - added: - 1. save TCoord2 with struct map - 2. callback - 3. define static member to the access class Exporter - - Revision 1.4 2005/11/10 00:06:43 fmazzant - Added comment code - - Revision 1.3 2005/11/10 00:01:50 fmazzant - Added comment revision - -Revision 1.2 2005/11/09 23:36:10 fmazzant -Up to date method Save - -Revision 1.1 2005/11/08 17:45:26 fmazzant -Added implementation of OBJ file exporter. - ****************************************************************************/ #ifndef __VCGLIB_EXPORT_OBJ