Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

puente #523

Closed
pepeelpolllo opened this issue Dec 21, 2024 · 0 comments
Closed

puente #523

pepeelpolllo opened this issue Dec 21, 2024 · 0 comments

Comments

@pepeelpolllo
Copy link

import ezdxf

Crear un nuevo archivo de dibujo de AutoCAD

doc = ezdxf.new("R2010")
msp = doc.modelspace()

Dimensiones del puente

largo_puente = 100 # cm
ancho_puente = 10 # cm
alto_puente = 22 # cm
separacion_bases = 45 # cm

Dibujar las bases del puente

base_izquierda = [(0, 0), (0, alto_puente), (ancho_puente, alto_puente), (ancho_puente, 0)]
base_derecha = [(largo_puente, 0), (largo_puente, alto_puente),
(largo_puente - ancho_puente, alto_puente), (largo_puente - ancho_puente, 0)]

msp.add_lwpolyline(base_izquierda, close=True)
msp.add_lwpolyline(base_derecha, close=True)

Dibujar la superficie del puente

msp.add_line((ancho_puente / 2, alto_puente), (largo_puente - ancho_puente / 2, alto_puente))

Dibujar soporte entre bases

msp.add_line((ancho_puente / 2, alto_puente), (largo_puente / 2, alto_puente + separacion_bases))
msp.add_line((largo_puente - ancho_puente / 2, alto_puente), (largo_puente / 2, alto_puente + separacion_bases))

Guardar el archivo

doc.saveas("Puente_100x10x22.dxf")
print("Archivo DXF creado con éxito: Puente_100x10x22.dxf")

@JelleZijlstra JelleZijlstra closed this as not planned Won't fix, can't repro, duplicate, stale Dec 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants