not calling dGeomGetPosition/Rotation() for planes

git-svn-id: svn://anubis/anaglym/trunk@138 99a6e188-d820-4881-8870-2d33a10e2619
This commit is contained in:
Josh Holtrop 2009-10-29 02:51:55 +00:00
parent 65520cd4a3
commit c802886b11
2 changed files with 3 additions and 4 deletions

1
.todo
View File

@ -1,5 +1,4 @@
- rename CCylinder to Capsule
- add plane constructor taking 4 parameters for (a,b,c,d)
- remove calling dGeomGetPosition/Rotation() for planes
- support loading and applying textures for managed objects
- debug hooks for loading and execution to halt infinite lua loops

View File

@ -1,7 +1,7 @@
--ground = ag.createStaticPlane(0, 0, 0, 0, 0, 0)
ground = ag.createStaticBox(1000, 1000, 1000)
ground:setPosition(0, 0, -500)
ground = ag.createStaticPlane(0, 0, 0, 0, 0, 0)
--ground = ag.createStaticBox(1000, 1000, 1000)
--ground:setPosition(0, 0, -500)
ground:setColor(0.2, 1.0, 0.2)
ag.setCamera(10, -10, 10, 0, 0, 0)