initial commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
#ifndef DELTA_CAMERA
|
||||
#define DELTA_CAMERA
|
||||
|
||||
#include "math.hpp"
|
||||
|
||||
class DeltaCamera {
|
||||
public:
|
||||
DeltaVector3 pos;
|
||||
DeltaVector2 angle;
|
||||
|
||||
DeltaCamera(float x, float y, float z);
|
||||
DeltaVector2 projectPointVec(const DeltaVector3 &worldPos);
|
||||
DeltaVector2 projectPoint(float worldX, float worldY, float worldZ);
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user