vtkTensor - supporting class to enable assignment and referencing of tensors
Super Class: vtkObject
Description:
vtkTensor is a floating point representation of an nxn tensor. vtkTensor provides methods for assignment and reference of tensor components. It does it in such a way as to minimize data copying.
Caveats:
vtkTensor performs its operations using pointer reference. You are responsible for supplying data storage (if necessary) if local copies of data are being made.
Methods:
| void vtkTensor () | |
| static vtkTensor *New () | |
| const char *GetClassName () | |
| void Initialize () | |
| float GetComponent (int ,int ) | |
| void SetComponent (int ,int ,float ) | |
| void AddComponent (int ,int ,float ) | |
| float *GetColumn (int ) | |
| void DeepCopy (vtkTensor *) | |
| void DeepCopy (vtkTensor &) |
Detailed Method Descriptions:
![]()
| void Initialize () |
![]()
| float GetComponent (int ,int ) |
![]()
| void SetComponent (int ,int ,float ) |
![]()
| void AddComponent (int ,int ,float ) |
![]()
| float *GetColumn (int ) |
![]()
| void DeepCopy (vtkTensor *) |
![]()
| void DeepCopy (vtkTensor &) |
![]()