기술도면 단면도 |
Menu location |
---|
기술도면 → 기술도면 보기 → 단면도 삽입 |
Workbenches |
기술도면 작업대 |
Default shortcut |
None |
Introduced in version |
- |
See also |
기술도면 복합단면, 기술도면 보기 |
기술도면 단면도 도구는 기존의 부품 보기를 기반으로 단면도를 삽입합니다.
이미 배치된 보기를 단면하여 내부 구멍과 사선으로 채워진 절단면을 보여줍니다.
위 이미지는 ANSI 화살표 형식을 보여줍니다.
아래 이미지는 ISO 화살표 형식을 보여줍니다.
보기의 절단면을 정의하는 작업창
속성 편집기도 참고하세요.
In the properties of the 데이터Base View you can change the appearance of the section line.
A Section View, formally a TechDraw::DrawViewSection
object, is derived from a Part View, formally a TechDraw::DrawViewPart
object, and inherits all its properties. It also has the following additional properties:
Appearance
FloatConstraint
): Adjusts the length of the section line. 1.0
is normal length, 1.1
would be 10% longer, 0.9
would be 10% shorter. introduced in 1.0Cut Operation
Bool
): Fuse the source shapes before performing the section cut.Bool
): Additionally trim the resulting shape after the section cut to remove any unwanted pieces. introduced in 0.21Bool
) Use the cut shape from the base view instead of the original object. introduced in 1.0Cut Surface Format
Enumeration
): 절단면의 모양. 다음 중 선:
Hide
: 잘린 표면을 숨기고 윤곽선만 표시합니다.Color
: 기술도면 환경 설정에서 설정된 절단 표면 색상을 사용하여 절단 표면의 색상을 지정합니다.SvgHatch
: Hatches the section cut using a hatchPatHatch
: Hatches the section cut using a geometric hatchFile
): Full path to SVG hatch pattern file.File
): Full path to PAT pattern file.FileIncluded
): SVG 해치 패턴 파일의 전체 경로.FileIncluded
): PAT 패턴 파일의 전체 경로.String
): Name of the PAT pattern to use.Float
): 해치 패턴 배 조정Float
): 해치 패턴을 시계 반대 방향으로 회전.0.21 버전부터 도입Vector
): Hatch pattern offset. introduced in 0.21Section
String
): The identifier for this section.Link
): The view on which this section is based.Vector
): A vector describing the direction normal to the cutting plane.Vector
): A vector describing a point on the cutting plane. Typically the centroid of the original part.Enumeration
): The direction in the Base View for this section. Options: Aligned
, Right
, Left
, Up
or Down
.Cut Surface
Color
): Solid color for surface highlight. Used if 데이터Cut Surface Display is set to Color
.Bool
): Show/hide the cut surface.Surface Hatch
Color
): The color of the Geometric hath pattern.Color
): The color of the Svg hatch pattern.Bool
): Hatch the cut surface.Float
): Line weight of the Geometric hatch pattern.
ANSI
옵션은 "당기는 화살표"(일부 지역에서는 "전통 형식"이라고 함)를 사용하고, ISO
옵션은 "밀어내는 화살표"(참조 화살표 형식이라고도 함)를 사용합니다.See also: Autogenerated API documentation and FreeCAD Scripting Basics.
A SectionView can be created with macros and from the Python console by using the following functions:
doc = FreeCAD.ActiveDocument
box = doc.Box
page = doc.Page
view = doc.addObject("TechDraw::DrawViewPart", "View")
page.addView(view)
view.Source = box
view.Direction = (0, 0, 1)
section = doc.addObject("TechDraw::DrawViewSection", "Section")
page.addView(section)
section.Source = box
section.BaseView = view
section.Direction = (0, 1, 0)
section.SectionNormal = (-1, 0, 0)
doc.recompute()
단면도와 일부 사용 사례에 대한 자세한 내용은 기술도면 단면 예제를 참조하세요.