Arch Truss/es

THIS COMMAND IS PART OF THE INTEGRATED BIM WORKBENCH IN V1.0
This page has been updated for that version.

Arquitectura Armadura

Ubicación en el Menú
Arquitectura → Armadura
Entornos de trabajo
Arquitectura
Atajo de teclado por defecto
Ninguno
Introducido en versión
0.19
Ver también
Ninguno

Descripción

La herramienta Arquitectura Armadura construye un objeto [1], bien a partir de un objeto lineal seleccionado (mientas que una Línea de Borrador o Boceto), o bien desde cero, si no hay ningún objeto seleccionado al lanzar el comando.

Utilización

Crear a partir de un objeto seleccionado

  1. Use a workbench of your choice to create a single line
  2. Select that line
  3. Press the Truss button
  4. Adjust the truss properties to your liking

Crear desde cero

  1. Make sure nothing is selected
  2. Press the Truss button
  3. Click in the 3D view to define a first point, or manually enter X, Y and Z coordinates
  4. Click in the 3D view to define a second point, or manually enter X, Y and Z coordinates
  5. Adjust the truss properties to your liking

Propiedades

Datos

Archivos de guión

The Truss tool can be used in macros and from the Python console by using the following function:

Truss = makeFence([baseobj])

Ejemplo:

import FreeCAD
import Draft
import Arch

p1 = FreeCAD.Vector(0,0,0)
p2 = FreeCAD.Vector(2000,0,0)
baseline = Draft.makeLine(p1,p2)
truss = Arch.makeTruss(baseline)
truss.HeightStart = 200
truss.HeightEnd = 400
# adjust other needed properties