Obtains the polar point of another point.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static Vector2 Polar(
Vector2 u,
double distance,
double angle
)
Public Shared Function Polar (
u As Vector2,
distance As Double,
angle As Double
) As Vector2
public:
static Vector2 Polar(
Vector2 u,
double distance,
double angle
)
static member Polar :
u : Vector2 *
distance : float *
angle : float -> Vector2
STATIC METHOD Polar(
u AS Vector2,
distance AS REAL8,
angle AS REAL8
) AS Vector2
Parameters
- u
- Type: DXFReaderNETVector2
Reference point. - distance
- Type: SystemDouble
Distance from point u. - angle
- Type: SystemDouble
Angle in radians.
Return Value
Type:
Vector2The polar point of the specified point.
See Also