Arch: Crea un foglio di calcolo Ifc

From FreeCAD Documentation
Revision as of 08:14, 6 April 2019 by Renatorivo (talk | contribs)

Crea un foglio di calcolo Ifc

Posizione nel menu
Arch → Utilità → Crea un foglio di calcolo Ifc...
Ambiente
Arch
Avvio veloce
Nessuno
Introdotto nella versione
-
Vedere anche
File IFC, Espola Ifc

Descrizione

This tool creates a spreadsheet to store IFC properties of an object.

How to use

  1. Select an object.
  2. Go to Arch → Utilities → Create IFC spreadsheet.

Script

Vedere anche: Arch API e Nozioni di base sugli script di FreeCAD.

Lo strumento può essere utilizzato nelle macro e dalla console Python tramite la seguente funzione:

spreadsheet = makeIfcSpreadsheet(archobj=None)
  • Crea un oggetto spreadsheet. Optionalmente può essere dato un archobj.

Example:

import FreeCAD, Draft, Arch

Line = Draft.makeWire([FreeCAD.Vector(0, 0, 0), FreeCAD.Vector(2000, 2000, 0)])
Wall = Arch.makeWall(Line, width=150, height=3000)
FreeCAD.ActiveDocument.recompute()

spreadsheet = Arch.makeIfcSpreadsheet(Wall)