this post was submitted on 04 Apr 2025
8 points (90.0% liked)

3DPrinting

17569 readers
84 users here now

3DPrinting is a place where makers of all skill levels and walks of life can learn about and discuss 3D printing and development of 3D printed parts and devices.

The r/functionalprint community is now located at: or [email protected]

There are CAD communities available at: [email protected] or [email protected]

Rules

If you need an easy way to host pictures, https://catbox.moe/ may be an option. Be ethical about what you post and donate if you are able or use this a lot. It is just an individual hosting content, not a company. The image embedding syntax for Lemmy is ![](URL)

Moderation policy: Light, mostly invisible

founded 2 years ago
MODERATORS
 

So I was able to get the cad files from the good folks at micro swiss for their microswiss ng ender 3 edition. I also found a step file for a generic filament slicer. How easy would it be for me to somehow combine the two? I am okay at cad. But this seems like an undertaking, unless there's an easy way to do it. Has anyone done something like this before? The closest I've found was someone made one for the microswiss ng ender 5 edition, but I haven't been able to get a hold of the creator.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 4 points 2 weeks ago (1 children)

i am unfamiliar with the printer and parts you are talking about, and am not sure which CAD program you use, so this may be irrelevant - i apologize if so, but the question is vague enough to warrant at least a little help if i can give it.

i use openscad for cad modelling. multiple files can be imported there and moved around. little pieces can be added between them if you require more attachment points than what is available (like if its connecting two roundy bits, etc).

what do you foresee as a problem with combining these two things in CAD?

[–] [email protected] 1 points 1 week ago (1 children)

I usually use fusion/ on shape. I had no idea openscad could do something like this and I'm wondering if that's my route.

[–] [email protected] 1 points 1 week ago (1 children)

openscad is a wonderful tool if you hate using your mouse. if you prefer scripting your way to victory, it is an amazing tool.

mouse is only used to move/zoom/tilt camera, everything else is keyboard

[–] [email protected] 1 points 1 week ago (1 children)

I do know python so scripting isn't alien to me! I doubt I'll be able to do something to this caliber though lol.

[–] [email protected] 1 points 1 week ago

honestly, after import if you need a connectypiece you can probably just

translate([x,y,z]) { cube(5); }

here is the cheat sheet that i use for reference in openscad - it is quite good :)

https://openscad.org/cheatsheet/