just ignore it’s been a long day
extra brownie points for the closed edge version
you need to test for reflex or obtuse, that is if the vector is above or below the the plane of the other vector… so you test whether the “end point” …
you find them in gridobj.cpp (prim project) enum { grid_length, grid_width, grid_wsegs, grid_lsegs, grid_rsegs, …
no need to create nodes, you only need recreate the transform that would be for the nodes position. And if they are all clones the just grab one versi…
in simplest terms amesh = amesh + bmesh; for an example see the mesher object in the sdk or you can use the MeshDelta::AttachMesh function as used…
yeah these tend to be 2d solutions, random moving of points will cause other issues (what is the correct direction to get the correct result)
theres a few algorithm for this sort of thing Delaunay triangulation and sweepline triangulation are a couple of examples… though i don’t know if anyo…
I can’t open your file so I’ll have to ask questions does it have a known order for the vertices ? left to right bottom to top for example or do they …
if we’re are talking about arrays of strings possibly hash them first.
there is no way to do this via viewport callback that isn’t “choppy” but here’s a possible solution for you… plugin Helper ViewportPoint name:”Viewp…
spring controller has a modeless dialog box that uses AppendRollup
another alternative is mat02 = mat01.rotationpart as matrix3; mat02.translation = mat01.translation;