LineJoin join |
선 접합 부위 표시방법을 설정합니다.
Argument | Type | Description |
---|---|---|
join | Text(UTF-8 protocol)\\UInt8 (Binary protocol) | UTF-8 protocol 에서는 “Miter”, “Round”, “Bevel” 중 하나. Binary protocol 에서는 0, 1, 2 중 하나 (각각 Miter, Round Bevel ) |
# Clear the active layer Clear # Set the line width LineWidth 10.0 # Draw polyline with round join ClearPath MoveTo 100 100 LineTo 150 50 LineTo 200 100 LineJoin Round DrawPath # Draw polyline with miter join ClearPath MoveTo 250 100 LineTo 300 50 LineTo 350 100 LineJoin Miter DrawPath # Draw polyline with round join ClearPath MoveTo 400 100 LineTo 450 50 LineTo 500 100 LineJoin Bevel DrawPath