various fixes, especially on Boxes.py
@ -3,7 +3,7 @@
|
||||
"""
|
||||
Upgrade MightyScape from Inkscape Extension Dialog. Made for end users
|
||||
|
||||
Extension for InkScape 1.3.2
|
||||
Extension for Inkscape 1.3.2
|
||||
Author: Mario Voigt / FabLab Chemnitz
|
||||
Mail: mario.voigt@stadtfabrikanten.org
|
||||
Date: 14.01.2024
|
||||
|
@ -9,7 +9,7 @@ from lxml import etree
|
||||
import warnings
|
||||
|
||||
"""
|
||||
Extension for InkScape 1.X
|
||||
Extension for Inkscape 1.X
|
||||
Features
|
||||
- Create SVG preview file and show it in browser. Helps to quickly evaluate line order for cutting processes
|
||||
|
||||
|
@ -50,8 +50,8 @@ class BoundingBox(inkex.EffectExtension):
|
||||
for element in self.svg.selected.values():
|
||||
self.drawBBox(element.bounding_box())
|
||||
else: #combined bbox
|
||||
#self.drawBBox(self.svg.get_selected_bbox()) #works for InkScape (1:1.0+devel+202008292235+eff2292935) @ Linux and for Windows (but with deprecation)
|
||||
#self.drawBBox(self.svg.selection.bounding_box()) #works for InkScape 1.1dev (9b1fc87, 2020-08-27)) @ Windows
|
||||
#self.drawBBox(self.svg.get_selected_bbox()) #works for Inkscape (1:1.0+devel+202008292235+eff2292935) @ Linux and for Windows (but with deprecation)
|
||||
#self.drawBBox(self.svg.selection.bounding_box()) #works for Inkscape 1.1dev (9b1fc87, 2020-08-27)) @ Windows
|
||||
bbox = inkex.BoundingBox()
|
||||
for element in self.svg.selected.values():
|
||||
if isinstance (element, inkex.ShapeElement) and element.tag != inkex.addNS('use','svg') and element.get('inkscape:groupmode') != 'layer': #bbox fails for svg:use elements and layers:
|
||||
@ -62,4 +62,4 @@ class BoundingBox(inkex.EffectExtension):
|
||||
return
|
||||
|
||||
if __name__ == '__main__':
|
||||
BoundingBox().run()
|
||||
BoundingBox().run()
|
||||
|
1
extensions/fablabchemnitz/boxes.py/ABox-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/ABox-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 300 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="174" viewBox="0 0 200 174"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="174" xlink:href="/home/zypresse/Downloads/boxes/static/samples/AgricolaInsert-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 310 B |
1
extensions/fablabchemnitz/boxes.py/AirPurifier-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="158" viewBox="0 0 200 158"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="158" xlink:href="/home/zypresse/Downloads/boxes/static/samples/AirPurifier-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 307 B |
1
extensions/fablabchemnitz/boxes.py/AllEdges-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/AllEdges-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 304 B |
1
extensions/fablabchemnitz/boxes.py/AngledBox-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/AngledBox-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 305 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="150" viewBox="0 0 200 150"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="150" xlink:href="/home/zypresse/Downloads/boxes/static/samples/AngledCutJig-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 308 B |
1
extensions/fablabchemnitz/boxes.py/Arcade-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="184" viewBox="0 0 200 184"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="184" xlink:href="/home/zypresse/Downloads/boxes/static/samples/Arcade-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 302 B |
1
extensions/fablabchemnitz/boxes.py/Atreus21-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="177" viewBox="0 0 200 177"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="177" xlink:href="/home/zypresse/Downloads/boxes/static/samples/Atreus21-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 304 B |
1
extensions/fablabchemnitz/boxes.py/BasedBox-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="160" viewBox="0 0 200 160"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="160" xlink:href="/home/zypresse/Downloads/boxes/static/samples/BasedBox-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 304 B |
1
extensions/fablabchemnitz/boxes.py/BayonetBox-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="147" viewBox="0 0 200 147"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="147" xlink:href="/home/zypresse/Downloads/boxes/static/samples/BayonetBox-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 306 B |
1
extensions/fablabchemnitz/boxes.py/BinTray-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/BinTray-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 303 B |
1
extensions/fablabchemnitz/boxes.py/BirdHouse-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/BirdHouse-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 305 B |
BIN
extensions/fablabchemnitz/boxes.py/BookHolder-back-thumb.jpg
Normal file
After Width: | Height: | Size: 5.4 KiB |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="196" viewBox="0 0 200 196"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="196" xlink:href="/home/zypresse/Downloads/boxes/static/samples/BookHolder-back-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 311 B |
After Width: | Height: | Size: 5.0 KiB |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="182" viewBox="0 0 200 182"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="182" xlink:href="/home/zypresse/Downloads/boxes/static/samples/BookHolder-minis-side-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 317 B |
BIN
extensions/fablabchemnitz/boxes.py/BookHolder-minis-thumb.jpg
Normal file
After Width: | Height: | Size: 4.0 KiB |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="133" viewBox="0 0 200 133"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="133" xlink:href="/home/zypresse/Downloads/boxes/static/samples/BookHolder-minis-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 312 B |
BIN
extensions/fablabchemnitz/boxes.py/BookHolder-thumb.jpg
Normal file
After Width: | Height: | Size: 5.4 KiB |
1
extensions/fablabchemnitz/boxes.py/BookHolder-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="223" viewBox="0 0 200 223"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="223" xlink:href="/home/zypresse/Downloads/boxes/static/samples/BookHolder-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 306 B |
1
extensions/fablabchemnitz/boxes.py/BottleTag-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/BottleTag-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 305 B |
1
extensions/fablabchemnitz/boxes.py/BreadBox-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/BreadBox-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 304 B |
BIN
extensions/fablabchemnitz/boxes.py/BrickSorter-2-thumb.jpg
Normal file
After Width: | Height: | Size: 7.1 KiB |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="133" viewBox="0 0 200 133"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="133" xlink:href="/home/zypresse/Downloads/boxes/static/samples/BrickSorter-2-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 309 B |
BIN
extensions/fablabchemnitz/boxes.py/BrickSorter-3-thumb.jpg
Normal file
After Width: | Height: | Size: 8.8 KiB |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="133" viewBox="0 0 200 133"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="133" xlink:href="/home/zypresse/Downloads/boxes/static/samples/BrickSorter-3-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 309 B |
BIN
extensions/fablabchemnitz/boxes.py/BrickSorter-4-thumb.jpg
Normal file
After Width: | Height: | Size: 4.5 KiB |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="133" viewBox="0 0 200 133"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="133" xlink:href="/home/zypresse/Downloads/boxes/static/samples/BrickSorter-4-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 309 B |
BIN
extensions/fablabchemnitz/boxes.py/BrickSorter-5-thumb.jpg
Normal file
After Width: | Height: | Size: 4.4 KiB |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="133" viewBox="0 0 200 133"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="133" xlink:href="/home/zypresse/Downloads/boxes/static/samples/BrickSorter-5-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 309 B |
BIN
extensions/fablabchemnitz/boxes.py/BrickSorter-6-thumb.jpg
Normal file
After Width: | Height: | Size: 9.0 KiB |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="133" viewBox="0 0 200 133"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="133" xlink:href="/home/zypresse/Downloads/boxes/static/samples/BrickSorter-6-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 309 B |
BIN
extensions/fablabchemnitz/boxes.py/BrickSorter-thumb.jpg
Normal file
After Width: | Height: | Size: 12 KiB |
1
extensions/fablabchemnitz/boxes.py/BrickSorter-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="133" viewBox="0 0 200 133"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="133" xlink:href="/home/zypresse/Downloads/boxes/static/samples/BrickSorter-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 307 B |
1
extensions/fablabchemnitz/boxes.py/BurnTest-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="150" viewBox="0 0 200 150"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="150" xlink:href="/home/zypresse/Downloads/boxes/static/samples/BurnTest-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 304 B |
1
extensions/fablabchemnitz/boxes.py/CanStorage-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="117" viewBox="0 0 200 117"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="117" xlink:href="/home/zypresse/Downloads/boxes/static/samples/CanStorage-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 306 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="123" viewBox="0 0 200 123"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="123" xlink:href="/home/zypresse/Downloads/boxes/static/samples/CanStorageAA-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 308 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="150" viewBox="0 0 200 150"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="150" xlink:href="/home/zypresse/Downloads/boxes/static/samples/CardBox-detail-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 310 B |
1
extensions/fablabchemnitz/boxes.py/CardBox-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="133" viewBox="0 0 200 133"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="133" xlink:href="/home/zypresse/Downloads/boxes/static/samples/CardBox-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 303 B |
1
extensions/fablabchemnitz/boxes.py/CardHolder-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="161" viewBox="0 0 200 161"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="161" xlink:href="/home/zypresse/Downloads/boxes/static/samples/CardHolder-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 306 B |
1
extensions/fablabchemnitz/boxes.py/Castle-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="166" viewBox="0 0 200 166"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="166" xlink:href="/home/zypresse/Downloads/boxes/static/samples/Castle-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 302 B |
1
extensions/fablabchemnitz/boxes.py/ClosedBox-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/ClosedBox-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 305 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/CoffeeCapsuleHolder-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 315 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/CoinBankSafe-closed-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 315 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/CoinBankSafe-open-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 313 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="150" viewBox="0 0 200 150"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="150" xlink:href="/home/zypresse/Downloads/boxes/static/samples/CoinBankSafe-pins-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 313 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/CoinBankSafe-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 308 B |
1
extensions/fablabchemnitz/boxes.py/CoinDisplay-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/CoinDisplay-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 307 B |
After Width: | Height: | Size: 5.6 KiB |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="147" viewBox="0 0 200 147"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="147" xlink:href="/home/zypresse/Downloads/boxes/static/samples/CompartmentBox-closed-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 317 B |
BIN
extensions/fablabchemnitz/boxes.py/CompartmentBox-lid-thumb.jpg
Normal file
After Width: | Height: | Size: 5.6 KiB |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="149" viewBox="0 0 200 149"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="149" xlink:href="/home/zypresse/Downloads/boxes/static/samples/CompartmentBox-lid-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 314 B |
BIN
extensions/fablabchemnitz/boxes.py/CompartmentBox-thumb.jpg
Normal file
After Width: | Height: | Size: 5.8 KiB |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/CompartmentBox-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 310 B |
1
extensions/fablabchemnitz/boxes.py/ConcaveKnob-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="125" viewBox="0 0 200 125"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="125" xlink:href="/home/zypresse/Downloads/boxes/static/samples/ConcaveKnob-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 307 B |
1
extensions/fablabchemnitz/boxes.py/Console-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="158" viewBox="0 0 200 158"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="158" xlink:href="/home/zypresse/Downloads/boxes/static/samples/Console-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 303 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="153" viewBox="0 0 200 153"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="153" xlink:href="/home/zypresse/Downloads/boxes/static/samples/Console2-backwall-detail-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 320 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="123" viewBox="0 0 200 123"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="123" xlink:href="/home/zypresse/Downloads/boxes/static/samples/Console2-panel-detail-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 317 B |
1
extensions/fablabchemnitz/boxes.py/Console2-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="162" viewBox="0 0 200 162"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="162" xlink:href="/home/zypresse/Downloads/boxes/static/samples/Console2-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 304 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="134" viewBox="0 0 200 134"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="134" xlink:href="/home/zypresse/Downloads/boxes/static/samples/ConsoleArcadeStickBack-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 318 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="163" viewBox="0 0 200 163"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="163" xlink:href="/home/zypresse/Downloads/boxes/static/samples/ConsoleArcadeStickFront-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 319 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="183" viewBox="0 0 200 183"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="183" xlink:href="/home/zypresse/Downloads/boxes/static/samples/ConsoleArcadeStickInside-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 320 B |
1
extensions/fablabchemnitz/boxes.py/Desksign-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/Desksign-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 304 B |
1
extensions/fablabchemnitz/boxes.py/DiceBox-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="174" viewBox="0 0 200 174"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="174" xlink:href="/home/zypresse/Downloads/boxes/static/samples/DiceBox-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 303 B |
BIN
extensions/fablabchemnitz/boxes.py/DiceTower-thumb.jpg
Normal file
After Width: | Height: | Size: 4.4 KiB |
1
extensions/fablabchemnitz/boxes.py/DiceTower-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="224" viewBox="0 0 200 224"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="224" xlink:href="/home/zypresse/Downloads/boxes/static/samples/DiceTower-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 305 B |
1
extensions/fablabchemnitz/boxes.py/DiscRack-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/DiscRack-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 304 B |
1
extensions/fablabchemnitz/boxes.py/Dispenser-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/Dispenser-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 305 B |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 5.5 KiB |
1
extensions/fablabchemnitz/boxes.py/Display-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="233" viewBox="0 0 200 233"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="233" xlink:href="/home/zypresse/Downloads/boxes/static/samples/Display-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 303 B |
1
extensions/fablabchemnitz/boxes.py/DisplayCase-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="150" viewBox="0 0 200 150"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="150" xlink:href="/home/zypresse/Downloads/boxes/static/samples/DisplayCase-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 307 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/DisplayShelf-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 308 B |
1
extensions/fablabchemnitz/boxes.py/DividerTray-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="143" viewBox="0 0 200 143"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="143" xlink:href="/home/zypresse/Downloads/boxes/static/samples/DividerTray-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 307 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="147" viewBox="0 0 200 147"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="147" xlink:href="/home/zypresse/Downloads/boxes/static/samples/DoubleFlexDoorBox-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 313 B |
1
extensions/fablabchemnitz/boxes.py/DrillBox-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="125" viewBox="0 0 200 125"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="125" xlink:href="/home/zypresse/Downloads/boxes/static/samples/DrillBox-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 304 B |
1
extensions/fablabchemnitz/boxes.py/DrillBoxes-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="142" viewBox="0 0 200 142"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="142" xlink:href="/home/zypresse/Downloads/boxes/static/samples/DrillBoxes-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 306 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="153" viewBox="0 0 200 153"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="153" xlink:href="/home/zypresse/Downloads/boxes/static/samples/DrillStand-assembly-1-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 317 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="154" viewBox="0 0 200 154"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="154" xlink:href="/home/zypresse/Downloads/boxes/static/samples/DrillStand-assembly-2-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 317 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="153" viewBox="0 0 200 153"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="153" xlink:href="/home/zypresse/Downloads/boxes/static/samples/DrillStand-assembly-3-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 317 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="154" viewBox="0 0 200 154"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="154" xlink:href="/home/zypresse/Downloads/boxes/static/samples/DrillStand-assembly-4-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 317 B |
1
extensions/fablabchemnitz/boxes.py/DrillStand-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="179" viewBox="0 0 200 179"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="179" xlink:href="/home/zypresse/Downloads/boxes/static/samples/DrillStand-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 306 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="133" viewBox="0 0 200 133"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="133" xlink:href="/home/zypresse/Downloads/boxes/static/samples/ElectronicsBox-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 310 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="356" viewBox="0 0 200 356"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="356" xlink:href="/home/zypresse/Downloads/boxes/static/samples/EuroRackSkiff-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 309 B |
1
extensions/fablabchemnitz/boxes.py/FanHole-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="203" viewBox="0 0 200 203"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="203" xlink:href="/home/zypresse/Downloads/boxes/static/samples/FanHole-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 303 B |
BIN
extensions/fablabchemnitz/boxes.py/FatBallDispenser-thumb.jpg
Normal file
After Width: | Height: | Size: 6.3 KiB |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="150" viewBox="0 0 200 150"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="150" xlink:href="/home/zypresse/Downloads/boxes/static/samples/FatBallDispenser-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 312 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="118" viewBox="0 0 200 118"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="118" xlink:href="/home/zypresse/Downloads/boxes/static/samples/FilamentSpool-2-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 311 B |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="179" viewBox="0 0 200 179"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="179" xlink:href="/home/zypresse/Downloads/boxes/static/samples/FilamentSpool-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 309 B |
1
extensions/fablabchemnitz/boxes.py/FillTest-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/FillTest-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 304 B |
1
extensions/fablabchemnitz/boxes.py/FlexBook-2-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="150" viewBox="0 0 200 150"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="150" xlink:href="/home/zypresse/Downloads/boxes/static/samples/FlexBook-2-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 306 B |
1
extensions/fablabchemnitz/boxes.py/FlexBook-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/FlexBook-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 304 B |
1
extensions/fablabchemnitz/boxes.py/FlexBox-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/FlexBox-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 303 B |
1
extensions/fablabchemnitz/boxes.py/FlexBox2-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/FlexBox2-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 304 B |
1
extensions/fablabchemnitz/boxes.py/FlexBox3-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/FlexBox3-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 304 B |
1
extensions/fablabchemnitz/boxes.py/FlexBox4-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/FlexBox4-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 304 B |
1
extensions/fablabchemnitz/boxes.py/FlexBox5-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="200" viewBox="0 0 200 200"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="200" xlink:href="/home/zypresse/Downloads/boxes/static/samples/FlexBox5-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 304 B |
1
extensions/fablabchemnitz/boxes.py/FlexTest-thumb.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg width="200" height="129" viewBox="0 0 200 129"><g inkscape:groupmode="layer" inkscape:label="Image" id="gImage"><image width="200" height="129" xlink:href="/home/zypresse/Downloads/boxes/static/samples/FlexTest-thumb.jpg" id="image"/></g></svg>
|
After Width: | Height: | Size: 304 B |