Erweiterte Suche
Suchergebnisse
476 Ergebnisse gesamt
Metallwerkstatt
Holzwerkstatt
Wasserstrahlschneidwerkstatt
Grafikwerkstatt
Elektronik/3D-Druck Werkstatt
Hier zu finden: 3D-Drucker Lasercutter Tools wie Oszilloskop, Lötkolben, Messgeräte, etc. diverse Arbeitsplätze
Textilwerkstatt
Schreib uns eine Nachricht an textil [at] fablabchemnitz [punkt] de Kurzlink: https://y.stadtfabrikanten.org/textil
Inkscape for Makers
Inventar und Handbücher
Außer Haus Projekte
MightyScape Extension Collection
Get MightyScape by Git Primary: Readme + Download + Issues (Github) Secondary: Readme + Download (Gitea) Alternative downloads available. Check the README.md on Git
Öffentliche & allgemeine Infos
Projekte und Anleitungen
Drechseln
Ätzen und Entwickeln von Platinen
Projekte und Anleitungen
Wissenswertes
Different stuff
HowTo's
In-house Extensions
Projekte und Bauanleitungen
Wissenswertes
Inventar und Handbücher
Allgemeine Informationen
Wissenswertes
Desktop-Fräse Kosy A3
CNC-Portalfräse "Karlowitz"
Eine ältere, aber funktionierende DIY CNC-Fräse mit Estlcam und PlanetCNC Steuerung. Link zur Cloud-Bibliothek
Laserschneiden und -gravieren
Unser Lasersystem ist ein Epilog Zing 24 (6030) Markanter Intro Blog Post vom 05.01.2025 Projekt-Repository: Gitea | Codeberg
3D-Drucken
3D-Scannen
Plastefüchse (Precious Plastic)
Vom Etikettenschild zum Objekt
Teedy Installation and Configuration
About Teedy Document Management System Welcome to the unofficial documentation space for Teedy. Teedy (prior "Sismics Docs") is an open source enterprise content management system (ECM) and/or document management system (DMS) with a lot of features and a mode...
Teedy File and Document Processing
Teedy API Scripts / database queries
SVG Werkzeuge
Gears
Streaks and Blobs
Puzzles/Mazes/Nests
Scales
Papercraft Flatteners
Paper/Cardboard Boxes
Origami Patterns
Finger-jointed/Tabbed Boxes
Animation
Colors/Gradients/Filters
Music
Text
Various
Dimensioning/Measuring
vpypetools
Zylinder auf Zack (kleine Holzarbeit)
Eine kleine Rolle aus Holz, die mit einem Gummi gespannt wird und ziemlich schnell rollen kann 😁 Fotos Stückliste 1x Stab 12 cm x Ø3 mm (100er Packung Schaschlikspieße halbieren und stumpf schleifen) 1x Zylinder Ø7 x Ø32 mm, 50 mm breit - mit 2 x 5 m...
DIY Vitrine a la FabLab Chemnitz
Diese Vitrine, bestehend aus dem Buchenholzbausystem, 3D-Druck Elementen und Glasplatten, war eines der ersten DIY-Projekte (entstanden 2016) im FabLab Chemnitz. Mit dem Umzug in die Stadtwirtschaft ist sie nicht wieder auferstanden.
Kugel-Flip-Flop
Das haben wir für das Timster Timtorial 2019 mit Kindern gebaut. Leider ist das Video nicht mehr online verfügbar.
Couch Tisch 2.0 - die Wiedergeburt
Dieser Couch Tisch entstand 2018, weil der Originaltisch kaputt ging - Mario stellte sich doof an ;o). Allerdings überlebte die obere Platte. So bot es sich an einen neuen Tisch daraus zu bauen. Dafür hat Mathieu - ein Mitglied von uns - seine Idee verwirkli...
Modernisierung Drechselbank
Im Jahr 2017 haben wir aus einer Werkstattauflösung eine alte Drehbank erstanden. Diese stammt aus der Manufaktur "Kombinat Eigenbau Ost". Unter anderem wurde ihr ein CNC-Drehbackenfutter verpasst. Da hierbei ein paar Sicherheitstücken vorhanden sind, habe...
Eingangsampel - Hereinspaziert!
Entstanden im Jahr 2017 ist dieses kleine Ampelreaktivierungsprojekt. Eine ausgediente Fußgängerampel schmückte den Eingang zur Philippstraße und konnte von innen manuell an- und ausgeschalten werden. Für besondere Verwirrungseffekte können wir beide Phasen ...
Textilien - Namen und Zusammensetzung
Textil Beschreibung (Quelle: Wikipedia) Viskose Viskose ist eine chemisch hergestellte Faser, die optisch der Baumwolle ähnelt. Trotz des chemischen Verfahrens ist es falsch, Viskose als Kunstfaser zu bezeichnen, da sie aus natürlicher Cellu...
Lint and validate *.inx files
For validation purposes of all inx files we can use the following step: sudo apt-get update && apt-get install libxml2-utils # install require stuff cd ~/.config/inkscape/extensions/mightyscape-1.2/extensions/fablabchemnitz ./000_validate.sh # does not ...
About Inkscape extensions in general
Extension calls are possible in different ways. You may find some description at http://wiki.inkscape.org/wiki/index.php/Extension_requirements. Inkscape can run extension from a lot of different interpreters and executors like Python, Ruby, Perl, binary execu...
To Absolute
This extension simply transform paths from relative coordinates to absolute coordinate. The path's "d" attribute will be reconfigured to get uppercase command letters like A C M Z V H L instead of a c m z v h l.
Convert Vertical/Horizontal To Line
This extension converts an SVG path's d attribute the following way: find each V (vertical line) and each H (horizontal line) and replace it by a generic line (L type). A lot of extensions do not work with V and H, but with L commands. So this is just a helper...
Longest Continuous Path
Source of documentation: https://github.com/Daekkyn/inkscapeOptimizePath An Inkscape extension that tries to make the longest continuous paths. It converts the paths to a graph, converts the graph to an Eulerian graph and finds an Eulerian cycle. It was writt...
Reverse Order Of Subpaths
Reverse order of subpaths (combined paths) without changing the direction of each subpath. When drawing paths and combining these the order of the subpaths is from the last to the first drawn. This extension reverse the order of the subpaths and thus the ...
Move Path Node
Extension to change starting / end node of a path and visualize it by dots and numbers. You can also use this extension as a trimmer for open paths. It is additionally highly useful when using the function to map text to path. By moving the node, the mapped pa...
Duplicate + Reverse + Join
An extension to effectively convert a single line svg font to a stick font by duplicating, reversing and joining each selected path and subpath. Read more on http://cutlings.wasbo.net/single-line-font-to-stick-font
Circle Tangents (Replaced by Snap Objects Feature)
1. Draw some circles 2. Apply the extension You can have two different outputs: If you want to get sort of tangents at the path's point handles instead you can also try to run the extension Draw Handles
Chain Paths
Source of documentation: https://github.com/fablabnbg/inkscape-chain-paths An inkscape extension to combine paths. Like really combining path snippets into longer paths. The stock inkscape path operation "combine" does not do that. It only creates a single pa...
Layer Clip
Original idea from http://www.pernsteiner.org/inkscape/layerclip/ Ported to Inkscape 1.0 by https://gitlab.com/jczapla79/inkscape-extension-layer-clip Fixed and ported to Inkscape 1.2+ by Mario Voigt Usage See an example with screenshots Clip contai...
About/Upgrade MightyScape
Table Support
Source: https://sourceforge.net/projects/inkscape-tables/files/ Updated to be compatible with InkScape 1.2+ The functions "Duplicate Table" and "Fit Guides" options were removed due to defectness Possible actions to perform Create Add Colums Row...