Difference between revisions of "Makerspace 3D and 2D"
(Created page with "Leo's notes about 2D and 3D design and tools. = 2D - Laser Cutting and engraving = Life cycle: # Design the 2D object (Inkscape, or any graphical editor) # Export to a compat...") |
|||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
Leo's notes about 2D and 3D design and tools. |
Leo's notes about 2D and 3D design and tools. |
||
= Modes = |
|||
= 2D - Laser Cutting and engraving = |
|||
Link to [[Laser CNC]] notes |
|||
Life cycle: |
|||
# Design the 2D object (Inkscape, or any graphical editor) |
|||
# Export to a compatible format: Gcode or DXF |
|||
# Send to the laser cutter |
|||
== Inkscape for Laser cutting == |
|||
Good and short tutorial videos: |
|||
* [https://www.youtube.com/watch?v=Dwqlf5iirbM Laser Cutting With Inkscape Tutorial] |
|||
Notes: about Inkscape and Linux |
|||
* There is an extension for Gcode export. |
|||
* It appears to be written for Python 2, while the newest Inkscape appears to be running Python 3. There might be problems with running the extensions. Change the default version for python to be 2.7 like this: |
|||
** Open Inkscape preferences, usually here: <code>~/.config/inkscape/preferences.xml</code> |
|||
** Search for |
|||
<group |
|||
id="extensions" |
|||
… |
|||
org.ekips.filter.gears.pitch="20" |
|||
org.ekips.filter.gears.angle="20" /> |
|||
** Change to - add the following: |
|||
<group |
|||
id="extensions" |
|||
python-interpreter="/usr/bin/python2.7" |
|||
… |
|||
org.ekips.filter.gears.pitch="20" |
|||
org.ekips.filter.gears.angle="20" /> |
|||
** More info here: https://wiki.inkscape.org/wiki/index.php/Extension_Interpreters |
|||