Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.17 KB

File metadata and controls

49 lines (33 loc) · 1.17 KB

TODO list

Remove matrices and vectors from dataframe/types and put everything in dataframe/algebra/types












Classical

  • interleave - Combines multiple series by alternating elements

Surface/Mesh Operations:

  • curvature - Compute surface curvature
  • smoothing - Smooth mesh vertices or field values
  • decimate - Reduce mesh complexity
  • centerline - Extract centerline from surface
  • tangents - Compute tangent vectors

Point Cloud Operations:

  • nearest_neighbors - Find nearest neighbors for points
  • distance_field - Compute distance field from points
  • cluster - Cluster points based on distance
  • outliers - Detect and remove outlier points

Field Interpolation:

  • extrapolate - Extend field values beyond data points
  • resample - Resample field onto new grid
  • contours - Generate contour lines from scalar field for REGULAR SAMPLING

OTHERS

Flatten/FlatMap

// Map then flatten results
auto flatMap(transform, collection);

Compose/Curry/Partial

// Create single-argument versions
auto curried = curry(function);

// Fix some arguments
auto partial = partial(function, arg1, arg2);