Documentation for vtkVectorNorm

vtkVectorNorm - generate scalars from Euclidean norm of vectors

Super Class: vtkDataSetToDataSetFilter

Description:

vtkVectorNorm is a filter that generates scalar values by computing Euclidean norm of vector triplets. Scalars can be normalized 0<=s<=1 if desired. Note that this filter operates on point or cell attribute data, or both. By default, the filter operates on both point and cell data if vector point and cell data, respectively, are available from the input. Alternatively, you can choose to generate scalar norm values for just cell or point data.

 

Methods:

void vtkVectorNorm ()
const char *GetClassName ()
void PrintSelf (unknown & ,vtkIndent )
static vtkVectorNorm *New ()
void SetNormalize (int )
int GetNormalize ()
void NormalizeOn ()
void NormalizeOff ()
void SetAttributeMode (int )
int GetAttributeMode ()
void SetAttributeModeToDefault ()
void SetAttributeModeToUsePointData ()
void SetAttributeModeToUseCellData ()
char *GetAttributeModeAsString ()
void Execute ()

 

Detailed Method Descriptions:

Construct with normalize flag off.

static vtkVectorNorm *New ()

Specify whether to normalize scalar values.

void SetNormalize (int )
int GetNormalize ()
void NormalizeOn ()
void NormalizeOff ()

Control how the filter works to generate scalar data from the input vector data. By default, (AttributeModeToDefault) the filter will generate the scalar norm for point and cell data (if vector data present in the input). Alternatively, you can explicitly set the filter to generate point data (AttributeModeToUsePointData) or cell data (AttributeModeToUseCellData).

void SetAttributeMode (int )
int GetAttributeMode ()
void SetAttributeModeToDefault ()
void SetAttributeModeToUsePointData ()
void SetAttributeModeToUseCellData ()
char *GetAttributeModeAsString ()