TechDraw DetailView: Difference between revisions

From FreeCAD Documentation
(more updates)
(update image to current state)
Line 24: Line 24:
The Detail tool creates a view of small area of an existing view.
The Detail tool creates a view of small area of an existing view.


[[Image:ViewDetail.png|thumb|left|Detail view with circular viewbox of an existing view]]
</translate>
[[Image:ViewDetail.png]]
<translate>
<!--T:11-->
{{Caption|Square window showing a detail of an existing view}}


==Usage== <!--T:3-->
==Usage== <!--T:3-->

Revision as of 14:28, 25 March 2020

TechDraw DetailView

Menu location
TechDraw → Insert Detail View
Workbenches
TechDraw
Default shortcut
None
Introduced in version
-
See also
Insert View, Insert Projection Group

Description

The Detail tool creates a view of small area of an existing view.

Detail view with circular viewbox of an existing view

Usage

  1. Select a part view in the 3D window or tree.
  2. If you have multiple drawing pages in your document, you will also need to select the desired page in the tree.
  3. Press the Insert Detail View button to create the section view.
  4. select the created view in the tree and change its properties DataAnchor Point, DataRadius and/or DataScale to adjust the position, size and magnification of the base view area that should be displayed in the detail view.

The detail view can be displayed within a round or square viewbox. This is controlled by the preferences setting Detail View Outline Shape.

Properties

  • DataBaseView: The view on which this Detail view is based.
  • DataAnchor Point: The center of the Detail view within the DataBaseView.
  • DataRadius: The size of the area in the DataBaseView that is displayed in the Detail view.
  • DataScale: Magnification level.
  • DataReference: An identifier to indicate the area of the DataBaseView that is displayed.

Note: Detail inherits all applicable DataBaseView properties.

Scripting

See also: TechDraw API and FreeCAD Scripting Basics.

The New Detail tool can be used in macros and from the Python console by using the following functions:

Detail = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewDetail','Detail')
...TBA

Notes