VTK
|
#include "vtkIOStream.h"
#include "vtkSystemIncludes.h"
#include <cassert>
#include <cstdlib>
#include <cmath>
Go to the source code of this file.
Classes | |
class | vtkTuple< T, Size > |
templated base type for containers of constant size. More... | |
Functions | |
template<typename A , int Size> | |
bool | operator!= (const vtkTuple< A, Size > &t1, const vtkTuple< A, Size > &t2) |
Inequality for vector type. More... | |
template<typename A , int Size> | |
ostream & | operator<< (ostream &out, const vtkTuple< A, Size > &t) |
Output the contents of a tuple, mainly useful for debugging. More... | |
template<int Size> | |
ostream & | operator<< (ostream &out, const vtkTuple< unsigned char, Size > &t) |
Output the contents of a tuple, mainly useful for debugging. More... | |
template<typename A , int Size> | |
bool | operator== (const vtkTuple< A, Size > &t1, const vtkTuple< A, Size > &t2) |
Equality operator performs an equality check on each component. More... | |
ostream& operator<< | ( | ostream & | out, |
const vtkTuple< A, Size > & | t | ||
) |
Output the contents of a tuple, mainly useful for debugging.
Definition at line 154 of file vtkTuple.h.
ostream& operator<< | ( | ostream & | out, |
const vtkTuple< unsigned char, Size > & | t | ||
) |
Output the contents of a tuple, mainly useful for debugging.
Definition at line 175 of file vtkTuple.h.
bool operator== | ( | const vtkTuple< A, Size > & | t1, |
const vtkTuple< A, Size > & | t2 | ||
) |
Equality operator performs an equality check on each component.
Definition at line 201 of file vtkTuple.h.
bool operator!= | ( | const vtkTuple< A, Size > & | t1, |
const vtkTuple< A, Size > & | t2 | ||
) |
Inequality for vector type.
Definition at line 218 of file vtkTuple.h.