I am trying to map the red polylines from the left mesh to the right mesh in the picture by using the MeshMap node of kangaroo. Except the points are scattering.
I divided the polyline curves into points and made sure they are on the mesh with the “mesh closest point” node.
There was a long standing bug in RhinoCommon where Mesh.PointAt would return incorrect points for quads, so this is indeed likely the problem here. This was actually fixed recently though, so I think after the next SR you should get the correct result from this without changing anything.
In the meantime though, you can triangulate. Because the default triangulation picks the best of the 2 diagonals based on the geometry of each quad though, it would likely pick different triangulations for the flat and curved meshes, making their topology different, so they wouldn’t work with MeshMap.
The solution is to set the triangulation directly: meshmap_triangulate.gh (123.9 KB)