ultimaille icon indicating copy to clipboard operation
ultimaille copied to clipboard

The ultimate mesh library

Results 23 ultimaille issues
Sort by recently updated
recently updated
newest added

I'm converting `.step` format to `.mesh`, and I would be able to load `.mesh` attributes in ultimaille to do some computations. Here https://github.com/ultimaille/ultimaille/commit/1a197cd1781d55c45ca6440a40e7b82d0d675a34, you'll find a test that works, but...

enhancement

Check on_boundary functions with unit testing.

test

void copy_from(PointSet& other) { if (pts.size() != 0) clear(); pts.create_points(other.size()); FOR(v, pts.size()) pts[v] = other[v]; }

enhancement