ProtoFlux:Point On Circle

From Resonite Wiki
Revision as of 08:51, 30 June 2024 by Yosh (talk | contribs) (create page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Point On Circle
NormalizedPosition
*
Radius
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