Mario Voigt
4175b377bd
's/fablabchemnitz_//g' *.inx;sed -i 's/>fablabchemnitz_/>/g' *.inx;sed -i 's/fablabchemnitz_//g' *.py; rename 's/fablabchemnitz_//g' *.svg"
141 lines
5.5 KiB
Python
141 lines
5.5 KiB
Python
#! /usr/bin/env python3
|
|
#
|
|
# Este script dibuja el perfil exterior de corte la caja en un solo
|
|
# path cerrado y añade despues los otros flejes necesarios con colores
|
|
# diferentes para identificarlos.
|
|
# rojo > para cortes y perfil exterior
|
|
# azul > para hendidos
|
|
# verde > para taladros
|
|
# amarillo > medios cortes
|
|
#
|
|
# TODO:
|
|
# agregar opción de dibujo en cm/in
|
|
# mover dibujo al centro del documento
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
|
|
__version__ = "0.2"
|
|
|
|
import inkex
|
|
|
|
class GenerarEstuche(inkex.EffectExtension):
|
|
|
|
def add_arguments(self, pars):
|
|
pars.add_argument("--width", type=float, default=25.0, help="Ancho de la caja")
|
|
pars.add_argument("--height", type=float, default=25.0, help="Alto de la caja")
|
|
pars.add_argument("--depth", type=float, default=25.0, help="Largo de la caja")
|
|
pars.add_argument("--glue_tab", type=float, default=5.0, help="Ancho pestaña de engomado")
|
|
pars.add_argument("--unit", default="mm", help="Tipo de unidades")
|
|
|
|
def effect(self):
|
|
centro_ancho_documento = self.svg.unittouu(self.document.getroot().get('width'))/2
|
|
centro_alto_documento = self.svg.unittouu(self.document.getroot().get('height'))/2
|
|
|
|
medida_pestana1=5
|
|
medida_pestana2=1
|
|
medida_pestana3=4
|
|
medida_pestana4=3
|
|
|
|
ancho_caja = self.svg.unittouu(str(self.options.width) + self.options.unit)
|
|
alto_caja = self.svg.unittouu(str(self.options.height) + self.options.unit)
|
|
largo_caja = self.svg.unittouu(str(self.options.depth) + self.options.unit)
|
|
ancho_pestana_cola = self.svg.unittouu(str(self.options.glue_tab) + self.options.unit)
|
|
|
|
if self.options.unit=="cm":
|
|
medida_pestana1=0.5
|
|
medida_pestana2=0.1
|
|
medida_pestana3=0.4
|
|
medida_pestana3=0.3
|
|
|
|
if self.options.unit=='in':
|
|
medida_pestana1=0.196
|
|
medida_pestana2=0.039
|
|
medida_pestana3=0.157
|
|
medida_pestana3=0.118
|
|
|
|
medida1_pestanas_laterales=self.svg.unittouu(str(medida_pestana1) + self.options.unit)
|
|
medida2_pestanas_laterales=self.svg.unittouu(str(medida_pestana2) + self.options.unit)
|
|
medida3_pestanas_laterales=self.svg.unittouu(str(medida_pestana3) + self.options.unit)
|
|
medida4_pestanas_laterales=self.svg.unittouu(str(medida_pestana4) + self.options.unit)
|
|
|
|
id_caja = self.svg.get_unique_id('estuche-faja')
|
|
group = self.svg.get_current_layer().add(inkex.Group(id=id_caja))
|
|
estilo_linea_cortes = {'stroke': '#FF0000', 'fill': 'none', 'stroke-width': str(self.svg.unittouu('1px'))}
|
|
estilo_linea_hendidos = {'stroke': '#0000FF', 'fill': 'none', 'stroke-width': str(self.svg.unittouu('1px'))}
|
|
estilo_linea_taladros = {'stroke': '#00FF00', 'fill': 'none', 'stroke-width': str(self.svg.unittouu('1px'))}
|
|
estilo_linea_medioscortes = {'stroke': '#00FFFF', 'fill': 'none', 'stroke-width': str(self.svg.unittouu('1px'))}
|
|
|
|
# line.path --> M = coordenadas absolutas
|
|
# line.path --> l = dibuja una linea desde el punto actual a las coordenadas especificadas
|
|
# line.path --> c = dibuja una curva beizer desde el punto actual a las coordenadas especificadas
|
|
# line.path --> q = dibuja un arco desde el punto actual a las coordenadas especificadas usando un punto como referencia
|
|
# line.path --> Z = cierra path
|
|
|
|
#Perfil Exterior de la caja
|
|
line = group.add(inkex.PathElement(id=id_caja + '-perfil-exterior'))
|
|
line.path = [
|
|
['M', [0, 0]],
|
|
['l', [ancho_caja,0]],
|
|
['l', [largo_caja,0]],
|
|
['l', [ancho_caja,0]],
|
|
['l', [largo_caja,0]],
|
|
['l', [0,alto_caja]],
|
|
['l', [0-(largo_caja),0]],
|
|
['l', [0-(ancho_caja),0]],
|
|
['l', [0-largo_caja,0]],
|
|
['l', [0-ancho_caja,0]],
|
|
['l', [0-ancho_pestana_cola,0-ancho_pestana_cola]],
|
|
['l', [0,0-(alto_caja-(ancho_pestana_cola*2))]],
|
|
['Z', []]
|
|
]
|
|
line.style = estilo_linea_cortes
|
|
|
|
#Hendidos
|
|
line = group.add(inkex.PathElement(id=id_caja + '-perfil-hendidos-1'))
|
|
line.path = [
|
|
['M', [0,0]],
|
|
['l', [0,alto_caja]],
|
|
['Z', []]
|
|
]
|
|
line.style = estilo_linea_hendidos
|
|
|
|
line = group.add(inkex.PathElement(id=id_caja + '-perfil-hendidos-2'))
|
|
line.path = [
|
|
['M', [ancho_caja,0]],
|
|
['l', [0,alto_caja]],
|
|
['Z', []]
|
|
]
|
|
line.style = estilo_linea_hendidos
|
|
|
|
line = group.add(inkex.PathElement(id=id_caja + '-perfil-hendidos-3'))
|
|
line.path = [
|
|
['M', [ancho_caja+largo_caja,0]],
|
|
['l', [0,alto_caja]],
|
|
['Z', []]
|
|
]
|
|
line.style = estilo_linea_hendidos
|
|
|
|
line = group.add(inkex.PathElement(id=id_caja + '-perfil-hendidos-4'))
|
|
line.path = [
|
|
['M', [ancho_caja+ancho_caja+largo_caja,0]],
|
|
['l', [0,alto_caja]],
|
|
['Z', []]
|
|
]
|
|
line.style = estilo_linea_hendidos
|
|
|
|
|
|
if __name__ == '__main__':
|
|
GenerarEstuche().run() |