Arch: Riferimento

From FreeCAD Documentation
Revision as of 09:26, 25 November 2018 by Renatorivo (talk | contribs) (Created page with "# Premere il pulsante {{KEY|16px '''Riferimento'''}} # Premere il pulsante "Choose file..." e selezionare un file FreeCAD esistente # Selezionare...")

Riferimento

Posizione nel menu
Arch → Riferimento
Ambiente
Arch
Avvio veloce
Nessuno
Introdotto nella versione
-
Vedere anche
Parte di edificio

Descrizione

Lo strumento Riferimento consente di posizionare nel documento corrente un oggetto che copia la sua forma e i suoi colori da un oggetto basato su Part (incluso Parte di edificio) e memorizzato in un altro file di FreeCAD. Se il file di FreeCAD cambia, l'oggetto di riferimento viene contrassegnato per essere ricaricato.

Utilizzo

  1. Premere il pulsante Riferimento
  2. Premere il pulsante "Choose file..." e selezionare un file FreeCAD esistente
  3. Selezionare uno degli oggetti Part-based inclusi dall'elenco a discesa
  4. Premere OK

Options

  • The reference object can be moved and rotated, the current position will be retained after reloading the object
  • If the original object gets moved in containing file, this movement will reflect in the reference object
  • By right-clicking a Reference object in the tree view, you have the options to reload the original object, or open the containing file
  • To reference several object at once, place them inside an Arch BuildingPart
  • When turning off the Update Colors view property of the Reference, it son't reload the original colors anymore, so you can safely change them

Properties

  • DatiFile: The base file this component is built upon
  • DatiPart: The part to use from the base file
  • VistaUpdate Colors: If true, the colors from the linked file will be kept updated

Scripting

The BuildingPart tool can by used in macros and from the python console by using the following function:

makeReference ([file_path,object_name])

creates a Reference object from the given object in the given file.

Example:

import Arch
Arch.makeReference("/path/to/some/file.FSCtd","myPart")