LineTo x y |
현재 Point로부터 지정된 위치까지 Path를 생성합니다.
Argument | Type | Description |
---|---|---|
x | Real Number | X 좌표 |
y | Real Number | Y 좌표 |
# Clear the active layer Clear # Create a fraction of a pie MoveTo 200 200 LineTo 270.7 129.29 ArcTo 270.7 270.7 100 100 0 0 1 ClosePath # Fill the pie with partially transparent red Color AAFF0000 FillPath # Draw a border around the pie in bright red LineWidth 1 Color FF0000 DrawPath