기술도면 수평 범위 치수 |
Menu location |
---|
기술도면→ 치수→ 수평 범위 치수 삽입 |
Workbenches |
기술도면 작업대 |
Default shortcut |
None |
Introduced in version |
0.19 |
See also |
기술도면 치수, 기술도면 수직 범위 치수 |
기술도면 수평 범위 치수 도구는 보기에 수평 방향 선형 치수를 추가합니다. 치수는 선택한 대상체의 가장 왼쪽 지점에서 가장 오른쪽 지점까지 확장됩니다.
B-조절곡선의 수평 및 수직 범위 치수
단일 도구
(기본값)로 설정된 경우:
치수 대상체의 속성을 변경하려면 도면이나 나무 보기에서 치수 대상체를 두 번 클릭합니다. 이렇게 하면 치수 대화 상자가 열립니다.
치수 대상체는 "위상적 명명 문제"에 취약합니다. 기술도면 길이 치수를 참조하세요.
기술도면 길이 치수를 참조하세요.
기술도면 치수 길이를 참조하세요. 아래에는 예외사항이 있습니다.
Base
Enumeration
): 아직 범위 치수에는 구현되지 않았습니다.
자동 생성된 API 문서 및 FreeCAD 스크립팅 기본도 참고하세요.
수평 범위 치수 도구는 다음 함수를 사용하여 매크로 및 파이썬 콘솔에서 사용할 수 있습니다:
selection = ['Edge1', 'Edge2'] # or [] for all
TechDraw.makeExtentDim(view1, selection, 0) # view1 is a DrawViewPart; 0 for horizontal
App.ActiveDocument.DimExtent.Y = -60 # offset dimension line from dimensioned edges in Y direction
App.ActiveDocument.DimExtent.X = 10 # offset dimension text along dimension line in X direction
App.ActiveDocument.DimExtent.FormatSpec = '%.0f' # Dimension format
TechDraw.makeExtentDim(view1, selection, 1) # view1 is a DrawViewPart; 1 for vertical
App.ActiveDocument.DimExtent001.X = -130 # offset dimension line from dimensioned edges in X direction
App.ActiveDocument.DimExtent001.Y = 10 # offset dimension text along dimension line in Y direction
App.ActiveDocument.DimExtent001.FormatSpec = '%.0f'
# Note the dimension names are 'DimExtent', 'DimExtent001' etc in the order created.