As a guy that ALWAYS loved and still loves C++
Does Blender use C++ ?
Some people says Blender and other people says Python
Asked
Active
Viewed 1.2k times
1
Delta Oscar Uniform
- 113
- 1
- 1
- 5
-
1Blender software source code is c++ (99% sure), Blender API use python (100% sure). https://docs.blender.org/api/current/ – Strapicarus Nov 18 '17 at 21:29
-
What programming languages can I use in Blender?, Python and C/C++ relationship – David Nov 19 '17 at 00:57
1 Answers
5
Blender is written in 3 languages: C, C++, and Python.
C - for Blender's [startup/main-loop/shutdown] and most internal functionality, tools, drawing, GUI and editors.
C++ - physics, audio, game-engine and Cycles render engine.
Python - The interface definitions, addons, most format import/export and some tools.
More information can be found here: https://wiki.blender.org/index.php/Dev:Doc/FAQ
Brenticus
- 6,805
- 1
- 13
- 21