diff options
author | chirs241097@gmail.com <chirs241097@gmail.com@c17bf020-1265-9734-9302-a83f62007ddb> | 2014-03-15 02:29:19 +0000 |
---|---|---|
committer | chirs241097@gmail.com <chirs241097@gmail.com@c17bf020-1265-9734-9302-a83f62007ddb> | 2014-03-15 02:29:19 +0000 |
commit | 856c345feca062fdfc0b177e0de25489fb1b0c06 (patch) | |
tree | 9018cf4f5245e3b6533e86dfa8ca8486a5859498 /include | |
parent | f2ce3ddfcb72fc3026ba85bd41849fa1886877e4 (diff) | |
download | bullet-lab-remix-856c345feca062fdfc0b177e0de25489fb1b0c06.tar.xz |
Extend hge with a 3D Rotation method, it's not tested yet.
Fix probable compile errors due to includes.
Diffstat (limited to 'include')
-rw-r--r-- | include/hge.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hge.h b/include/hge.h index 836a2b9..1ccab9d 100644 --- a/include/hge.h +++ b/include/hge.h @@ -424,6 +424,7 @@ public: virtual void CALL Gfx_FinishBatch(int nprim) = 0; virtual void CALL Gfx_SetClipping(int x=0, int y=0, int w=0, int h=0) = 0; virtual void CALL Gfx_SetTransform(float x=0, float y=0, float dx=0, float dy=0, float rot=0, float hscale=0, float vscale=0) = 0; + virtual void CALL Gfx_SetTDRotate(float ang=0, float x=0, float y=0, float z=0) = 0; virtual HTARGET CALL Target_Create(int width, int height, bool zbuffer) = 0; virtual void CALL Target_Free(HTARGET target) = 0; |