Point On Circle
Geometry 2D
The Point On Circle node returns the point a fractional part of the trace along a circle path of a given radius.
Inputs
NormalizedPosition (float)
Position of the point along the path. Essentially represents an angle of 2*pi*NormalizedPosition
radians.
Radius (float)
Radius of the circle to trace along.
Outputs
* (float2)
The point that is NormalizedPosition
along the path of the circle, starting at the top point and tracing clockwise. The exact point returned is (sin(2 * pi * NormalizedPosition), cos(2 * pi * NormalizedPosition))
.
Examples
-
Examples of the Point On Circle node. The small discrepencies on quarter and full turns are due to floating point inaccuracies.