Arch Survey/de


Arch Survey.png Arch Survey

Menüeintrag
Arch -> Survey
Arbeitsbereich
Arch
Standardtastenkürzel
None
Siehe auch
FCInfo (macro)


Beschreibung

The survey tool enters a special surveying mode, which allows you to quickly grab measures 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, three things happen:

Arch Survey example.jpg

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

Anwendung

  1. Press the Arch Survey.png Arch Survey button
  2. Click on vertices, edges, faces or double-click to select whole objects
  3. Press ESC or the Cancel button to exit survey mode and remove all the labels.

Scripting

The Survey mode cannot be used directly from python scripts, but gathering the same information from any selected Part-based object is easy reproduced with the following script:

import FreeCADGui
selection = FreeCADGui.Selection.getSelectionEx()
for obj in selection:
   for element in obj.SubObjects:
       print "Area: ", element.Area
       print "Length: ", element.Length
       print "Volume: ", element.Volume
       print "Center of Mass: ", element.CenterOfMass 
Online version: "http://www.freecadweb.org/wiki/index.php?title=Arch_Survey/de&oldid=135448"

Navigation menu