Arch Reference

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

Arch Reference

Menu location
3D/BIM → Generic 3D tools → External reference
Workbenches
BIM
Default shortcut
None
Introduced in version
-
See also
None

Description

The Arch Reference tool allows you to place an object in the current document that copies its shape and colors from a Part-based object (including Arch BuildingPart) stored in another FreeCAD file. If that FreeCAD file changes, the reference object is marked to be reloaded.

Usage

  1. Press the External reference button,
  2. Press the "Choose file..." button and select an existing FreeCAD file,
  3. Select one of the included Part-based objects from the drop-down list,
  4. Press OK.

Options

Properties

Scripting

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

reference = makeReference([filepath], [partname], [name])

Creates a reference object named name from the object partname in the file filepath. All arguments are optional.

Example:

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