We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 674db97 commit 390574dCopy full SHA for 390574d
node-graph/gcore/src/vector/vector_nodes.rs
@@ -635,6 +635,9 @@ async fn sample_points<F: 'n + Send + Copy>(
635
)]
636
subpath_segment_lengths: impl Node<F, Output = Vec<f64>>,
637
) -> VectorDataTable {
638
+ // Limit the smallest spacing to something sensible to avoid freezing the application.
639
+ let spacing = spacing.max(0.01);
640
+
641
// Evaluate vector data and subpath segment lengths asynchronously.
642
let vector_data = vector_data.eval(footprint).await;
643
let vector_data = vector_data.one_item();
0 commit comments