The ViewProjMatrix class returns the result of the multiplication of the 3D vector and the view transformation matrix. More...
#include <ViewProj.h>
Public Member Functions | |
Matrix4D | getProjectionMatrix () const |
Calculate the projection (+ mapping) matrix. More... | |
Vector3d | inverse (const Vector3d &rclPt) const |
Convert a 2D point on the projection plane in 3D space. More... | |
Vector3f | inverse (const Vector3f &rclPt) const |
Convert a 2D point on the projection plane in 3D space. More... | |
Vector3d | operator() (const Vector3d &rclPt) const |
Convert 3D point to 2D projection plane. More... | |
Vector3f | operator() (const Vector3f &rclPt) const |
Convert 3D point to 2D projection plane. More... | |
ViewProjMatrix (const Matrix4D &rclMtx) | |
Public Member Functions inherited from Base::ViewProjMethod | |
Matrix4D | getComposedProjectionMatrix () const |
Calculate the composed projection matrix. More... | |
virtual Matrix4D | getProjectionMatrix () const =0 |
Calculate the projection (+ mapping) matrix. More... | |
const Base::Matrix4D & | getTransform () const |
virtual Vector3d | inverse (const Vector3d &rclPt) const =0 |
Convert a 2D point on the projection plane in 3D space. More... | |
virtual Vector3f | inverse (const Vector3f &rclPt) const =0 |
Convert a 2D point on the projection plane in 3D space. More... | |
virtual bool | isValid () const |
virtual Vector3d | operator() (const Vector3d &rclPt) const =0 |
Convert 3D point to 2D projection plane. More... | |
virtual Vector3f | operator() (const Vector3f &rclPt) const =0 |
Convert 3D point to 2D projection plane. More... | |
ViewProjMethod & | operator= (const ViewProjMethod &)=default |
void | setTransform (const Base::Matrix4D &) |
Apply an additional transformation to the input points. More... | |
ViewProjMethod (const ViewProjMethod &)=default | |
virtual | ~ViewProjMethod ()=default |
Protected Attributes | |
bool | isOrthographic |
Additional Inherited Members | |
Protected Member Functions inherited from Base::ViewProjMethod | |
void | transformInput (const Base::Vector3d &, Base::Vector3d &) const |
void | transformInput (const Base::Vector3f &, Base::Vector3f &) const |
ViewProjMethod () | |
The ViewProjMatrix class returns the result of the multiplication of the 3D vector and the view transformation matrix.
ViewProjMatrix::ViewProjMatrix | ( | const Matrix4D & | rclMtx | ) |
References isOrthographic.
|
virtual |
Calculate the projection (+ mapping) matrix.
Implements Base::ViewProjMethod.
References isOrthographic, Base::Matrix4D::move(), and Base::Matrix4D::scale().
Convert a 2D point on the projection plane in 3D space.
Implements Base::ViewProjMethod.
References isOrthographic, and Base::Vector3< _Precision >::Set().
Convert a 2D point on the projection plane in 3D space.
Implements Base::ViewProjMethod.
References isOrthographic, and Base::Vector3< _Precision >::Set().
Convert 3D point to 2D projection plane.
Implements Base::ViewProjMethod.
References isOrthographic, and Base::ViewProjMethod::transformInput().
Convert 3D point to 2D projection plane.
Implements Base::ViewProjMethod.
References isOrthographic, and Base::ViewProjMethod::transformInput().
|
protected |
Referenced by getProjectionMatrix(), inverse(), operator()(), and ViewProjMatrix().