Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using the mathutils module from blender in an independent project

Tags:

blender

I have a pluggin build for blender which i want to decouple from blender and run independently. The only dependency is the mathutils module. Is there a way to use the mathutils module from blender3d in an independent project.

like image 796
sreesreenu Avatar asked Feb 07 '23 08:02

sreesreenu


1 Answers

There is a python package called mathutils, which can be found at https://gitlab.com/ideasman42/blender-mathutils It has all the modules except kdtree. To install simply run

sudo pip install mathutils

Note that it needs python 3 to run

like image 109
sreesreenu Avatar answered Mar 09 '23 00:03

sreesreenu