Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

79381d6c 2d2a 47db 77ab c4c39a270c24

haplokuon edited this page May 6, 2023 · 1 revision

Polar Method

netDxf 3.0.0 Library

Obtains the polar point of another point.

Definition

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 

Parameters

  Vector2
Reference point.
  Double
Distance from point u.
  Double
Angle in radians.

Return Value

Vector2
The polar point of the specified point.

See Also

Reference

Vector2 Structure
netDxf Namespace

Clone this wiki locally