|
| | vtkRect ()=default |
| |
| | vtkRect (const T &x, const T &y, const T &width, const T &height) |
| |
| | vtkRect (const T *init) |
| |
| void | SetX (const T &x) |
| | Set the x component of the rectangle bottom corner, i.e.
|
| |
| const T & | GetX () const |
| | Get the x component of the rectangle bottom corner, i.e.
|
| |
| void | SetY (const T &y) |
| | Set the y component of the rectangle bottom corner, i.e.
|
| |
| const T & | GetY () const |
| | Get the y component of the rectangle bottom corner, i.e.
|
| |
| void | SetWidth (const T &width) |
| | Set the width of the rectanle, i.e.
|
| |
| const T & | GetWidth () const |
| | Get the width of the rectangle, i.e.
|
| |
| void | SetHeight (const T &height) |
| | Set the height of the rectangle, i.e.
|
| |
| const T & | GetHeight () const |
| | Get the height of the rectangle, i.e.
|
| |
| const T & | GetLeft () const |
| | Get the left boundary of the rectangle along the X direction.
|
| |
| T | GetRight () const |
| | Get the right boundary of the rectangle along the X direction.
|
| |
| T | GetTop () const |
| | Get the top boundary of the rectangle along the Y direction.
|
| |
| const T & | GetBottom () const |
| | Get the bottom boundary of the rectangle along the Y direction.
|
| |
| vtkVector2< T > | GetBottomLeft () const |
| | Get the bottom left corner of the rect as a vtkVector.
|
| |
| vtkVector< T, 2 > | GetTopLeft () const |
| | Get the top left corner of the rect as a vtkVector.
|
| |
| vtkVector< T, 2 > | GetBottomRight () const |
| | Get the bottom right corner of the rect as a vtkVector.
|
| |
| vtkVector< T, 2 > | GetTopRight () const |
| | Get the bottom left corner of the rect as a vtkVector.
|
| |
| bool | IntersectsWith (const vtkRect< T > &rect) const |
| | Returns true if the rect argument overlaps this rect.
|
| |
| void | MoveTo (T x, T y) |
| | Move the rectangle, moving the bottom-left corner to the given position.
|
| |
| bool | Intersect (const vtkRect< T > &other) |
| | Intersect with other rectangle.
|
| |
| vtkVector2d | GetCenter () const |
| | Returns the center of the rect as a vtkVector2d.
|
| |
|
| void | Set (const T &x, const T &y, const T &width, const T &height) |
| | Set the x, y components of the rectangle, and the width/height.
|
| |
|
| void | AddPoint (const T point[2]) |
| | Expand this rect to contain the point passed in.
|
| |
|
| void | AddPoint (T x, T y) |
| | Expand this rect to contain the point passed in.
|
| |
|
| void | AddRect (const vtkRect< T > &rect) |
| | Expand this rect to contain the rect passed in.
|
| |
| | vtkVector ()=default |
| |
| | vtkVector (const T &scalar) |
| | Initialize all of the vector's elements with the supplied scalar.
|
| |
| | vtkVector (const T *init) |
| | Initialize the vector's elements with the elements of the supplied array.
|
| |
| double | Norm () const |
| | Get the norm of the vector, i.e.
|
| |
| T | SquaredNorm () const |
| | Get the squared norm of the vector.
|
| |
| double | Normalize () |
| | Normalize the vector in place.
|
| |
| vtkVector< T, Size > | Normalized () const |
| | Return the normalized form of this vector.
|
| |
| T | Dot (const vtkVector< T, Size > &other) const |
| | The dot product of this and the supplied vector.
|
| |
| vtkVector< TR, Size > | Cast () const |
| | Cast the vector to the specified type, returning the result.
|
| |
| | vtkTuple ()=default |
| | The default constructor does not initialize values.
|
| |
| | vtkTuple (const T &scalar) |
| | Initialize all of the tuple's elements with the supplied scalar.
|
| |
| | vtkTuple (const T *init) |
| | Initialize the tuple's elements with the elements of the supplied array.
|
| |
| | vtkTuple (const std::array< T, Size > &values) |
| | Initialize the tuple's elements using a std::array for matching type and size.
|
| |
| int | GetSize () const |
| | Get the size of the tuple.
|
| |
| T * | GetData () |
| | Get a pointer to the underlying data of the tuple.
|
| |
| const T * | GetData () const |
| |
| T & | operator[] (int i) |
| | Get a reference to the underlying data element of the tuple.
|
| |
| const T & | operator[] (int i) const |
| |
| T | operator() (int i) const |
| | Get the value of the tuple at the index specified.
|
| |
| bool | Compare (const vtkTuple< T, Size > &other, const T &tol) const |
| | Equality operator with a tolerance to allow fuzzy comparisons.
|
| |
| template<typename TR > |
| vtkTuple< TR, Size > | Cast () const |
| | Cast the tuple to the specified type, returning the result.
|
| |
template<typename T>
class vtkRect< T >
templated base type for storage of 2D rectangles.
This class is a templated data type for storing and manipulating rectangles. The memory layout is a contiguous array of the specified type, such that a float[4] can be cast to a vtkRectf and manipulated. Also a float[12] could be cast and used as a vtkRectf[3].
- Tests:
- vtkRect (Tests)
Definition at line 27 of file vtkRect.h.