File: export_dxf.h

package info (click to toggle)
meshlab 2020.09%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 45,124 kB
  • sloc: cpp: 400,238; ansic: 31,952; javascript: 1,578; sh: 387; yacc: 238; lex: 139; python: 86; makefile: 29
file content (119 lines) | stat: -rw-r--r-- 3,541 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/****************************************************************************
* VCGLib                                                            o o     *
* Visual and Computer Graphics Library                            o     o   *
*                                                                _   O  _   *
* Copyright(C) 2004-2016                                           \/)\/    *
* Visual Computing Lab                                            /\/|      *
* ISTI - Italian National Research Council                           |      *
*                                                                    \      *
* All rights reserved.                                                      *
*                                                                           *
* This program is free software; you can redistribute it and/or modify      *
* it under the terms of the GNU General Public License as published by      *
* the Free Software Foundation; either version 2 of the License, or         *
* (at your option) any later version.                                       *
*                                                                           *
* This program is distributed in the hope that it will be useful,           *
* but WITHOUT ANY WARRANTY; without even the implied warranty of            *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the             *
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)          *
* for more details.                                                         *
*                                                                           *
****************************************************************************/
/****************************************************************************
  History

$Log: not supported by cvs2svn $
Revision 1.4  2005/02/03 11:22:34  spinelli
ricorretti i metodi save per rendere compatibile il formato dxf con il formato di autocad specificato nel dxf reference 2005

Revision 1.3  2004/07/02 17:08:12  ganovelli
created

Revision 1.2  2004/06/10 15:15:16  ganovelli
changes to comply dxf specs

Revision 1.1  2004/05/27 13:24:08  ganovelli
export_dxf created

****************************************************************************/
#ifndef __VCG_LIB_EXPORTER_DXF
#define __VCG_LIB_EXPORTER_DXF


namespace vcg {
	namespace edg {
		namespace io {


template <class EdgeMeshType>
class ExporterDXF
{
public:

	ExporterDXF(void){}

	

	static bool Save(EdgeMeshType  *mp, const char * filename)
	{
		FILE * o = fopen(filename,"w");
		if(o==NULL)	return false;
		fprintf(o,"0\n");
		fprintf(o,"SECTION\n");
		fprintf(o,"2\n");
		fprintf(o,"ENTITIES\n");

		Save(mp,o);

		fprintf(o,"0\n");
		fprintf(o,"ENDSEC\n");
		fprintf(o,"0\n");
		fprintf(o,"EOF\n");
		fclose(o);
		return true;
	}



	static void Save(EdgeMeshType *mp, FILE* o )
	{
		typename EdgeMeshType::EdgeIterator i;
		for(i=mp->edges.begin(); i!=mp->edges.end();++i)
		{
			Point3f p1 = (*i).V(0)->P();
			Point3f p2 = (*i).V(1)->P();


			fprintf(o,"0\n");  
			fprintf(o,"LINE\n");
			fprintf(o,"8\n");  
			fprintf(o,"0\n");       
			fprintf(o,"10\n"); 

			fprintf(o,"%f\n", p1[0]);     //X
			fprintf(o,"20\n"); 
			fprintf(o,"%f\n", p1[1]);     //Y
			fprintf(o,"30\n");  
			fprintf(o,"%f\n", p1[2]);     //Z

			fprintf(o,"11\n");
			fprintf(o,"%f\n", p2[0]);     //X
			fprintf(o,"21\n"); 
			fprintf(o,"%f\n", p2[1]);     //Y
			fprintf(o,"31\n"); 
			fprintf(o,"%f\n", p2[2]);     //Z

		}



	}


};

		};
	};
};
#endif