Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Computer graphic programming language [closed]

Is there a programming language that has been explicitly created for computer graphics? I know that usually C and C++ are the most commonly used PLs for computer graphics but I want to know if there is a domain-specific language for CG.

like image 793
TheHube Avatar asked Oct 23 '25 16:10

TheHube


1 Answers

Renderman was specifically created and has been used by Pixar and many others as a graphics DSL. You describe objects in the scene, attach shaders to them, add light sources, position cameras, describe projections, etc. All in this C-like language from the 1980s.

There are open source renderers that implement it & you can try it out.

Now that I think of it, perhaps POVray could be considered another.

like image 171
Roger Allen Avatar answered Oct 27 '25 05:10

Roger Allen