sueden.social ist einer von vielen unabhängigen Mastodon-Servern, mit dem du dich im Fediverse beteiligen kannst.
Eine Community für alle, die sich dem Süden hingezogen fühlen. Wir können alles außer Hochdeutsch.

Serverstatistik:

1,8 Tsd.
aktive Profile

#openscad

2 Beiträge2 Beteiligte0 Beiträge heute
I'm dipping my toes in #3Dprinting. I need something I couldn't fond on #thingiverse, so it seems I need to learn #cad. I need to choose a non-propietary solution, and I saw the main two are #FreeCAD and #OpenSCAD. Being I a #softwareDeveloper, what may get me up and running in the least amount of time? OpenSCAD seems resemblant of a #programmingLanguage, so it may be simpler for me, but does it have drawbacks or limitation I should be aware of?
Antwortete im Thread

@olm_e @FreeCAD You could use :gitannex: #gitAnnex and/or :datalad: #dataLad to version control your designs. I have not tried it with #FreeCAD, but I do it all the time with #solveSpace and #OpenSCAD. Git Annex allows version-controlling arbitrarily-large files and provides a simple 'git annex assist` command to 'do the git stuff' and sync everyone up. Don't know how assemblies work in FreeCAD, but if it is one file that sources other, independent files, then it should work.

Ever wonder why you see so many PCBWay sponsorships on YouTube?

The screenshot below came to my _work_ email address.

I don't have much associated with my work that is connected to #3dprinting

The only link I have between this email address is an #OpenSCAD tutorial I did at a conference were I was also presenting on other stuff.

There was a recording and it has... checks notes: 186 views over 1 year.

Antwortete im Thread

My highly technical #OpenSCAD program to make a #3Dprint cassette belt:

// Belt length in mm when it's pulled flat and straight; half the circumference.

half_circumference = 120;
thickness = 1;

$fa = 1;
$fs = 0.5;

belt_diameter = (half_circumference * 2 * 0.95) / PI;
difference() {
cylinder(thickness, d=belt_diameter, center=true);
cylinder(thickness * 2, d=belt_diameter - thickness * 2, center=true);
};

#SepTandy#RadioShack#TRS80