You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Splits a path at a given progress from 0 to 1 along the path, creating two new subpaths from the original one (if the path is initially open) or one open subpath (if the path is initially closed).
1318
+
///
1319
+
/// If multiple subpaths make up the path, the whole number part of the progress value selects the subpath and the decimal part determines the position along it.
/// Determines the position of a point on the path, given by its progress from 0 to 1 along the path.
1417
+
///
1357
1418
/// If multiple subpaths make up the path, the whole number part of the progress value selects the subpath and the decimal part determines the position along it.
1358
1419
#[node_macro::node(name("Position on Path"), category("Vector: Measure"), path(graphene_core::vector))]
1359
1420
asyncfnposition_on_path(
@@ -1390,6 +1451,7 @@ async fn position_on_path(
1390
1451
}
1391
1452
1392
1453
/// Determines the angle of the tangent at a point on the path, given by its progress from 0 to 1 along the path.
1454
+
///
1393
1455
/// If multiple subpaths make up the path, the whole number part of the progress value selects the subpath and the decimal part determines the position along it.
1394
1456
#[node_macro::node(name("Tangent on Path"), category("Vector: Measure"), path(graphene_core::vector))]
0 commit comments