Skip to main content

All Questions

Tagged with
0 votes
0 answers
27 views

Is it possible to adjust 2d clothing image to 3d clothing with enough python code? [closed]

Is it possible to transform it into 3D like this??
오공성'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
67 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
177 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
3 votes
3 answers
544 views

How to find and fix local minima in any mesh for 3d printing (Scripting)

I am randomly generating organic shapes that I want to 3D print lightweight and thus with 0% infill, a single perimeter, and zero top and bottom layers. To make this work properly I need the mesh to ...
TheRooster's user avatar
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
2 votes
2 answers
229 views

set the context to run dissolve_degenerate from the python shell

I've downloaded some 3d models of a city with a ton of topologic errors. I am trying to fix some iterating through the objects and running dissolve_degenerate. But ...
mfastudillo's user avatar
0 votes
1 answer
582 views

How can I turn this math formula into a 3d model?

how can i turn a 3d model made in surfer into a 3d file that i can print
Alex '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
2 votes
0 answers
488 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
1 answer
444 views

Union partially overlapping cubes without boolean modifier

My goal is to generate a model composed of many partially overlapping cubes. But I need to get rid of the parts where they overlap, so I have a single mesh without any intersections. One of the ...
Jip's user avatar
  • 103
2 votes
1 answer
755 views

Add cubes->add UV textures->union->bake single texture image with Python

My problem is mainly with UV texturing from Python. I am building a complex model from Python. The model consists of several cubes which have different colors. On top of each cube there's supposed to ...
Jip's user avatar
  • 103
0 votes
2 answers
56 views

what to do with island type faces?

I have a model for 3D printing, to make the model I need to do Boolean operation, after the Boolean, I will have many of this island type faces (like the figure) that I need to get rid of them. the ...
Benancio's user avatar
3 votes
2 answers
1k views

Construct surface model from atomic force microscope data

I am trying to reproduce in blender the sample surface imaged by atomic force microscope (AFM). I found the link below but cannot get it to work yet. Here is what I did (in windows environment): ...
user223960's user avatar
5 votes
3 answers
3k views

Creating a geometry from a Python array

I would like to 3D print this image, which I computed in numpy as an array. My hope is to put this into Blender and export as an ...
john mangual's user avatar