FastUIDraw
|
An orthogonal_projection_params holds the data to describe an orthogonal projection matrix without perspective. More...
#include <matrix.hpp>
Public Member Functions | |
orthogonal_projection_params (void) | |
orthogonal_projection_params (T l, T r, T b, T t) | |
Public Attributes | |
T | m_bottom |
Bottom edge of the clipping plane. | |
T | m_left |
Left edge of the clipping plane. | |
T | m_right |
Right edge of the clipping plane. | |
T | m_top |
Top edge of the clipping plane. | |
An orthogonal_projection_params holds the data to describe an orthogonal projection matrix without perspective.
Definition at line 370 of file matrix.hpp.
|
inline |
Default constructor for projection parameters, values are unitialized.
Definition at line 382 of file matrix.hpp.
|
inline |
Creates the projection parameters instance according to the given parameters.
l | Left |
r | Right |
t | Top |
b | Bottom |
Definition at line 392 of file matrix.hpp.