#include <vtkParallelCoordinatesRepresentation.h>
A parallel coordinates plot represents each variable in a multivariate data set as a separate axis. Individual samples of that data set are represented as a polyline that pass through each variable axis at positions that correspond to data values. vtkParallelCoordinatesRepresentation generates this plot when added to a vtkParallelCoordinatesView, which handles interaction and highlighting. Sample polylines can alternatively be represented as s-curves by enabling the UseCurves flag.
There are three selection modes: lasso, angle, and function. Lasso selection picks sample lines that pass through a polyline. Angle selection picks sample lines that have similar slope to a line segment. Function selection picks sample lines that are near a linear function defined on two variables. This function specified by passing two (x,y) variable value pairs.
All primitives are plotted in normalized view coordinates [0,1].
Definition at line 83 of file vtkParallelCoordinatesRepresentation.h.
Public Types | |
enum | InputPorts { INPUT_DATA = 0, INPUT_TITLES, NUM_INPUT_PORTS } |
typedef vtkRenderedRepresentation | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual void | ApplyViewTheme (vtkViewTheme *theme) |
virtual const char * | GetHoverText (vtkView *view, int x, int y) |
void | SetPlotTitle (const char *) |
void | ResetAxes () |
int | SetPositionAndSize (double *position, double *size) |
int | GetPositionAndSize (double *position, double *size) |
void | SetAxisTitles (vtkStringArray *) |
void | SetAxisTitles (vtkAlgorithmOutput *) |
virtual int | GetNumberOfAxes () |
virtual int | GetNumberOfSamples () |
void | SetNumberOfAxisLabels (int num) |
virtual int | GetNumberOfAxisLabels () |
virtual int | SwapAxisPositions (int position1, int position2) |
int | SetXCoordinateOfPosition (int position, double xcoord) |
double | GetXCoordinateOfPosition (int axis) |
void | GetXCoordinatesOfPositions (double *coords) |
int | GetPositionNearXCoordinate (double xcoord) |
virtual void | SetUseCurves (int) |
virtual int | GetUseCurves () |
virtual void | UseCurvesOn () |
virtual void | UseCurvesOff () |
virtual void | SetCurveResolution (int) |
virtual int | GetCurveResolution () |
virtual double | GetLineOpacity () |
virtual double | GetFontSize () |
virtual double * | GetLineColor () |
virtual void | GetLineColor (double &, double &, double &) |
virtual void | GetLineColor (double[3]) |
virtual double * | GetAxisColor () |
virtual void | GetAxisColor (double &, double &, double &) |
virtual void | GetAxisColor (double[3]) |
virtual double * | GetAxisLabelColor () |
virtual void | GetAxisLabelColor (double &, double &, double &) |
virtual void | GetAxisLabelColor (double[3]) |
virtual void | SetLineOpacity (double) |
virtual void | SetFontSize (double) |
virtual void | SetLineColor (double, double, double) |
virtual void | SetLineColor (double[3]) |
virtual void | SetAxisColor (double, double, double) |
virtual void | SetAxisColor (double[3]) |
virtual void | SetAxisLabelColor (double, double, double) |
virtual void | SetAxisLabelColor (double[3]) |
virtual void | SetAngleBrushThreshold (double) |
virtual double | GetAngleBrushThreshold () |
virtual void | SetFunctionBrushThreshold (double) |
virtual double | GetFunctionBrushThreshold () |
int | GetRangeAtPosition (int position, double range[2]) |
virtual int | SetRangeAtPosition (int position, double range[2]) |
virtual void | LassoSelect (int brushClass, int brushOperator, vtkPoints *brushPoints) |
virtual void | AngleSelect (int brushClass, int brushOperator, double *p1, double *p2) |
virtual void | FunctionSelect (int brushClass, int brushOperator, double *p1, double *p2, double *q1, double *q2) |
virtual void | RangeSelect (int brushClass, int brushOperator, double *p1, double *p2) |
Static Public Member Functions | |
static vtkParallelCoordinatesRepresentation * | New () |
static int | IsTypeOf (const char *type) |
static vtkParallelCoordinatesRepresentation * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkParallelCoordinatesRepresentation () | |
virtual | ~vtkParallelCoordinatesRepresentation () |
virtual int | FillInputPortInformation (int port, vtkInformation *info) |
virtual int | RequestData (vtkInformation *, vtkInformationVector **, vtkInformationVector *) |
void | UpdateHoverHighlight (vtkView *view, int x, int y) |
int | PlaceAxes () |
virtual int | PlaceSelection (vtkPolyData *polyData, vtkTable *data, vtkSelectionNode *selectionNode) |
virtual int | ComputeDataProperties () |
virtual int | UpdatePlotProperties (vtkStringArray *inputTitles) |
virtual int | ReallocateInternals () |
void | BuildDefaultSCurve (vtkDoubleArray *array, int numValues) |
virtual void | LassoSelectInternal (vtkPoints *brushPoints, vtkIdTypeArray *outIds) |
virtual void | UpdateSelectionActors () |
vtkPolyDataMapper2D * | GetSelectionMapper (int idx) |
int | GetNumberOfSelections () |
virtual char * | GetInternalHoverText () |
virtual void | SetInternalHoverText (const char *) |
virtual bool | AddToView (vtkView *view) |
virtual bool | RemoveFromView (vtkView *view) |
virtual void | PrepareForRendering (vtkRenderView *view) |
virtual int | AllocatePolyData (vtkPolyData *polyData, int numLines, int numPointsPerLine, int numStrips, int numPointsPerStrip, int numQuads, int numPoints, int numCellScalars, int numPointScalars) |
virtual int | PlaceLines (vtkPolyData *polyData, vtkTable *data, vtkIdTypeArray *idsToPlot) |
virtual int | PlaceCurves (vtkPolyData *polyData, vtkTable *data, vtkIdTypeArray *idsToPlot) |
int | ComputePointPosition (double *p) |
int | ComputeLinePosition (double *p1, double *p2) |
virtual void | SelectRows (vtkIdType brushClass, vtkIdType brushOperator, vtkIdTypeArray *rowIds) |
virtual vtkSelection * | ConvertSelection (vtkView *view, vtkSelection *selection) |
virtual void | BuildInverseSelection () |
virtual vtkPolyDataMapper2D * | InitializePlotMapper (vtkPolyData *input, vtkActor2D *actor, bool forceStandard=false) |
Protected Attributes | |
vtkSmartPointer< vtkPolyData > | PlotData |
vtkSmartPointer < vtkPolyDataMapper2D > | PlotMapper |
vtkSmartPointer< vtkActor2D > | PlotActor |
vtkSmartPointer< vtkTextMapper > | PlotTitleMapper |
vtkSmartPointer< vtkActor2D > | PlotTitleActor |
vtkSmartPointer< vtkTextMapper > | FunctionTextMapper |
vtkSmartPointer< vtkActor2D > | FunctionTextActor |
vtkSmartPointer< vtkSelection > | InverseSelection |
vtkSmartPointer < vtkBivariateLinearTableThreshold > | LinearThreshold |
Internals * | I |
int | NumberOfAxes |
int | NumberOfAxisLabels |
int | NumberOfSamples |
double | YMin |
double | YMax |
int | CurveResolution |
int | UseCurves |
double | AngleBrushThreshold |
double | FunctionBrushThreshold |
double | SwapThreshold |
double * | Xs |
double * | Mins |
double * | Maxs |
double * | MinOffsets |
double * | MaxOffsets |
vtkSmartPointer< vtkAxisActor2D > * | Axes |
vtkSmartPointer< vtkTable > | InputArrayTable |
vtkSmartPointer< vtkStringArray > | AxisTitles |
vtkTimeStamp | BuildTime |
double | LineOpacity |
double | FontSize |
double | LineColor [3] |
double | AxisColor [3] |
double | AxisLabelColor [3] |
char * | InternalHoverText |
Reimplemented from vtkRenderedRepresentation.
Reimplemented in vtkParallelCoordinatesHistogramRepresentation.
Definition at line 87 of file vtkParallelCoordinatesRepresentation.h.
Definition at line 199 of file vtkParallelCoordinatesRepresentation.h.
vtkParallelCoordinatesRepresentation::vtkParallelCoordinatesRepresentation | ( | ) | [protected] |
virtual vtkParallelCoordinatesRepresentation::~vtkParallelCoordinatesRepresentation | ( | ) | [protected, virtual] |
static vtkParallelCoordinatesRepresentation* vtkParallelCoordinatesRepresentation::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkRenderedRepresentation.
Reimplemented in vtkParallelCoordinatesHistogramRepresentation.
virtual const char* vtkParallelCoordinatesRepresentation::GetClassName | ( | ) | [virtual] |
Reimplemented from vtkRenderedRepresentation.
Reimplemented in vtkParallelCoordinatesHistogramRepresentation.
static int vtkParallelCoordinatesRepresentation::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkRenderedRepresentation.
Reimplemented in vtkParallelCoordinatesHistogramRepresentation.
virtual int vtkParallelCoordinatesRepresentation::IsA | ( | const char * | name | ) | [virtual] |
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkRenderedRepresentation.
Reimplemented in vtkParallelCoordinatesHistogramRepresentation.
static vtkParallelCoordinatesRepresentation* vtkParallelCoordinatesRepresentation::SafeDownCast | ( | vtkObject * | o | ) | [static] |
Reimplemented from vtkRenderedRepresentation.
Reimplemented in vtkParallelCoordinatesHistogramRepresentation.
void vtkParallelCoordinatesRepresentation::PrintSelf | ( | ostream & | os, | |
vtkIndent | indent | |||
) | [virtual] |
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkRenderedRepresentation.
Reimplemented in vtkParallelCoordinatesHistogramRepresentation.
virtual void vtkParallelCoordinatesRepresentation::ApplyViewTheme | ( | vtkViewTheme * | theme | ) | [virtual] |
Apply the theme to this view. CellColor is used for line coloring and titles. EdgeLabelColor is used for axis color. CellOpacity is used for line opacity.
Reimplemented in vtkParallelCoordinatesHistogramRepresentation.
virtual const char* vtkParallelCoordinatesRepresentation::GetHoverText | ( | vtkView * | view, | |
int | x, | |||
int | y | |||
) | [virtual] |
Returns the hover text at an x,y location.
int vtkParallelCoordinatesRepresentation::SetPositionAndSize | ( | double * | position, | |
double * | size | |||
) |
Change the position of the plot
int vtkParallelCoordinatesRepresentation::GetPositionAndSize | ( | double * | position, | |
double * | size | |||
) |
Change the position of the plot
void vtkParallelCoordinatesRepresentation::SetAxisTitles | ( | vtkStringArray * | ) |
Set/Get the axis titles
void vtkParallelCoordinatesRepresentation::SetAxisTitles | ( | vtkAlgorithmOutput * | ) |
Set/Get the axis titles
void vtkParallelCoordinatesRepresentation::SetPlotTitle | ( | const char * | ) |
Set the title for the entire plot
virtual int vtkParallelCoordinatesRepresentation::GetNumberOfAxes | ( | ) | [virtual] |
Get the number of axes in the plot
virtual int vtkParallelCoordinatesRepresentation::GetNumberOfSamples | ( | ) | [virtual] |
Get the number of samples in the plot
void vtkParallelCoordinatesRepresentation::SetNumberOfAxisLabels | ( | int | num | ) |
Set/Get the number of labels to display on each axis
virtual int vtkParallelCoordinatesRepresentation::GetNumberOfAxisLabels | ( | ) | [virtual] |
Set/Get the number of labels to display on each axis
virtual int vtkParallelCoordinatesRepresentation::SwapAxisPositions | ( | int | position1, | |
int | position2 | |||
) | [virtual] |
Move an axis to a particular screen position. Using these methods requires an Update() before they will work properly.
Reimplemented in vtkParallelCoordinatesHistogramRepresentation.
int vtkParallelCoordinatesRepresentation::SetXCoordinateOfPosition | ( | int | position, | |
double | xcoord | |||
) |
Move an axis to a particular screen position. Using these methods requires an Update() before they will work properly.
double vtkParallelCoordinatesRepresentation::GetXCoordinateOfPosition | ( | int | axis | ) |
Move an axis to a particular screen position. Using these methods requires an Update() before they will work properly.
void vtkParallelCoordinatesRepresentation::GetXCoordinatesOfPositions | ( | double * | coords | ) |
Move an axis to a particular screen position. Using these methods requires an Update() before they will work properly.
int vtkParallelCoordinatesRepresentation::GetPositionNearXCoordinate | ( | double | xcoord | ) |
Move an axis to a particular screen position. Using these methods requires an Update() before they will work properly.
virtual void vtkParallelCoordinatesRepresentation::SetUseCurves | ( | int | ) | [virtual] |
Whether or not to display using curves
virtual int vtkParallelCoordinatesRepresentation::GetUseCurves | ( | ) | [virtual] |
Whether or not to display using curves
virtual void vtkParallelCoordinatesRepresentation::UseCurvesOn | ( | ) | [virtual] |
Whether or not to display using curves
virtual void vtkParallelCoordinatesRepresentation::UseCurvesOff | ( | ) | [virtual] |
Whether or not to display using curves
virtual void vtkParallelCoordinatesRepresentation::SetCurveResolution | ( | int | ) | [virtual] |
Resolution of the curves displayed, enabled by setting UseCurves
virtual int vtkParallelCoordinatesRepresentation::GetCurveResolution | ( | ) | [virtual] |
Resolution of the curves displayed, enabled by setting UseCurves
virtual double vtkParallelCoordinatesRepresentation::GetLineOpacity | ( | ) | [virtual] |
Access plot properties
virtual double vtkParallelCoordinatesRepresentation::GetFontSize | ( | ) | [virtual] |
Access plot properties
virtual double* vtkParallelCoordinatesRepresentation::GetLineColor | ( | ) | [virtual] |
Access plot properties
virtual void vtkParallelCoordinatesRepresentation::GetLineColor | ( | double & | , | |
double & | , | |||
double & | ||||
) | [virtual] |
Access plot properties
virtual void vtkParallelCoordinatesRepresentation::GetLineColor | ( | double | [3] | ) | [virtual] |
Access plot properties
virtual double* vtkParallelCoordinatesRepresentation::GetAxisColor | ( | ) | [virtual] |
Access plot properties
virtual void vtkParallelCoordinatesRepresentation::GetAxisColor | ( | double & | , | |
double & | , | |||
double & | ||||
) | [virtual] |
Access plot properties
virtual void vtkParallelCoordinatesRepresentation::GetAxisColor | ( | double | [3] | ) | [virtual] |
Access plot properties
virtual double* vtkParallelCoordinatesRepresentation::GetAxisLabelColor | ( | ) | [virtual] |
Access plot properties
virtual void vtkParallelCoordinatesRepresentation::GetAxisLabelColor | ( | double & | , | |
double & | , | |||
double & | ||||
) | [virtual] |
Access plot properties
virtual void vtkParallelCoordinatesRepresentation::GetAxisLabelColor | ( | double | [3] | ) | [virtual] |
Access plot properties
virtual void vtkParallelCoordinatesRepresentation::SetLineOpacity | ( | double | ) | [virtual] |
Access plot properties
virtual void vtkParallelCoordinatesRepresentation::SetFontSize | ( | double | ) | [virtual] |
Access plot properties
virtual void vtkParallelCoordinatesRepresentation::SetLineColor | ( | double | , | |
double | , | |||
double | ||||
) | [virtual] |
Access plot properties
virtual void vtkParallelCoordinatesRepresentation::SetLineColor | ( | double | [3] | ) | [virtual] |
Access plot properties
virtual void vtkParallelCoordinatesRepresentation::SetAxisColor | ( | double | , | |
double | , | |||
double | ||||
) | [virtual] |
Access plot properties
virtual void vtkParallelCoordinatesRepresentation::SetAxisColor | ( | double | [3] | ) | [virtual] |
Access plot properties
virtual void vtkParallelCoordinatesRepresentation::SetAxisLabelColor | ( | double | , | |
double | , | |||
double | ||||
) | [virtual] |
Access plot properties
virtual void vtkParallelCoordinatesRepresentation::SetAxisLabelColor | ( | double | [3] | ) | [virtual] |
Access plot properties
virtual void vtkParallelCoordinatesRepresentation::SetAngleBrushThreshold | ( | double | ) | [virtual] |
Maximum angle difference (in degrees) of selection using angle/function brushes
virtual double vtkParallelCoordinatesRepresentation::GetAngleBrushThreshold | ( | ) | [virtual] |
Maximum angle difference (in degrees) of selection using angle/function brushes
virtual void vtkParallelCoordinatesRepresentation::SetFunctionBrushThreshold | ( | double | ) | [virtual] |
Maximum angle difference (in degrees) of selection using angle/function brushes
virtual double vtkParallelCoordinatesRepresentation::GetFunctionBrushThreshold | ( | ) | [virtual] |
Maximum angle difference (in degrees) of selection using angle/function brushes
int vtkParallelCoordinatesRepresentation::GetRangeAtPosition | ( | int | position, | |
double | range[2] | |||
) |
Set/get the value range of the axis at a particular screen position
virtual int vtkParallelCoordinatesRepresentation::SetRangeAtPosition | ( | int | position, | |
double | range[2] | |||
) | [virtual] |
Set/get the value range of the axis at a particular screen position
Reimplemented in vtkParallelCoordinatesHistogramRepresentation.
void vtkParallelCoordinatesRepresentation::ResetAxes | ( | ) |
Reset the axes to their default positions and orders
virtual void vtkParallelCoordinatesRepresentation::LassoSelect | ( | int | brushClass, | |
int | brushOperator, | |||
vtkPoints * | brushPoints | |||
) | [virtual] |
Do a selection of the lines. See the main description for how to use these functions. RangeSelect is currently stubbed out.
virtual void vtkParallelCoordinatesRepresentation::AngleSelect | ( | int | brushClass, | |
int | brushOperator, | |||
double * | p1, | |||
double * | p2 | |||
) | [virtual] |
Do a selection of the lines. See the main description for how to use these functions. RangeSelect is currently stubbed out.
virtual void vtkParallelCoordinatesRepresentation::FunctionSelect | ( | int | brushClass, | |
int | brushOperator, | |||
double * | p1, | |||
double * | p2, | |||
double * | q1, | |||
double * | q2 | |||
) | [virtual] |
Do a selection of the lines. See the main description for how to use these functions. RangeSelect is currently stubbed out.
virtual void vtkParallelCoordinatesRepresentation::RangeSelect | ( | int | brushClass, | |
int | brushOperator, | |||
double * | p1, | |||
double * | p2 | |||
) | [virtual] |
Do a selection of the lines. See the main description for how to use these functions. RangeSelect is currently stubbed out.
virtual int vtkParallelCoordinatesRepresentation::FillInputPortInformation | ( | int | port, | |
vtkInformation * | info | |||
) | [protected, virtual] |
Fill the input port information objects for this algorithm. This is invoked by the first call to GetInputPortInformation for each port so subclasses can specify what they can handle.
Reimplemented from vtkPassInputTypeAlgorithm.
virtual int vtkParallelCoordinatesRepresentation::RequestData | ( | vtkInformation * | , | |
vtkInformationVector ** | , | |||
vtkInformationVector * | ||||
) | [protected, virtual] |
Subclasses should override this to connect inputs to the internal pipeline as necessary. Since most representations are "meta-filters" (i.e. filters containing other filters), you should create shallow copies of your input before connecting to the internal pipeline. The convenience method GetInternalOutputPort will create a cached shallow copy of a specified input for you. The related helper functions GetInternalAnnotationOutputPort, GetInternalSelectionOutputPort should be used to obtain a selection or annotation port whose selections are localized for a particular input data object.
Reimplemented from vtkDataRepresentation.
Reimplemented in vtkParallelCoordinatesHistogramRepresentation.
virtual bool vtkParallelCoordinatesRepresentation::AddToView | ( | vtkView * | view | ) | [protected, virtual] |
Add/remove the props and actors to/from a view
Reimplemented in vtkParallelCoordinatesHistogramRepresentation.
virtual bool vtkParallelCoordinatesRepresentation::RemoveFromView | ( | vtkView * | view | ) | [protected, virtual] |
Add/remove the props and actors to/from a view
Reimplemented in vtkParallelCoordinatesHistogramRepresentation.
virtual void vtkParallelCoordinatesRepresentation::PrepareForRendering | ( | vtkRenderView * | view | ) | [protected, virtual] |
Add/remove the props and actors to/from a view
Reimplemented from vtkRenderedRepresentation.
void vtkParallelCoordinatesRepresentation::UpdateHoverHighlight | ( | vtkView * | view, | |
int | x, | |||
int | y | |||
) | [protected] |
This function is not actually used, but as left as a stub in case it becomes useful at some point.
virtual int vtkParallelCoordinatesRepresentation::AllocatePolyData | ( | vtkPolyData * | polyData, | |
int | numLines, | |||
int | numPointsPerLine, | |||
int | numStrips, | |||
int | numPointsPerStrip, | |||
int | numQuads, | |||
int | numPoints, | |||
int | numCellScalars, | |||
int | numPointScalars | |||
) | [protected, virtual] |
Allocate the cells/points/scalars for a vtkPolyData
int vtkParallelCoordinatesRepresentation::PlaceAxes | ( | ) | [protected] |
Put the axis actors in their correct positions.
virtual int vtkParallelCoordinatesRepresentation::PlaceLines | ( | vtkPolyData * | polyData, | |
vtkTable * | data, | |||
vtkIdTypeArray * | idsToPlot | |||
) | [protected, virtual] |
Place line primitives into a vtkPolyData from the input data. idsToPlot is a list of which rows/samples should be plotted. If NULL, all rows/samples are plotted.
Reimplemented in vtkParallelCoordinatesHistogramRepresentation.
virtual int vtkParallelCoordinatesRepresentation::PlaceCurves | ( | vtkPolyData * | polyData, | |
vtkTable * | data, | |||
vtkIdTypeArray * | idsToPlot | |||
) | [protected, virtual] |
Place line primitives into a vtkPolyData from the input data. idsToPlot is a list of which rows/samples should be plotted. If NULL, all rows/samples are plotted.
Reimplemented in vtkParallelCoordinatesHistogramRepresentation.
virtual int vtkParallelCoordinatesRepresentation::PlaceSelection | ( | vtkPolyData * | polyData, | |
vtkTable * | data, | |||
vtkSelectionNode * | selectionNode | |||
) | [protected, virtual] |
Takes the selection list (assumed to be a vtkIdTypeArray) from a vtkSelectionNode and plots lines/curves into polyData for just those row/sample ids.
Reimplemented in vtkParallelCoordinatesHistogramRepresentation.
virtual int vtkParallelCoordinatesRepresentation::ComputeDataProperties | ( | ) | [protected, virtual] |
Compute the number of axes and their individual ranges
Reimplemented in vtkParallelCoordinatesHistogramRepresentation.
virtual int vtkParallelCoordinatesRepresentation::UpdatePlotProperties | ( | vtkStringArray * | inputTitles | ) | [protected, virtual] |
Set plot actor properties (line thickness, opacity, etc)
Reimplemented in vtkParallelCoordinatesHistogramRepresentation.
virtual int vtkParallelCoordinatesRepresentation::ReallocateInternals | ( | ) | [protected, virtual] |
Delete and reallocate the internals, resetting to default values
int vtkParallelCoordinatesRepresentation::ComputePointPosition | ( | double * | p | ) | [protected] |
Compute which screen position a point belongs to (returns the left position)
int vtkParallelCoordinatesRepresentation::ComputeLinePosition | ( | double * | p1, | |
double * | p2 | |||
) | [protected] |
Compute which screen position a point belongs to (returns the left position)
virtual void vtkParallelCoordinatesRepresentation::SelectRows | ( | vtkIdType | brushClass, | |
vtkIdType | brushOperator, | |||
vtkIdTypeArray * | rowIds | |||
) | [protected, virtual] |
Select a set of points using the prescribed operator (add, subtract, etc.) and class
virtual vtkSelection* vtkParallelCoordinatesRepresentation::ConvertSelection | ( | vtkView * | view, | |
vtkSelection * | selection | |||
) | [protected, virtual] |
Select a set of points using the prescribed operator (add, subtract, etc.) and class
Reimplemented from vtkDataRepresentation.
virtual void vtkParallelCoordinatesRepresentation::BuildInverseSelection | ( | ) | [protected, virtual] |
Select a set of points using the prescribed operator (add, subtract, etc.) and class
virtual vtkPolyDataMapper2D* vtkParallelCoordinatesRepresentation::InitializePlotMapper | ( | vtkPolyData * | input, | |
vtkActor2D * | actor, | |||
bool | forceStandard = false | |||
) | [protected, virtual] |
Select a set of points using the prescribed operator (add, subtract, etc.) and class
void vtkParallelCoordinatesRepresentation::BuildDefaultSCurve | ( | vtkDoubleArray * | array, | |
int | numValues | |||
) | [protected] |
Build an s-curve passing through (0,0) and (1,1) with a specified number of values. This is used as a lookup table when plotting curved primitives.
virtual void vtkParallelCoordinatesRepresentation::LassoSelectInternal | ( | vtkPoints * | brushPoints, | |
vtkIdTypeArray * | outIds | |||
) | [protected, virtual] |
same as public version, but assumes that the brushpoints coming in are all within two neighboring axes.
virtual void vtkParallelCoordinatesRepresentation::UpdateSelectionActors | ( | ) | [protected, virtual] |
todo
vtkPolyDataMapper2D* vtkParallelCoordinatesRepresentation::GetSelectionMapper | ( | int | idx | ) | [protected] |
int vtkParallelCoordinatesRepresentation::GetNumberOfSelections | ( | ) | [protected] |
virtual char* vtkParallelCoordinatesRepresentation::GetInternalHoverText | ( | ) | [protected, virtual] |
virtual void vtkParallelCoordinatesRepresentation::SetInternalHoverText | ( | const char * | ) | [protected, virtual] |
Definition at line 300 of file vtkParallelCoordinatesRepresentation.h.
Definition at line 301 of file vtkParallelCoordinatesRepresentation.h.
Definition at line 302 of file vtkParallelCoordinatesRepresentation.h.
Definition at line 303 of file vtkParallelCoordinatesRepresentation.h.
Definition at line 304 of file vtkParallelCoordinatesRepresentation.h.
Definition at line 305 of file vtkParallelCoordinatesRepresentation.h.
Definition at line 306 of file vtkParallelCoordinatesRepresentation.h.
Definition at line 308 of file vtkParallelCoordinatesRepresentation.h.
vtkSmartPointer<vtkBivariateLinearTableThreshold> vtkParallelCoordinatesRepresentation::LinearThreshold [protected] |
Definition at line 309 of file vtkParallelCoordinatesRepresentation.h.
Internals* vtkParallelCoordinatesRepresentation::I [protected] |
Definition at line 311 of file vtkParallelCoordinatesRepresentation.h.
int vtkParallelCoordinatesRepresentation::NumberOfAxes [protected] |
Definition at line 315 of file vtkParallelCoordinatesRepresentation.h.
int vtkParallelCoordinatesRepresentation::NumberOfAxisLabels [protected] |
Definition at line 316 of file vtkParallelCoordinatesRepresentation.h.
int vtkParallelCoordinatesRepresentation::NumberOfSamples [protected] |
Definition at line 317 of file vtkParallelCoordinatesRepresentation.h.
double vtkParallelCoordinatesRepresentation::YMin [protected] |
Definition at line 318 of file vtkParallelCoordinatesRepresentation.h.
double vtkParallelCoordinatesRepresentation::YMax [protected] |
Definition at line 319 of file vtkParallelCoordinatesRepresentation.h.
int vtkParallelCoordinatesRepresentation::CurveResolution [protected] |
Definition at line 321 of file vtkParallelCoordinatesRepresentation.h.
int vtkParallelCoordinatesRepresentation::UseCurves [protected] |
Definition at line 322 of file vtkParallelCoordinatesRepresentation.h.
double vtkParallelCoordinatesRepresentation::AngleBrushThreshold [protected] |
Definition at line 323 of file vtkParallelCoordinatesRepresentation.h.
double vtkParallelCoordinatesRepresentation::FunctionBrushThreshold [protected] |
Definition at line 324 of file vtkParallelCoordinatesRepresentation.h.
double vtkParallelCoordinatesRepresentation::SwapThreshold [protected] |
Definition at line 325 of file vtkParallelCoordinatesRepresentation.h.
double* vtkParallelCoordinatesRepresentation::Xs [protected] |
Definition at line 328 of file vtkParallelCoordinatesRepresentation.h.
double* vtkParallelCoordinatesRepresentation::Mins [protected] |
Definition at line 329 of file vtkParallelCoordinatesRepresentation.h.
double* vtkParallelCoordinatesRepresentation::Maxs [protected] |
Definition at line 330 of file vtkParallelCoordinatesRepresentation.h.
double* vtkParallelCoordinatesRepresentation::MinOffsets [protected] |
Definition at line 331 of file vtkParallelCoordinatesRepresentation.h.
double* vtkParallelCoordinatesRepresentation::MaxOffsets [protected] |
Definition at line 332 of file vtkParallelCoordinatesRepresentation.h.
Definition at line 335 of file vtkParallelCoordinatesRepresentation.h.
Definition at line 336 of file vtkParallelCoordinatesRepresentation.h.
Definition at line 337 of file vtkParallelCoordinatesRepresentation.h.
Definition at line 340 of file vtkParallelCoordinatesRepresentation.h.
double vtkParallelCoordinatesRepresentation::LineOpacity [protected] |
Definition at line 342 of file vtkParallelCoordinatesRepresentation.h.
double vtkParallelCoordinatesRepresentation::FontSize [protected] |
Definition at line 343 of file vtkParallelCoordinatesRepresentation.h.
double vtkParallelCoordinatesRepresentation::LineColor[3] [protected] |
Definition at line 344 of file vtkParallelCoordinatesRepresentation.h.
double vtkParallelCoordinatesRepresentation::AxisColor[3] [protected] |
Definition at line 345 of file vtkParallelCoordinatesRepresentation.h.
double vtkParallelCoordinatesRepresentation::AxisLabelColor[3] [protected] |
Definition at line 346 of file vtkParallelCoordinatesRepresentation.h.
char* vtkParallelCoordinatesRepresentation::InternalHoverText [protected] |
Definition at line 349 of file vtkParallelCoordinatesRepresentation.h.