Specifies the start point of the line.
Specifies the end point of the line.
| 1. |
The following example generates point objects through operator inputs in the operator view.
ANGLE(OperatorInputs.Inputs("Points").Points(1).WorldPoint,
OperatorInputs.Inputs("Points").Points(2).WorldPoint)
|
Specifies the X-coordinate of the start point of the line.
Specifies the Y-coordinate of the start point of the line.
Specifies the X-coordinate of the end point of the line.
Specifies the Y-coordinate of the end point of the line.
| 1. |
The following example returns 315, which is the angle formed from the line segment [(1,1),(3,3)] and the X-axis beginning at (1,1).
ANGLE(1,1,3,3)
|
| 2. |
The following example returns 135, which is the angle formed from the line segment [(3,3),(1,1)] and the X-axis beginning at (3,3).
ANGLE(3,3,1,1)
|