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
Copy file name to clipboardExpand all lines: node-graph/nodes/vector/src/vector_nodes.rs
+37-3Lines changed: 37 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1958,7 +1958,7 @@ async fn jitter_points(
1958
1958
/// The maximum extent of the random distance each point can be offset.
1959
1959
#[default(5.)]
1960
1960
#[unit(" px")]
1961
-
amount:f64,
1961
+
max_distance:f64,
1962
1962
/// Seed used to determine unique variations on all randomized offsets.
1963
1963
seed:SeedValue,
1964
1964
/// Whether to offset anchor points along their normal direction (perpendicular to the path) or in a random direction. Free-floating and branching points have no normal direction, so they receive a random-angled offset regardless of this setting.
@@ -1974,7 +1974,7 @@ async fn jitter_points(
1974
1974
let deltas:Vec<_> = (0..row.element.point_domain.positions().len())
0 commit comments