File: vtkImplicitTextureCoords.cxx

package info (click to toggle)
vtk7 7.1.1%2Bdfsg2-8
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 127,396 kB
  • sloc: cpp: 1,539,584; ansic: 124,382; python: 78,038; tcl: 47,013; xml: 8,142; yacc: 5,040; java: 4,439; perl: 3,132; lex: 1,926; sh: 1,500; makefile: 126; objc: 83
file content (230 lines) | stat: -rw-r--r-- 5,701 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
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/*=========================================================================

  Program:   Visualization Toolkit
  Module:    vtkImplicitTextureCoords.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 "vtkImplicitTextureCoords.h"

#include "vtkDataSet.h"
#include "vtkFloatArray.h"
#include "vtkImplicitFunction.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"

vtkStandardNewMacro(vtkImplicitTextureCoords);
vtkCxxSetObjectMacro(vtkImplicitTextureCoords,SFunction,vtkImplicitFunction);
vtkCxxSetObjectMacro(vtkImplicitTextureCoords,RFunction,vtkImplicitFunction);
vtkCxxSetObjectMacro(vtkImplicitTextureCoords,TFunction,vtkImplicitFunction);

// Create object with texture dimension=2 and no r-s-t implicit functions
// defined and FlipTexture turned off.
vtkImplicitTextureCoords::vtkImplicitTextureCoords()
{
  this->RFunction = NULL;
  this->SFunction = NULL;
  this->TFunction = NULL;

  this->FlipTexture = 0;
}

vtkImplicitTextureCoords::~vtkImplicitTextureCoords()
{
  this->SetRFunction(NULL);
  this->SetSFunction(NULL);
  this->SetTFunction(NULL);
}


int vtkImplicitTextureCoords::RequestData(
  vtkInformation *vtkNotUsed(request),
  vtkInformationVector **inputVector,
  vtkInformationVector *outputVector)
{
  // get the info objects
  vtkInformation *inInfo = inputVector[0]->GetInformationObject(0);
  vtkInformation *outInfo = outputVector->GetInformationObject(0);

  // get the input and output
  vtkDataSet *input = vtkDataSet::SafeDownCast(
    inInfo->Get(vtkDataObject::DATA_OBJECT()));
  vtkDataSet *output = vtkDataSet::SafeDownCast(
    outInfo->Get(vtkDataObject::DATA_OBJECT()));

  vtkIdType ptId, numPts;
  int tcoordDim;
  vtkFloatArray *newTCoords;
  double min[3], max[3], scale[3];
  double tCoord[3], tc[3], x[3];
  int i;

  // Initialize
  //
  vtkDebugMacro(<<"Generating texture coordinates from implicit functions...");

  // First, copy the input to the output as a starting point
  output->CopyStructure( input );

  if ( ((numPts=input->GetNumberOfPoints()) < 1) )
  {
    vtkErrorMacro(<< "No input points!");
    return 1;
  }

  if ( this->RFunction == NULL )
  {
    vtkErrorMacro(<< "No implicit functions defined!");
    return 1;
  }

  tcoordDim = 1;
  if ( this->SFunction != NULL )
  {
    tcoordDim++;
    if ( this->TFunction != NULL )
    {
      tcoordDim++;
    }
  }
//
// Allocate
//
  tCoord[0] = tCoord[1] = tCoord[2] = 0.0;

  newTCoords = vtkFloatArray::New();
  if ( tcoordDim == 1 ) //force 2D map to be created
  {
    newTCoords->SetNumberOfComponents(2);
    newTCoords->Allocate(2*numPts);
  }
  else
  {
    newTCoords->SetNumberOfComponents(tcoordDim);
    newTCoords->Allocate(tcoordDim*numPts);
  }
//
// Compute implicit function values -> insert as initial texture coordinate
//
  for (i=0; i<3; i++) //initialize min/max values array
  {
    min[i] = VTK_DOUBLE_MAX;
    max[i] = -VTK_DOUBLE_MAX;
  }
  for (ptId=0; ptId<numPts; ptId++) //compute texture coordinates
  {
    input->GetPoint(ptId, x);
    tCoord[0] = this->RFunction->FunctionValue(x);
    if ( this->SFunction )
    {
      tCoord[1] = this->SFunction->FunctionValue(x);
    }
    if ( this->TFunction )
    {
      tCoord[2] = this->TFunction->FunctionValue(x);
    }

    for (i=0; i<tcoordDim; i++)
    {
      if (tCoord[i] < min[i])
      {
        min[i] = tCoord[i];
      }
      if (tCoord[i] > max[i])
      {
        max[i] = tCoord[i];
      }
    }

    newTCoords->InsertTuple(ptId,tCoord);
  }
//
// Scale and shift texture coordinates into (0,1) range, with 0.0 implicit
// function value equal to texture coordinate value of 0.5
//
  for (i=0; i<tcoordDim; i++)
  {
    scale[i] = 1.0;
    if ( max[i] > 0.0 && min[i] < 0.0 ) //have positive & negative numbers
    {
      if ( max[i] > (-min[i]) )
      {
        scale[i] = 0.499 / max[i]; //scale into 0.5->1
      }
      else
      {
        scale[i] = -0.499 / min[i]; //scale into 0->0.5
      }
    }
    else if ( max[i] > 0.0 ) //have positive numbers only
    {
      scale[i] = 0.499 / max[i]; //scale into 0.5->1.0
    }
    else if ( min[i] < 0.0 ) //have negative numbers only
    {
      scale[i] = -0.499 / min[i]; //scale into 0.0->0.5
    }
  }

  if ( this->FlipTexture )
  {
    for (i=0; i<tcoordDim; i++)
    {
      scale[i] *= (-1.0);
    }
  }
  for (ptId=0; ptId<numPts; ptId++)
  {
     newTCoords->GetTuple(ptId, tc);
    for (i=0; i<tcoordDim; i++)
    {
      tCoord[i] = 0.5 + scale[i] * tc[i];
    }
    newTCoords->InsertTuple(ptId,tCoord);
  }
//
// Update self
//
  output->GetPointData()->CopyTCoordsOff();
  output->GetPointData()->PassData(input->GetPointData());

  output->GetPointData()->SetTCoords(newTCoords);
  newTCoords->Delete();

  return 1;
}

void vtkImplicitTextureCoords::PrintSelf(ostream& os, vtkIndent indent)
{
  this->Superclass::PrintSelf(os,indent);

  os << indent << "Flip Texture: " << this->FlipTexture << "\n";

  if ( this->RFunction != NULL )
  {
    if ( this->SFunction != NULL )
    {
      if ( this->TFunction != NULL )
      {
        os << indent << "R, S, and T Functions defined\n";
      }
    }
    else
    {
      os << indent << "R and S Functions defined\n";
    }
  }
  else
  {
    os << indent << "R Function defined\n";
  }
}