add keywords for all nodes

This commit is contained in:
2026-04-04 14:58:56 -07:00
parent 69f1d1bebd
commit a0d3b22f18
195 changed files with 437 additions and 198 deletions

View File

@@ -30,11 +30,13 @@ class StraightenPath:
DESCRIPTION = (
"Extract a cross-section along an arbitrary curved path defined by "
"control points. Points are given as fractional coordinates (01). "
"control points. Points are given as fractional coordinates (0-1). "
"The path is interpolated with cubic splines, and data is sampled "
"along it with configurable thickness. "
)
KEYWORDS = ("unbend", "unroll", "spline", "curved profile", "extract path")
def process(self, field: DataField, points_x: str, points_y: str,
thickness: int, n_samples: int) -> tuple:
data = np.asarray(field.data, dtype=np.float64)