mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
center numbers under colormap
This commit is contained in:
parent
27679c231a
commit
9443929806
@ -38,9 +38,11 @@ namespace netgen
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
void (*opengl_text_function)(const char * text) = NULL;
|
void (*opengl_text_function)(const char * text) = NULL;
|
||||||
void Set_OpenGLText_Callback ( void (*fun) (const char * text) )
|
int opengl_text_width = 0;
|
||||||
|
void Set_OpenGLText_Callback ( void (*fun) (const char * text), int width )
|
||||||
{
|
{
|
||||||
opengl_text_function = fun;
|
opengl_text_function = fun;
|
||||||
|
opengl_text_width = width;
|
||||||
}
|
}
|
||||||
|
|
||||||
void MyOpenGLText (const char * text)
|
void MyOpenGLText (const char * text)
|
||||||
@ -50,6 +52,11 @@ namespace netgen
|
|||||||
// cout << "MyOpenGLText: " << text << endl;
|
// cout << "MyOpenGLText: " << text << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int MyOpenGLTextWidth ()
|
||||||
|
{
|
||||||
|
return opengl_text_width;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// texture for color decoding
|
// texture for color decoding
|
||||||
// GLubyte * VisualScene :: colortexture = NULL;
|
// GLubyte * VisualScene :: colortexture = NULL;
|
||||||
@ -602,20 +609,26 @@ namespace netgen
|
|||||||
glPushAttrib (GL_LIST_BIT);
|
glPushAttrib (GL_LIST_BIT);
|
||||||
// glListBase (fontbase);
|
// glListBase (fontbase);
|
||||||
|
|
||||||
char buf[20];
|
constexpr size_t buf_size = 20;
|
||||||
|
char buf[buf_size];
|
||||||
|
GLint viewport[4];
|
||||||
|
glGetIntegerv (GL_VIEWPORT, viewport);
|
||||||
|
double char_width = 2.0*MyOpenGLTextWidth()/(viewport[3]);
|
||||||
for (int i = 0; i <= 4; i++)
|
for (int i = 0; i <= 4; i++)
|
||||||
{
|
{
|
||||||
double x = minx + i * (maxx-minx) / 4;
|
|
||||||
glRasterPos3d (x, 0.7,-5);
|
|
||||||
|
|
||||||
double val;
|
double val;
|
||||||
if (logscale)
|
if (logscale)
|
||||||
val = minval * pow (maxval / minval, i / 4.0);
|
val = minval * pow (maxval / minval, i / 4.0);
|
||||||
else
|
else
|
||||||
val = minval + i * (maxval-minval) / 4;
|
val = minval + i * (maxval-minval) / 4;
|
||||||
|
|
||||||
sprintf (buf, "%8.3e", val);
|
snprintf (buf, buf_size, "%8.3e", val);
|
||||||
|
auto n = strlen(buf);
|
||||||
// glCallLists (GLsizei(strlen (buf)), GL_UNSIGNED_BYTE, buf);
|
// glCallLists (GLsizei(strlen (buf)), GL_UNSIGNED_BYTE, buf);
|
||||||
|
double x = minx + i * (maxx-minx) / 4;
|
||||||
|
x -= 0.5*char_width * n; // center text
|
||||||
|
glRasterPos3d (x, 0.7,-5);
|
||||||
|
|
||||||
MyOpenGLText (buf);
|
MyOpenGLText (buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -84,7 +84,8 @@ namespace netgen
|
|||||||
|
|
||||||
|
|
||||||
NGGUI_API extern void MyOpenGLText (const char * text);
|
NGGUI_API extern void MyOpenGLText (const char * text);
|
||||||
NGGUI_API extern void Set_OpenGLText_Callback ( void (*fun) (const char * text) );
|
NGGUI_API extern int MyOpenGLTextWidth ();
|
||||||
|
NGGUI_API extern void Set_OpenGLText_Callback ( void (*fun) (const char * text), int width );
|
||||||
NGGUI_API extern VisualScene visual_scene_cross;
|
NGGUI_API extern VisualScene visual_scene_cross;
|
||||||
NGGUI_API extern VisualScene *visual_scene;
|
NGGUI_API extern VisualScene *visual_scene;
|
||||||
|
|
||||||
|
@ -2312,6 +2312,8 @@ namespace netgen {
|
|||||||
|
|
||||||
return list_base;
|
return list_base;
|
||||||
}
|
}
|
||||||
|
int Width() { return w; };
|
||||||
|
int Height() { return h; };
|
||||||
};
|
};
|
||||||
|
|
||||||
// create Fonts statically and return pointer on selecting
|
// create Fonts statically and return pointer on selecting
|
||||||
|
@ -1992,7 +1992,7 @@ namespace netgen
|
|||||||
|
|
||||||
SetVisualScene (Togl_Interp(togl));
|
SetVisualScene (Togl_Interp(togl));
|
||||||
visual_scene->DrawScene();
|
visual_scene->DrawScene();
|
||||||
Set_OpenGLText_Callback (&MyOpenGLText_GUI);
|
Set_OpenGLText_Callback (&MyOpenGLText_GUI, font->Width());
|
||||||
return TCL_OK;
|
return TCL_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user