AutoCAD add-ons to draw building structures.
Currently, prompt messages, command names and comments in the code are available in Spanish only.
The scripts work in AutoCAD 2006 (and I suppose they do in newer versions too).
Installation depends on each one's way of organizing files.
- If all the AutoCAD projects are stored in the same folder, then
- copy the
cadstructs
directory and theinstall.bat
script to that folder; - run
install.bat
; - delete
install.bat
, if you want.
- copy the
- If the projects are scattered all over the hard disk, then
- copy the
cadstructs
directory to theSupport
folder of AutoCAD (usually%APPDATA%\Autodesk\
...\Support
); - run
APPLOAD
on the AutoCAD command prompt (or go toTools > Load Application...
) - press
Contents...
Add...
- look for
cadstructs\main.lsp
; - double click
main.lsp
or pressAdd
; Close
the last two windows and that's it.
- copy the
install.bat
adds the AutoLISP files to a localacaddoc.lsp
;cadstructs
contains the script files:activex.lsp
loads the supporting code that enables the ActiveX functions in AutoLISP. ActiveX is needed for working with dynamic blocks, and allows communicating different documents between each other;custom-commands.lsp
declares the commands;subroutines.lsp
declares several functions which are called by the custom commands;main.lsp
loads all the other AutoLISP scripts.
En español (I warned you).
-
NOMBRAR
recibe un tipo de elemento estructural y genera textos de la formaprefijo+número
, con elprefijo
generado a partir del referido elemento estructural. Por ejemplo, si el elemento estructural indicado esColumna
, entonces el comando genera textos de la formaC1
,C2
,C3
... etc.Este comando pregunta también por un número inicial, y una rotación, de no encontrar un estilo de texto adecuado.
-
LOSA
recibe un número inicial y genera losas, incrementando automáticamente la numeración. -
COLAP
intercambia columnas con apeos, y apeos con columnas, aplica también a los nombres de los elementos, por ejemplo,C123
se convierte enA123
. -
TITULAR
permite insertar el título de las plantas con el estilo de texto adecuado, creándolo cuando dicho estilo no está definido.
Estos comandos se ajustan a un flujo de trabajo muy específico y ponen cada
elemento estructural en una capa determinada. Ejemplo: las columnas y sus
nombres van en una capa Columnas
, los apeos y sus nombres, en una capa
Apeos
, etc. En forma similar, los nombres de los elementos tienen un estilo de
texto determinado, que es diferente al de los títulos.