You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.1 KiB
62 lines
2.1 KiB
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: $RCSfile: vtkGenericSubdivisionErrorMetric.cxx,v $
|
|
|
|
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 "vtkGenericSubdivisionErrorMetric.h"
|
|
|
|
#include "vtkObjectFactory.h"
|
|
#include "vtkGenericAttribute.h"
|
|
#include "vtkGenericAttributeCollection.h"
|
|
#include "vtkGenericAdaptorCell.h"
|
|
#include "vtkGenericDataSet.h"
|
|
#include "vtkMath.h"
|
|
#include <assert.h>
|
|
|
|
vtkCxxRevisionMacro(vtkGenericSubdivisionErrorMetric,"$Revision: 1.5 $");
|
|
|
|
//-----------------------------------------------------------------------------
|
|
vtkGenericSubdivisionErrorMetric::vtkGenericSubdivisionErrorMetric()
|
|
{
|
|
this->GenericCell = NULL;
|
|
this->DataSet = 0;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
vtkGenericSubdivisionErrorMetric::~vtkGenericSubdivisionErrorMetric()
|
|
{
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Avoid reference loop
|
|
void vtkGenericSubdivisionErrorMetric::SetGenericCell(vtkGenericAdaptorCell *c)
|
|
{
|
|
this->GenericCell = c;
|
|
this->Modified();
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Avoid reference loop
|
|
void vtkGenericSubdivisionErrorMetric::SetDataSet(vtkGenericDataSet *ds)
|
|
{
|
|
this->DataSet = ds;
|
|
this->Modified();
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void vtkGenericSubdivisionErrorMetric::PrintSelf(ostream& os, vtkIndent indent)
|
|
{
|
|
this->Superclass::PrintSelf(os,indent);
|
|
|
|
os << indent << "GenericCell: " << this->GenericCell << endl;
|
|
os << indent << "DataSet: " << this->DataSet << endl;
|
|
}
|
|
|