template<typename T>
class fl::MatrixSlice< T >
Definition at line 582 of file span.h.
|
| | MatrixSlice () FL_NOEXCEPT=default |
| |
| | MatrixSlice (const MatrixSlice &other) FL_NOEXCEPT=default |
| |
| | MatrixSlice (T *data, i32 dataWidth, i32 dataHeight, i32 bottomLeftX, i32 bottomLeftY, i32 topRightX, i32 topRightY) FL_NOEXCEPT |
| |
| const T & | at (i32 x, i32 y) const FL_NOEXCEPT |
| |
| T & | at (i32 x, i32 y) FL_NOEXCEPT |
| |
| vec2< i32 > | getLocalCoord (i32 x_world, i32 y_world) const FL_NOEXCEPT |
| |
| vec2< i32 > | getParentCoord (i32 x_local, i32 y_local) const FL_NOEXCEPT |
| |
| T & | operator() (i32 x, i32 y) FL_NOEXCEPT |
| |
| MatrixSlice & | operator= (const MatrixSlice &other) FL_NOEXCEPT=default |
| |
| T * | operator[] (i32 row) FL_NOEXCEPT |
| |