TechDraw VerticalExtentDimension: Difference between revisions

From FreeCAD Documentation
(TechDraw_Dimension_VExtent.svg->TechDraw_Dimension_Vertical_Extent.svg)
No edit summary
Line 4: Line 4:
{{Docnav
{{Docnav
|[[TechDraw_Dimension_Horizontal_Extent|New Horizontal Extent]]
|[[TechDraw_Dimension_Horizontal_Extent|New Horizontal Extent]]
|[[TechDraw_Dimension_Landmark |New Landmark Dimension]]
|[[TechDraw_Dimension_Landmark|New Landmark Dimension]]
|[[TechDraw_Module|TechDraw]]
|[[TechDraw_Module|TechDraw]]
|IconL=TechDraw_Dimension_Horizontal_Extent.svg
|IconL=TechDraw_Dimension_Horizontal_Extent.svg
Line 15: Line 15:
|Name=TechDraw Dimension Vertical Extent
|Name=TechDraw Dimension Vertical Extent
|MenuLocation=TechDraw → Dimension Vertical Extent
|MenuLocation=TechDraw → Dimension Vertical Extent
|Workbenches=[[TechDraw Module|TechDraw]]
|Workbenches=[[TechDraw_Module|TechDraw]]
|Version=0.19
|Version=0.19
|SeeAlso=[[TechDraw Dimension Length|TechDraw Dimension Length]], [[TechDraw Dimension Horizontal Extent|TechDraw Dimension Horizontal Extent]]
|SeeAlso=[[TechDraw_Dimension_Length|TechDraw Dimension Length]], [[TechDraw_Dimension_Horizontal Extent|TechDraw Dimension Horizontal Extent]]
}}
}}


Line 35: Line 35:
<!--T:10-->
<!--T:10-->
# Select a View or a collection of Edges in a View.
# Select a View or a collection of Edges in a View.
# Press the {{Button|[[Image:TechDraw_Dimension_Vertical_Extent.svg|16px]] [[TechDraw Dimension Vertical Extent|Dimension Vertical Extent]]}} button
# Press the {{Button|[[Image:TechDraw_Dimension_Vertical_Extent.svg|16px]] [[TechDraw_Dimension_Vertical Extent|Dimension Vertical Extent]]}} button
# A dimension will be added to the View. The dimension may be dragged to the desired position.
# A dimension will be added to the View. The dimension may be dragged to the desired position.


Line 41: Line 41:


<!--T:12-->
<!--T:12-->
Dimension objects are vulnerable to "[[topological naming problem|topological naming]]" issues. See the information in the {{Button|[[Image:TechDraw_Dimension_Length.svg|16px]] [[TechDraw Dimension Length|TechDraw Dimension Length]]}} tool for more information.
Dimension objects are vulnerable to "[[topological_naming_problem|topological naming]]" issues. See the information in the {{Button|[[Image:TechDraw_Dimension_Length.svg|16px]] [[TechDraw_Dimension_Length|TechDraw Dimension Length]]}} tool for more information.


==Properties== <!--T:5-->
==Properties== <!--T:5-->


<!--T:13-->
<!--T:13-->
This object has the same properties as the [[TechDraw Dimension Length|TechDraw Dimension Length]] tool. See that tool for details. Exceptions noted.
This object has the same properties as the [[TechDraw_Dimension_Length|TechDraw Dimension Length]] tool. See that tool for details. Exceptions noted.


=== Data === <!--T:20-->
=== Data === <!--T:20-->
Line 56: Line 56:


<!--T:14-->
<!--T:14-->
{{Emphasis|See also:}} [[TechDraw API|TechDraw API]] and [[FreeCAD Scripting Basics|FreeCAD Scripting Basics]].
{{Emphasis|See also:}} [[TechDraw_API|TechDraw API]] and [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].


<!--T:15-->
<!--T:15-->
Line 73: Line 73:
{{Docnav
{{Docnav
|[[TechDraw_Dimension_Horizontal_Extent|New Horizontal Extent]]
|[[TechDraw_Dimension_Horizontal_Extent|New Horizontal Extent]]
|[[TechDraw_Dimension_Landmark |New Landmark Dimension]]
|[[TechDraw_Dimension_Landmark|New Landmark Dimension]]
|[[TechDraw_Module|TechDraw]]
|[[TechDraw_Module|TechDraw]]
|IconL=TechDraw_Dimension_Horizontal_Extent.svg
|IconL=TechDraw_Dimension_Horizontal_Extent.svg

Revision as of 22:07, 2 December 2020

TechDraw Dimension Vertical Extent

Menu location
TechDraw → Dimension Vertical Extent
Workbenches
TechDraw
Default shortcut
None
Introduced in version
0.19
See also
TechDraw Dimension Length, TechDraw Dimension Horizontal Extent

Description

The Dimension Vertical Extent tool adds a linear dimension to a View. The dimension extends from the bottom most point on the selected objects to the top most point. A CosmeticVertex will be placed at each point.

Vertical Extent dimension of BSpline Face

Usage

  1. Select a View or a collection of Edges in a View.
  2. Press the Dimension Vertical Extent button
  3. A dimension will be added to the View. The dimension may be dragged to the desired position.

Limitations

Dimension objects are vulnerable to "topological naming" issues. See the information in the TechDraw Dimension Length tool for more information.

Properties

This object has the same properties as the TechDraw Dimension Length tool. See that tool for details. Exceptions noted.

Data

  • DataMeasureType: true - based on 3D geometry or "Projected" - based on the drawing. Not normally manipulated directly by the end user. Not yet implemented for Dimension Vertical Extent.

Scripting

See also: TechDraw API and FreeCAD Scripting Basics.

The Dimension Vertical Extent tool can be used in macros and from the Python console by using the following functions:

selection = [(view1, 'Edge1'), (view1, 'Edge2')]  #or [] for all
hExtentDim = TechDraw.Dimension.makeExtentDim(selection, VERTICAL)
rc = page.addView(hExtentDim)