Skip to main content

All Questions

Tagged with
0 votes
0 answers
766 views

Traceback (most recent call last): BlenderGIS

I'm using the BlenderGIS add on. When importing digital terrain models (or DEMS) which are ESRI ASCII Grid (.asc) files, I get this error message. I'm pretty new to blender but trying to create 3D ...
AMartinEJD's user avatar
2 votes
1 answer
350 views

Disappearing metaballs when creating with Python

I have created a simple addon that creates a series of metaballs. Sometimes when the addon executes, the metaballs are rendered invisible (as only outlines, no surface). Usually the metaballs seem to ...
slerfsterdn's user avatar
3 votes
1 answer
466 views

How can I find the selected metaball elements in Edit mode with Python?

If you have an active object you can find the currently selected sub elements; e. g. in an active mesh you can find the selected vertices while looping over them and check the property ...
frisee's user avatar
  • 487
10 votes
1 answer
4k views

How to create a mesh from metaballs which will always work with a Boolean modifier?

My goal is to simulate a particle system in an animation, convert the particles to a mesh, then apply Boolean modifiers to the result mesh. This usually works. However, the mesh generation ...
Ed Tate's user avatar
  • 5,196
8 votes
3 answers
5k views

Is there a low level alternative for bpy.ops.object.convert()?

I am using bpy.ops.object.convert(target='MESH', keep_original= False) in a python function in blender to convert metaballs to a mesh. The script works fine when ...
Ed Tate's user avatar
  • 5,196
12 votes
2 answers
3k views

Scripting metaballs with negative influence

I'm generating metaballs with a python script, and I need to be able to toggle the negative option for some of the metaballs. (Edit: ...
Cody Reisdorf's user avatar