This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 409
79381d6c 2d2a 47db 77ab c4c39a270c24
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
Obtains the polar point of another point.
Namespace: netDxf
Assembly: netDxf (in netDxf.dll) Version: 3.0.0
C#
public static Vector2 Polar(
Vector2 u,
double distance,
double angle
)
VB
Public Shared Function Polar (
u As Vector2,
distance As Double,
angle As Double
) As Vector2
C++
public:
static Vector2 Polar(
Vector2 u,
double distance,
double angle
)
F#
static member Polar :
u : Vector2 *
distance : float *
angle : float -> Vector2
- Vector2
- Reference point.
- Double
- Distance from point u.
- Double
- Angle in radians.
Vector2
The polar point of the specified point.