newLISP Fan Club

Forum => newLISP newS => Topic started by: HPW on December 09, 2005, 01:48:46 AM

Title: 3Dviewer in TCL
Post by: HPW on December 09, 2005, 01:48:46 AM
Ran accross this sample-code for a 3Dviewer in TCL:



http://wiki.tcl.tk/15032



I was quite surprised that TCL is fast enough for an acceptable performance on interactive viewing.

Maybe something which could be used in a newLISP-TK envirment.



;-)
Title:
Post by: newdep on December 09, 2005, 04:18:55 AM
Ooo yes TK can do that... I use AC3D and thats partly build in Tcl/TK too.

Never the less its a flasing example indeed.. ;-)



Regards, Norman
Title:
Post by: newdep on December 09, 2005, 04:22:16 AM
By the way... Speaking of TK... have you seen the Window-Manager build in Tcl/TK ;-)



http://wiki.tcl.tk/13972
Title:
Post by: HPW on January 13, 2006, 02:21:19 AM
Another attempt to use 3D TCL:



http://www.tcl3d.org/
Title:
Post by: Lutz on January 13, 2006, 04:52:58 AM
This is basically OpenGL and SDL wrapped in Tcl. You can have OpenGL and SDL or GLUT from Peter's website: http://www.turtle.dds.nl/gl4newlisp/index.html



This way you can talk to OpenGL directly without the extra step of an Tcl wrapper.



Lutz
Title:
Post by: HPW on January 13, 2006, 05:44:13 AM
That is true. But with tcl3d the 3D-window is just another GUI-widget and you can combine it with the other TK stuff.



Both could be usefull, depends on the job.