Line Offset
offset line object는 line object 또는 curved surface에서 만들 수 있습니다. curved surface을 선택하면 offset curved surface가 작성됩니다.
사용법
- Line Offset을 선택합니다.
- Menu Bar에서 Tools > Modify > Offset을 선택하십시오. Toolbox의 Modify > Surface > Offset에서도 Offset을 사용할 수 있습니다.
- 필요에 따라 Tool Parameters의 설정을 조정하십시오.
- Figure Window의 해당 Viewport에서 클릭하고 드래그하여 offset line object를 만듭니다.
- Tool Parameters에서 Apply 또는 Apply and Delete Source를 선택하십시오. 또는 Return 키를 누르십시오.
참고 Apply를 선택하기 전에 Tool Parameters에서 Offset 설정을 수정할 수 있습니다.
Curved Surface Offset
- curved surface를 선택하십시오.
- Menu Bar에서 Tools > Modify > Offset을 선택하십시오. Toolbox의 Modify > Surface > Offset에서도 Offset을 사용할 수 있습니다.
- Figure Window의 해당 Viewport에서 클릭하고 드래그하여 offset curved surface를 작성합니다.
- 필요에 따라 Tool Parameters의 설정을 조정하십시오.
- Tool Parameters에서 Apply 또는 Apply and Delete Source를 선택하십시오. 또는 Return 키를 누르십시오.
참고 클릭한 viewport에서 front projection을 사용하여 curved surface가 offset됩니다.
Offset Tool Parameters
- Distance
- offset 거리를 설정합니다.
- Direction
- offset 할 면에 대해 Single 또는 Dual을 선택하십시오.
- Repeat Count
- Offset 작업을 반복할 횟수를 설정합니다.
- Slope
- offset 거리 비율을 설정합니다. Repeat Count가 2 이상으로 설정된 경우 활성화됩니다.
- Distance to
- Offset Distance 표시를 위해 Nearest Line 또는 Farthest Line을 선택하십시오. Repeat Count가 2 이상으로 설정된 경우 활성화됩니다.
- The height
- 거리의 offset 높이를 설정합니다.
- Slope
- offset 높이 비율을 설정합니다.
- Height to
- Offset Height distance로 Nearest Line 또는 Farthest Line을 선택합니다.
- Allow Split
- 활성화하면 control point이 offset line object에 추가되어 curve의 정밀도가 향상됩니다.
참고 script를 사용하여 offset line object를 만들 수 있습니다.
Script Window에서 Record를 확인한 다음 Toolbox에서 offset line object를 만듭니다. script가 기록됩니다.
script는 여러 object에서 동일한 매개 변수를 사용하여 offset lines을 작성하거나 거리가 동일하지만 다른 매개 변수를 변경하여 offset lines을 작성할 때 유용합니다.
- 예시 : xshade.scene().create_offset_lines(200.0, [0, 1, 0], 0, 2, 1.2, 2, 0.1, 0, 10, 0.3, 0, True, False)
-
Arguments :
string : optional : If omitted, the default name is used
Arguments :
float : Distance
Arguments :
vec3 : The direction cosine of the coordinate system : [0,1,0] : The XZ plane, [0,0,1] : The XY plane, [1,0,0] : The ZY plane
Arguments :
int : The Offset direction : -1 : Single-sided (counter-clockwise), 0 : Double-sided, 1 : Single-sided (clockwise)
Arguments :
int : Edge Style : 0 : Miter, 1 : Bevel, 2 : Round 1, 3 : Round 2
Arguments :
int : Roundness : between -1 and 3.0
Arguments :
int : Repeat Count
Arguments :
int : The Distance Slope : between -1.0 and 1.0
Arguments :
int : The spacing type : 0 : Nearest Line, 1 : Farthest Line
Arguments :
float : The Height when repeating
Arguments :
int : The Height Slope : between -1.0 and 1.0
Arguments :
int : The spacing type : 0 : Nearest Line, 1 : Farthest Line
Arguments :
bool : Allow Split (appending control points) : True : allow, False : do not allow
Arguments :
bool : Delete original shape : True : Delete, False : Do not delete