Function:s2qtxtxz
From S2PLOT
s2qtxtxz
Find the bounding box of text drawn with s2textxz.
Prototype
void s2qtxtxz(float *x1, float *x2, float *z1, float *z2,float x, float y, float z, char *text, float pad);
Description
Find the bounding box of text drawn with the s2textxz function. For convenience, pad can be given > 0.0 to obtain padding around the text of pad percent.
See Also
s2qtxtxzf | Find the bounding box of text drawn with s2textxzf. |
s2textxz | Draw text in the xz plane at a fixed y coordinate. |
PGPLOT Equivalent
Code Example
#include <stdio.h>
#include <stdlib.h>
#include "s2plot.h"
int main(int argc, char *argv[])
{
float x = 0.0;
float y = 0.5;
float z = 0.2;
float x1,x2, z1,z2; /* Bounding coordinates */
char string[32] = "S2PLOT is great!";
float pad = 0.5; /* Padding around text */
s2opend("/?",argc, argv); /* Open the display */
s2swin(-1.,1., -1.,1., -1.,1.); /* Set the window coordinates */
s2box("BCDET",0,0,"BCDET",0,0,"BCDET",0,0); /* Draw coordinate box */
s2sci(S2_PG_YELLOW);
s2slw(2); /* Set line width */
s2textxz(x,y,z,string); /* Write some text in x-z plane */
s2qtxtxz(&x1,&x2, &z1,&z2, x,y,z, string, pad);
/* Query bounding box for text */
s2sci(S2_PG_GREEN);
s2rectxz(x1,x2, z1,z2, y-0.01); /* Draw bounding rectangle */
s2show(1); /* Open the s2plot window */
return 1;
}
Back to S2PLOT function list.