Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to the Power Users community on Codidact!

Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.

Post History

60%
+1 −0
Q&A Turning a Makehuman Surface into a Solid

I've worked for a while with OpenSCAD as a nice tool to quickly build pieces to then export for 3D printing. In a new use case, I'd like the object to include a human-like arm or head. Think in t...

0 answers  ·  posted 2d ago by John C‭

Question 3d-modeling
#1: Initial revision by user avatar John C‭ · 2024-11-18T23:25:21Z (2 days ago)
Turning a Makehuman Surface into a Solid
I've worked for a while with OpenSCAD as a nice tool to quickly build pieces to then export for 3D printing.  In a new use case, I'd like the object to include a human-like arm or head.  Think in terms of parts for a model for assembly, here, where OpenSCAD code might divvy up the body parts and add integration points.

[Makehuman](http://www.makehumancommunity.org/) exists, providing a quick and open source way to get fairly complete and diverse human models.  So far, so good.  However, exporting the "character" as an STL file, say, only provides me with a surface mesh, which seems useless in OpenSCAD.  Instead, I want a filled, solid object, a solid volume representing the space inside the mesh.

Looking through discussions for other open source 3D software, I can find plenty of people using FreeCAD to "fill the mesh" meaning to make the mesh a continuous surface.  And Blender discussions have no shortage of people explaining how to "solidify" the surface mesh into a solid-but-hollow *shell* to various approximations of the original shape.  But I can't find anything on getting an object that covers all space inside the surface, except for a wildly optimistic suggestion to "just" use OpenSCAD primitives to approximate the character and ignore Makehuman altogether...

Does anybody have pointers on how to do this?  "Make the solid object represented by this surface" feels like it *should* be a routine feature of all these products, but I can't find anything of the sort.  Thanks!