If you dare to endanger your own Karma by an innocent cheat, you can seek help through a useful tool, the programmers CAD modeler OpenSCAD. In this application, enter the following script and generate the 3D model by pressing F6.
// podle: UlrichB1 $fn=100; S=10; // size in mm // "C" "A" "D" - modelled letters intersection() { M("A", S); // "A" translate([0, S, 0])rotate([90, 0, 0]) M("D", S); // "D" translate([-S/2, S/2, 0])rotate([90, 0, 90])M("C", S); // "C" } module M(t,s) { resize([s, s, s])linear_extrude(1) text(t, halign="center", font="Raavi:style=Bold"); }
Then you can export your model e.g. to the STL format - for 3D print or for further processing in another CAD application. If you want to get it into AutoCAD, you can use the conversion service STL2DWG. A sample AutoCAD model can be downloaded from the CAD/BIM block library, or viewed interactively through the online viewer A360:
The model in Fusion 360:
via Instructables and InventorGuru
No comments:
Post a Comment