Arch Referenz

From FreeCAD Documentation
Revision as of 21:39, 29 January 2019 by Le Loup (talk | contribs) (Created page with "==Optionen==")

Arch Reference

Menu location
Arch → Reference
Workbenches
Arch-Arbeitsbereich
Default shortcut
None
Introduced in version
-
See also
Arch Gebäudeteil

Beschreibung

Das Referenz-Werkzeug erlaubt es, im aktuellen Dokument ein Objekt zu platzieren, das die Form und Farben eines in einer anderen Datei gespeicherten Part-basierten Objekts (einschließlich Arch Gebäudeteil) kopiert. Wenn sich die FreeCAD-Datei ändert, wird das Objekt für eine Aktualisierung vorgemerkt.

Anwendung

  1. Drücke die Schaltfläche Arch Referenz
  2. Drücke die Schaltfläche "Wähle Datei..." und wähle eine vorhandene FreeCAD-Datei
  3. Wähle eins der enthaltenen Part-basierten Objekte aus der Drop-Down-Liste
  4. Drücke OK

Optionen

  • 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

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

Scripting

The Reference 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")