Arch Survey/pt-br

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

Arch Survey

Menu location
Utils → Survey
Workbenches
BIM
Default shortcut
None
Introduced in version
-
See also
Macro FCInfo, Macro SimpleProperties

Descrição

The Arch Survey tool enters a special surveying mode, which allows you to quickly grab measurements and information from a model, and transfer that information to other applications. Once you are in Survey mode, clicking on different subelements of 3D objects gathers the following information (depending on what you click):

When such a piece of information is gathered, several things happen:

The above image shows what happens when running the survey mode.

Utilização

  1. Select the Utils → Survey option from the menu.
  2. Click on vertices, edges, faces or double-click to select whole objects.
  3. Click outside any geometry (on the background of the 3D view) to remove existing labels, print a total line in the Task dialog, and restart counting lengths and areas from zero.
  4. Press Esc or the Close button to exit survey mode and remove all the labels.

Opções

Scripting

See also: Arch API and FreeCAD Scripting Basics.

The Survey tool doesn't have a programming interface, but gathering the same information from any selected Part-based object is reproduced with the following script:

import FreeCADGui

selection = FreeCADGui.Selection.getSelectionEx()

for obj in selection:
    for element in obj.SubObjects:
        print("Area: %f", element.Area)
        print("Length: %f", element.Length)
        print("Volume: %f", element.Volume)
        print("Center of Mass: %f", element.CenterOfMass)