34 lines
586 B
C++
34 lines
586 B
C++
/*
|
||
* © Copyright 2014 – Urheberrechtshinweis
|
||
* Alle Rechte vorbehalten / All Rights Reserved
|
||
*
|
||
* Programmcode ist urheberrechtlich geschuetzt.
|
||
* Das Urheberrecht liegt, soweit nicht ausdruecklich anders gekennzeichnet, bei Frank Ebner.
|
||
* Keine Verwendung ohne explizite Genehmigung.
|
||
* (vgl. § 106 ff UrhG / § 97 UrhG)
|
||
*/
|
||
|
||
#ifndef CAMERA_H
|
||
#define CAMERA_H
|
||
|
||
#include <QMatrix4x4>
|
||
#include <QMatrix3x3>
|
||
|
||
class Camera {
|
||
|
||
QMatrix4x4 V;
|
||
QMatrix4x4 P;
|
||
|
||
public:
|
||
|
||
Camera() {
|
||
|
||
}
|
||
|
||
QMatrix4x4 getV() const {return V;}
|
||
QMatrix4x4 getP() const {return P;}
|
||
|
||
};
|
||
|
||
#endif // CAMERA_H
|