forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvtkMCubesWriter.cxx
158 lines (139 loc) · 4.1 KB
/
vtkMCubesWriter.cxx
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/*=========================================================================
Program: Visualization Toolkit
Module: vtkMCubesWriter.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkMCubesWriter.h"
#include "vtkByteSwap.h"
#include "vtkCellArray.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
#include "vtkPolyData.h"
vtkStandardNewMacro(vtkMCubesWriter);
// Create object.
vtkMCubesWriter::vtkMCubesWriter()
{
this->LimitsFileName = NULL;
}
vtkMCubesWriter::~vtkMCubesWriter()
{
if ( this->LimitsFileName )
{
delete [] this->LimitsFileName;
}
}
// Write out data in MOVIE.BYU format.
void vtkMCubesWriter::WriteData()
{
vtkPoints *pts;
vtkDataArray *normals;
vtkCellArray *polys;
vtkPolyData *input=this->GetInput();
polys = input->GetPolys();
pts = input->GetPoints();
if (pts == NULL || polys == NULL )
{
vtkErrorMacro(<<"No data to write!");
return;
}
normals = input->GetPointData()->GetNormals();
if (normals == NULL )
{
vtkErrorMacro(<<"No normals to write!: use vtkPolyDataNormals to generate them");
return;
}
if ( this->FileName == NULL)
{
vtkErrorMacro(<< "Please specify FileName to write");
return;
}
vtkDebugMacro("Writing MCubes tri file");
FILE *fp;
if ((fp = fopen(this->FileName, "w")) == NULL)
{
vtkErrorMacro(<< "Couldn't open file: " << this->FileName);
return;
}
this->WriteMCubes(fp, pts, normals, polys);
fclose (fp);
if (this->LimitsFileName)
{
vtkDebugMacro("Writing MCubes limits file");
if ((fp = fopen(this->LimitsFileName, "w")) == NULL)
{
vtkErrorMacro(<< "Couldn't open file: " << this->LimitsFileName);
return;
}
this->WriteLimits(fp, input->GetBounds ());
fclose (fp);
}
}
void vtkMCubesWriter::WriteMCubes(FILE *fp, vtkPoints *pts,
vtkDataArray *normals,
vtkCellArray *polys)
{
typedef struct {float x[3], n[3];} pointType;
pointType point;
int i;
vtkIdType npts;
vtkIdType *indx = 0;
// Write out triangle polygons. In not a triangle polygon, create
// triangles.
//
double p[3], n[3];
bool status=true;
for (polys->InitTraversal(); polys->GetNextCell(npts,indx) && status; )
{
for (i=0; i < 3 && status; i++)
{
pts->GetPoint(indx[i],p);
normals->GetTuple(indx[i],n);
point.x[0] = static_cast<float>(p[0]);
point.x[1] = static_cast<float>(p[1]);
point.x[2] = static_cast<float>(p[2]);
point.n[0] = static_cast<float>(n[0]);
point.n[1] = static_cast<float>(n[1]);
point.n[2] = static_cast<float>(n[2]);
status=vtkByteSwap::SwapWrite4BERange(reinterpret_cast<float *>(&point),
6,fp);
if(!status)
{
vtkErrorMacro(<< "SwapWrite failed.");
}
}
}
}
void vtkMCubesWriter::WriteLimits(FILE *fp, double *bounds)
{
float fbounds[6];
fbounds[0] = static_cast<float>(bounds[0]);
fbounds[1] = static_cast<float>(bounds[1]);
fbounds[2] = static_cast<float>(bounds[2]);
fbounds[3] = static_cast<float>(bounds[3]);
fbounds[4] = static_cast<float>(bounds[4]);
fbounds[5] = static_cast<float>(bounds[5]);
bool status=vtkByteSwap::SwapWrite4BERange(fbounds,6,fp);
if(!status)
{
vtkErrorMacro(<< "SwapWrite failed.");
}
else
{
status=vtkByteSwap::SwapWrite4BERange(fbounds,6,fp);
if(!status)
{
vtkErrorMacro(<< "SwapWrite failed.");
}
}
}
void vtkMCubesWriter::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
os << indent << "Limits File Name: "
<< (this->LimitsFileName ? this->LimitsFileName : "(none)") << "\n";
}