Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/editors/curve/GridMesh_GLUT_debug_tool.cpp')
-rw-r--r--source/blender/editors/curve/GridMesh_GLUT_debug_tool.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/source/blender/editors/curve/GridMesh_GLUT_debug_tool.cpp b/source/blender/editors/curve/GridMesh_GLUT_debug_tool.cpp
index c528d0bfdcc..e1059bd6e70 100644
--- a/source/blender/editors/curve/GridMesh_GLUT_debug_tool.cpp
+++ b/source/blender/editors/curve/GridMesh_GLUT_debug_tool.cpp
@@ -500,8 +500,12 @@ void GLUT_motion(int x, int y) {
void GLUT_passive(int x, int y) {
float sx,sy,dist;
glut_coords_2_scene(x,y,&sx,&sy);
- int v = closest_vert(sx,sy,&dist);
- if (dist<.1) printf("Vertex near cursor: %i\n",v);
+ int vert = closest_vert(sx,sy,&dist);
+ if (dist<.1) {
+ GreinerV2f &v = gm->v[vert];
+ int ie=v.is_entry, ir=v.is_interior, is=v.is_intersection;
+ printf("Hover vert: %i is_entry:%i is_interior:%i is_intersection:%i\n",vert,ie,ir,is);
+ }
}