Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - Bart

#1
Support / Octree question
October 25, 2003, 01:12:27 PM
I have a function that adds cubes to a world. I make one cube, I clone it, and I translate it. Then, I add the cubes to the world. But now i can't make an octree. I tried to use mergeObject but the translations aren't copied. Do you have an idea to make the world faster? (Sorry for my bad english  :oops: )
#2
Support / OpenGl and applet
October 11, 2003, 01:21:25 PM
Hi,

Do I need a signed applet if I want to use OpenGl in an applet?
#3
Support / Object3D.addChild();
October 03, 2003, 10:01:39 PM
Hello,

I have some code similar to this:

levelObj = Object3D.createDummyObj();
levelObj.addChild(Box1);
theWorld.addObject(levelObj);


This doesn't seem to work.

But if i add Box1 to the world. Everything works fine. Do you know what the problem is?