Cloned library of VTK-5.0.0 with extra build files for internal package management.
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.
 
 
 
 
 
 

157 lines
5.8 KiB

/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkRibbonFilter.h,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.
=========================================================================*/
// .NAME vtkRibbonFilter - create oriented ribbons from lines defined in polygonal dataset
// .SECTION Description
// vtkRibbonFilter is a filter to create oriented ribbons from lines defined
// in polygonal dataset. The orientation of the ribbon is along the line
// segments and perpendicular to "projected" line normals. Projected line
// normals are the original line normals projected to be perpendicular to
// the local line segment. An offset angle can be specified to rotate the
// ribbon with respect to the normal.
//
// .SECTION Caveats
// The input line must not have duplicate points, or normals at points that
// are parallel to the incoming/outgoing line segments. (Duplicate points
// can be removed with vtkCleanPolyData.) If a line does not meet this
// criteria, then that line is not tubed.
// .SECTION See Also
// vtkTubeFilter
#ifndef __vtkRibbonFilter_h
#define __vtkRibbonFilter_h
#include "vtkPolyDataAlgorithm.h"
#define VTK_TCOORDS_OFF 0
#define VTK_TCOORDS_FROM_NORMALIZED_LENGTH 1
#define VTK_TCOORDS_FROM_LENGTH 2
#define VTK_TCOORDS_FROM_SCALARS 3
class vtkCellArray;
class vtkCellData;
class vtkDataArray;
class vtkFloatArray;
class vtkPointData;
class vtkPoints;
class VTK_GRAPHICS_EXPORT vtkRibbonFilter : public vtkPolyDataAlgorithm
{
public:
vtkTypeRevisionMacro(vtkRibbonFilter,vtkPolyDataAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Construct ribbon so that width is 0.1, the width does
// not vary with scalar values, and the width factor is 2.0.
static vtkRibbonFilter *New();
// Description:
// Set the "half" width of the ribbon. If the width is allowed to vary,
// this is the minimum width.
vtkSetClampMacro(Width,double,0,VTK_DOUBLE_MAX);
vtkGetMacro(Width,double);
// Description:
// Set the offset angle of the ribbon from the line normal. (The angle
// is expressed in degrees.)
vtkSetClampMacro(Angle,double,0,360);
vtkGetMacro(Angle,double);
// Description:
// Turn on/off the variation of ribbon width with scalar value.
vtkSetMacro(VaryWidth,int);
vtkGetMacro(VaryWidth,int);
vtkBooleanMacro(VaryWidth,int);
// Description:
// Set the maximum ribbon width in terms of a multiple of the minimum width.
vtkSetMacro(WidthFactor,double);
vtkGetMacro(WidthFactor,double);
// Description:
// Set the default normal to use if no normals are supplied, and the
// DefaultNormalOn is set.
vtkSetVector3Macro(DefaultNormal,double);
vtkGetVectorMacro(DefaultNormal,double,3);
// Description:
// Set a boolean to control whether to use default normals.
// DefaultNormalOn is set.
vtkSetMacro(UseDefaultNormal,int);
vtkGetMacro(UseDefaultNormal,int);
vtkBooleanMacro(UseDefaultNormal,int);
// Description:
// Control whether and how texture coordinates are produced. This is
// useful for striping the ribbon with time textures, etc.
vtkSetClampMacro(GenerateTCoords,int,VTK_TCOORDS_OFF,
VTK_TCOORDS_FROM_SCALARS);
vtkGetMacro(GenerateTCoords,int);
void SetGenerateTCoordsToOff()
{this->SetGenerateTCoords(VTK_TCOORDS_OFF);}
void SetGenerateTCoordsToNormalizedLength()
{this->SetGenerateTCoords(VTK_TCOORDS_FROM_NORMALIZED_LENGTH);}
void SetGenerateTCoordsToUseLength()
{this->SetGenerateTCoords(VTK_TCOORDS_FROM_LENGTH);}
void SetGenerateTCoordsToUseScalars()
{this->SetGenerateTCoords(VTK_TCOORDS_FROM_SCALARS);}
const char *GetGenerateTCoordsAsString();
// Description:
// Control the conversion of units during the texture coordinates
// calculation. The TextureLength indicates what length (whether
// calculated from scalars or length) is mapped to the [0,1)
// texture space.
vtkSetClampMacro(TextureLength,double,0.000001,VTK_LARGE_INTEGER);
vtkGetMacro(TextureLength,double);
protected:
vtkRibbonFilter();
~vtkRibbonFilter();
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
double Width;
double Angle;
int VaryWidth; //controls whether width varies with scalar data
double WidthFactor;
double DefaultNormal[3];
int UseDefaultNormal;
int GenerateTCoords; //control texture coordinate generation
double TextureLength; //this length is mapped to [0,1) texture space
// Helper methods
int GeneratePoints(vtkIdType offset, vtkIdType npts, vtkIdType *pts,
vtkPoints *inPts, vtkPoints *newPts,
vtkPointData *pd, vtkPointData *outPD,
vtkFloatArray *newNormals, vtkDataArray *inScalars,
double range[2], vtkDataArray *inNormals);
void GenerateStrip(vtkIdType offset, vtkIdType npts, vtkIdType *pts,
vtkIdType inCellId, vtkCellData *cd, vtkCellData *outCD,
vtkCellArray *newStrips);
void GenerateTextureCoords(vtkIdType offset, vtkIdType npts, vtkIdType *pts,
vtkPoints *inPts, vtkDataArray *inScalars,
vtkFloatArray *newTCoords);
vtkIdType ComputeOffset(vtkIdType offset,vtkIdType npts);
// Helper data members
double Theta;
private:
vtkRibbonFilter(const vtkRibbonFilter&); // Not implemented.
void operator=(const vtkRibbonFilter&); // Not implemented.
};
#endif