Arch Reference/de: Difference between revisions

From FreeCAD Documentation
(Created page with "==Anwendung==")
(Created page with "# Drücke die Schaltfläche {{Button|16px '''Arch Referenz'''}} # Drücke die Schaltfläche "Wähle Datei..." und wähle eine vorhandene FreeCAD-D...")
Line 17: Line 17:
==Anwendung==
==Anwendung==


# Press the {{KEY|[[Image:Arch Reference.png|16px]] '''Arch Reference'''}} button
# Drücke die Schaltfläche {{Button|[[Image:Arch Reference.png|16px]] '''Arch Referenz'''}}
# Press the "Choose file..." button and select an existing FreeCAD file
# Drücke die Schaltfläche "Wähle Datei..." und wähle eine vorhandene FreeCAD-Datei
# Select one of the included Part-based objects from the drop-down list
# Wähle eins der enthaltenen Part-basierten Objekte aus der Drop-Down-Liste
# Press '''OK'''
# Drücke [[Button|OK]]


==Options==
==Options==

Revision as of 21:39, 29 January 2019

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

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

  • 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")