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
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkContourValues.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 "vtkContourValues.h"
#include "vtkDoubleArray.h"
#include "vtkObjectFactory.h"
vtkStandardNewMacro(vtkContourValues);
// Construct object with a single contour value at 0.0.
vtkContourValues::vtkContourValues()
{
this->Contours = vtkDoubleArray::New();
this->Contours->Allocate(64);
this->Contours->InsertValue(0,0.0);
}
vtkContourValues::~vtkContourValues()
{
this->Contours->Delete();
}
// Set the ith contour value.
void vtkContourValues::SetValue(int i, double value)
{
int numContours=this->Contours->GetMaxId()+1;
i = (i < 0 ? 0 : i);
if ( i >= numContours || value != this->Contours->GetValue(i) )
{
this->Modified();
this->Contours->InsertValue(i,value);
}
}
// Get the ith contour value. The return value will be clamped if the
// index i is out of range.
double vtkContourValues::GetValue(int i)
{
i = (i < 0 ? 0 : i);
i = (i > this->Contours->GetMaxId() ? this->Contours->GetMaxId() : i);
return this->Contours->GetValue(i);
}
// Return a pointer to a list of contour values. The contents of the
// list will be garbage if the number of contours <= 0.
double *vtkContourValues::GetValues()
{
return this->Contours->GetPointer(0);
}
// Fill a supplied list with contour values. Make sure you've
// allocated memory of size GetNumberOfContours().
void vtkContourValues::GetValues(double *contourValues)
{
int i, numContours=this->Contours->GetMaxId()+1;
for ( i=0; i < numContours; i++ )
{
contourValues[i] = this->Contours->GetValue(i);
}
}
// Set the number of contours to place into the list. You only really
// need to use this method to reduce list size. The method SetValue()
// will automatically increase list size as needed.
void vtkContourValues::SetNumberOfContours(const int number)
{
int currentNumber = this->Contours->GetMaxId()+1;
int n = ( number < 0 ? 0 : number);
int i;
double *oldValues = NULL;
if ( n != currentNumber )
{
this->Modified();
// Keep a copy of the old values
if ( currentNumber > 0 )
{
oldValues = new double[currentNumber];
for ( i = 0; i < currentNumber; i++ )
{
oldValues[i] = this->Contours->GetValue(i);
}
}
this->Contours->SetNumberOfValues(n);
// Copy them back in since the array may have been re-allocated
if ( currentNumber > 0 )
{
int limit = (currentNumber < n)?(currentNumber):(n);
for ( i = 0; i < limit; i++ )
{
this->Contours->SetValue( i, oldValues[i] );
}
delete [] oldValues;
}
}
// Set the new contour values to 0.0
if (n > currentNumber)
{
for ( i = currentNumber; i < n; i++ )
{
this->Contours->SetValue (i, 0.0);
}
}
}
// Generate numContours equally spaced contour values between specified
// range. Contour values will include min/max range values.
void vtkContourValues::GenerateValues(int numContours, double rangeStart,
double rangeEnd)
{
double range[2];
range[0] = rangeStart;
range[1] = rangeEnd;
this->GenerateValues(numContours,range);
}
// Generate numContours equally spaced contour values between specified
// range. Contour values will include min/max range values.
void vtkContourValues::GenerateValues(int numContours, double range[2])
{
int i;
this->SetNumberOfContours(numContours);
if (numContours == 1)
{
this->SetValue(0, range[0]);
}
else
{
for (i= 0; i < numContours; ++i)
{
// no we cannot factorize the ratio
// (range[1] - range[0])/(numContours - 1) out of the loop.
// we want the whole expression to be evaluated on the FPU.
// see bug discussion: http://www.vtk.org/Bug/view.php?id=7887
this->SetValue(i, range[0] + i*(range[1] - range[0])/(numContours - 1));
}
}
}
// Return the number of contours in the
int vtkContourValues::GetNumberOfContours()
{
return this->Contours->GetMaxId()+1;
}
void vtkContourValues::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
int i, numContours=this->Contours->GetMaxId() + 1;
os << indent << "Contour Values: \n";
for ( i=0; i < numContours; i++)
{
os << indent << " Value " << i << ": " << this->Contours->GetValue(i) << "\n";
}
}
|