Skip to main content

All Questions

Tagged with
6 questions with no upvoted or accepted answers
2 votes
0 answers
489 views

What's the algorithm used in bm.calc_volume()?

I need to know which algorithm is used in bm.calc_volume() (https://docs.blender.org/api/blender_python_api_2_67_release/bmesh.types.html#bmesh.types.BMesh.calc_volume) or which theorem is based on. ...
Zavaroski's user avatar
0 votes
0 answers
29 views

How to remove wrinkles caused by fill

I am making a model for 3D printing But the bottom surface I filled has produced many wrinkles, which can lead to poor printing results How can I remove these wrinkles you can get my file from and ...
mengyuanlan's user avatar
0 votes
0 answers
68 views

How set the default scaling factor for importing and exporting to be equivalent to real world scale? How to change the defaults?

Ok, this doesn't seem to be a new problem, but I am looking for a new solution. I use blender for both printing in the real world and visualizing and simulating. For a long time I did like everyone ...
Dave Schwalbach's user avatar
0 votes
0 answers
181 views

Automate preinstalled Add-On action (3D-Print Toolbox)

I've been using the 3D Print Toolbox Add-on in Blender to check for and fix non manifold edges and would like to automate the actions on a list of STL files. Right now I do the following: Import an ...
ansonl's user avatar
  • 101
0 votes
0 answers
64 views

Blender API - Creating objects attached to a selected object

This is my first question, so bear with me! I'm trying to create a program that lets you build your own houses and buildings and export the final model as an stl for 3D printing. I'm good at 3D ...
Anthony Joseph Schilling's user avatar
0 votes
0 answers
653 views

3D print tool surface area and volume calculations?

I am currently using Blender to determine surface area and volume of 3D whales. I originally used volume = bm.calc_volume() #volume of whale area = ((sum(f.calc_area() for f in bm.faces))) However, ...
user33993's user avatar