VTK
|
Interpolates supplied nodes with line segments. More...
#include <vtkLinearContourLineInterpolator.h>
Public Member Functions | |
virtual int | InterpolateLine (vtkRenderer *ren, vtkContourRepresentation *rep, int idx1, int idx2) |
Static Public Member Functions | |
static vtkLinearContourLineInterpolator * | New () |
Protected Member Functions | |
vtkLinearContourLineInterpolator () | |
~vtkLinearContourLineInterpolator () | |
typedef vtkContourLineInterpolator | Superclass |
static int | IsTypeOf (const char *type) |
static vtkLinearContourLineInterpolator * | SafeDownCast (vtkObjectBase *o) |
virtual int | IsA (const char *type) |
vtkLinearContourLineInterpolator * | NewInstance () const |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual vtkObjectBase * | NewInstanceInternal () const |
Interpolates supplied nodes with line segments.
The line interpolator interpolates supplied nodes (see InterpolateLine) with line segments. The finess of the curve may be controlled using SetMaximumCurveError and SetMaximumNumberOfLineSegments.
Definition at line 35 of file vtkLinearContourLineInterpolator.h.
Standard methods for instances of this class.
Reimplemented from vtkContourLineInterpolator.
Definition at line 45 of file vtkLinearContourLineInterpolator.h.
static vtkLinearContourLineInterpolator* vtkLinearContourLineInterpolator::New | ( | ) | [static] |
Instantiate this class.
Reimplemented from vtkObject.
static int vtkLinearContourLineInterpolator::IsTypeOf | ( | const char * | type | ) | [static] |
Standard methods for instances of this class.
Reimplemented from vtkContourLineInterpolator.
virtual int vtkLinearContourLineInterpolator::IsA | ( | const char * | type | ) | [virtual] |
Standard methods for instances of this class.
Reimplemented from vtkContourLineInterpolator.
static vtkLinearContourLineInterpolator* vtkLinearContourLineInterpolator::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Standard methods for instances of this class.
Reimplemented from vtkContourLineInterpolator.
virtual vtkObjectBase* vtkLinearContourLineInterpolator::NewInstanceInternal | ( | ) | const [protected, virtual] |
Standard methods for instances of this class.
Reimplemented from vtkContourLineInterpolator.
Standard methods for instances of this class.
Reimplemented from vtkContourLineInterpolator.
void vtkLinearContourLineInterpolator::PrintSelf | ( | ostream & | os, |
vtkIndent | indent | ||
) | [virtual] |
Standard methods for instances of this class.
Reimplemented from vtkContourLineInterpolator.
virtual int vtkLinearContourLineInterpolator::InterpolateLine | ( | vtkRenderer * | ren, |
vtkContourRepresentation * | rep, | ||
int | idx1, | ||
int | idx2 | ||
) | [virtual] |
Subclasses that wish to interpolate a line segment must implement this. For instance vtkBezierContourLineInterpolator adds nodes between idx1 and idx2, that allow the contour to adhere to a bezier curve.
Implements vtkContourLineInterpolator.