Tangent on Path

Determines the angle of the tangent at a point on the path, given by its progression from 0 to 1 along the path.

If multiple subpaths make up the path, the whole number part of the progression value selects the subpath and the decimal part determines the position along it.

Interface

Inputs

ParameterDetailsPossible Types
Content

The path to traverse.

Primary Input

Table<Vector>
Progression

The factor from the start to the end of the path, 0–1 for one subpath, 1–2 for a second subpath, and so on.

Default: 0

f64
Reverse

Swap the direction of the path.

Default: false

bool
Parameterized Distance

Traverse the path using each segment's Bézier curve parameterization instead of the Euclidean distance. Faster to compute but doesn't respect actual distances.

Default: false

bool
Radians

Whether the resulting angle should be given in as radians instead of degrees.

Default: false

bool

Outputs

ProductDetailsPossible Types
Result

The value produced by the node operation.

Primary Output

f64