Hi,

lines  978,979,980 in gmsh.cpp:

coord.push_back(v->x());
coord.push_back(v->x());
coord.push_back(v->x());


IMHO should be:

coord.push_back(v->x());
coord.push_back(v->y());
coord.push_back(v->z());


By the way, would it be possible in the API to get the coordinates in a 
geometrical Point ?


Regards.


_______________________________________________
gmsh mailing list
[email protected]
http://onelab.info/mailman/listinfo/gmsh

Reply via email to