|
Author |
Topic: 3D engine (Read 518 times) |
|
Wim_Van_der_Vurst
|
3D engine
« on: Oct 17th, 2002, 3:56pm » |
|
I was just wandering if there is a 3D engine in the Pro55ing sofware and how one goes about placing different objects in the same 3D space... Wim Van der Vurst
|
|
|
|
Processing
|
Re: 3D engine
« Reply #1 on: Oct 19th, 2002, 12:57pm » |
|
Wim, There are examples using the engine in the examples section: http://www.proce55ing.net/learning/index.html You can place any object in space using the translate() method. You can rotate objects in 3D using the rotate() method. You can create an object anywhere in space using the vertex() method. These are documented in the reference section: http://www.proce55ing.net/reference/index.html
|
|
|
|
dasmeer
|
Re: 3D engine
« Reply #2 on: May 4th, 2003, 8:53pm » |
|
Hello guys, Is it possible to create mouse events on 3D objects, like on(rollover) {fill(#990000)} cause I want to change the colour of my objects when rolled over. Cheers, Elmar
|
|
|
|
Martin
|
Re: 3D engine
« Reply #3 on: May 5th, 2003, 5:48am » |
|
hi elmar, you calculate it using the mouseX and mouseY variables. however, you can create your own rollover method if you want to do this relative to a number of objects.
|
|
|
|
|