diff --git a/Graphics/drawGeom.cpp b/Graphics/drawGeom.cpp index f1ceaf793ebc7c7b7d59ad0aff43ba06fe39542d..c7c23e5e66b73025a4f60c1f76ed6a5e6eb911b4 100644 --- a/Graphics/drawGeom.cpp +++ b/Graphics/drawGeom.cpp @@ -72,7 +72,7 @@ class drawGVertex { char Num[100]; sprintf(Num, "%d", v->tag()); double offset = (0.5 * CTX::instance()->geom.pointSize + - 0.3 * CTX::instance()->glFontSize) * _ctx->pixel_equiv_x; + 0.1 * CTX::instance()->glFontSize) * _ctx->pixel_equiv_x; glRasterPos3d(x + offset / _ctx->s[0], y + offset / _ctx->s[1], z + offset / _ctx->s[2]); @@ -166,7 +166,7 @@ class drawGEdge { char Num[100]; sprintf(Num, "%d", e->tag()); double offset = (0.5 * CTX::instance()->geom.lineWidth + - 0.3 * CTX::instance()->glFontSize) * _ctx->pixel_equiv_x; + 0.1 * CTX::instance()->glFontSize) * _ctx->pixel_equiv_x; double x = p.x(), y = p.y(), z = p.z(); _ctx->transform(x, y, z); glRasterPos3d(x + offset / _ctx->s[0], @@ -287,7 +287,7 @@ class drawGFace { GPoint p = f->point(uav, vav); char Num[100]; sprintf(Num, "%d", f->tag()); - double offset = 0.3 * CTX::instance()->glFontSize * _ctx->pixel_equiv_x; + double offset = 0.1 * CTX::instance()->glFontSize * _ctx->pixel_equiv_x; double x = p.x(), y = p.y(), z = p.z(); _ctx->transform(x, y, z); glRasterPos3d(x + offset / _ctx->s[0], @@ -344,7 +344,7 @@ class drawGFace { if(CTX::instance()->geom.surfacesNum) { char Num[100]; sprintf(Num, "%d", f->tag()); - double offset = 0.3 * CTX::instance()->glFontSize * _ctx->pixel_equiv_x; + double offset = 0.1 * CTX::instance()->glFontSize * _ctx->pixel_equiv_x; double x = 0.5 * (f->cross[0].x() + f->cross[1].x()); double y = 0.5 * (f->cross[0].y() + f->cross[1].y()); double z = 0.5 * (f->cross[0].z() + f->cross[1].z()); @@ -447,7 +447,7 @@ class drawGRegion { if(CTX::instance()->geom.volumesNum){ char Num[100]; sprintf(Num, "%d", r->tag()); - double offset = (0.5 * size + 0.3 * CTX::instance()->glFontSize) * + double offset = (0.5 * size + 0.1 * CTX::instance()->glFontSize) * _ctx->pixel_equiv_x; glRasterPos3d(x + offset / _ctx->s[0], y + offset / _ctx->s[1], diff --git a/Graphics/drawMesh.cpp b/Graphics/drawMesh.cpp index 42d545003c86dcb2256a3bd4b5765e59d08ce270..7c8e0e6f85f3050e56165d2e9b18b674e86b7d62 100644 --- a/Graphics/drawMesh.cpp +++ b/Graphics/drawMesh.cpp @@ -260,7 +260,7 @@ static void drawVertexLabel(drawContext *ctx, GEntity *e, MVertex *v, glColor4ubv((GLubyte *) & CTX::instance()->color.mesh.vertex); double offset = (0.5 * CTX::instance()->mesh.pointSize + - 0.3 * CTX::instance()->glFontSize) * ctx->pixel_equiv_x; + 0.1 * CTX::instance()->glFontSize) * ctx->pixel_equiv_x; glRasterPos3d(v->x() + offset / ctx->s[0], v->y() + offset / ctx->s[1], v->z() + offset / ctx->s[2]);