Base: Modernise ctors dtors defs etc
This commit is contained in:
@@ -78,12 +78,12 @@ class BaseExport ViewProjMatrix : public ViewProjMethod
|
||||
public:
|
||||
ViewProjMatrix (const Matrix4D &rclMtx);
|
||||
|
||||
Vector3f operator()(const Vector3f &rclPt) const;
|
||||
Vector3d operator()(const Vector3d &rclPt) const;
|
||||
Vector3f inverse (const Vector3f &rclPt) const;
|
||||
Vector3d inverse (const Vector3d &rclPt) const;
|
||||
Vector3f operator()(const Vector3f &rclPt) const override;
|
||||
Vector3d operator()(const Vector3d &rclPt) const override;
|
||||
Vector3f inverse (const Vector3f &rclPt) const override;
|
||||
Vector3d inverse (const Vector3d &rclPt) const override;
|
||||
|
||||
Matrix4D getProjectionMatrix () const;
|
||||
Matrix4D getProjectionMatrix () const override;
|
||||
|
||||
protected:
|
||||
bool isOrthographic;
|
||||
@@ -101,12 +101,12 @@ class BaseExport ViewOrthoProjMatrix : public ViewProjMethod
|
||||
public:
|
||||
ViewOrthoProjMatrix (const Matrix4D &rclMtx);
|
||||
|
||||
Vector3f operator()(const Vector3f &rclPt) const;
|
||||
Vector3d operator()(const Vector3d &rclPt) const;
|
||||
Vector3f inverse (const Vector3f &rclPt) const;
|
||||
Vector3d inverse (const Vector3d &rclPt) const;
|
||||
Vector3f operator()(const Vector3f &rclPt) const override;
|
||||
Vector3d operator()(const Vector3d &rclPt) const override;
|
||||
Vector3f inverse (const Vector3f &rclPt) const override;
|
||||
Vector3d inverse (const Vector3d &rclPt) const override;
|
||||
|
||||
Matrix4D getProjectionMatrix () const;
|
||||
Matrix4D getProjectionMatrix () const override;
|
||||
|
||||
protected:
|
||||
Matrix4D _clMtx, _clMtxInv;
|
||||
|
||||
Reference in New Issue
Block a user