Function:ss2qsr

From S2PLOT

(Difference between revisions)
Jump to: navigation, search
Revision as of 02:31, 23 November 2007
S2plot admin (Talk | contribs)

← Previous diff
Current revision
S2plot admin (Talk | contribs)

Line 5: Line 5:
<code><pre> <code><pre>
-int s2qsr(void);+int ss2qsr(void);
</pre></code> </pre></code>
Line 21: Line 21:
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
 +#include <time.h>
#include "s2plot.h" #include "s2plot.h"
Line 31: Line 32:
} }
int qsr = ss2qsr(); /* Query sphere resolution */ int qsr = ss2qsr(); /* Query sphere resolution */
- + 
- char string[32]; + char string[32];
sprintf(string,"Resolution = %d",qsr); /* Write to string */ sprintf(string,"Resolution = %d",qsr); /* Write to string */
s2textxy(0,-0.5,0,string); /* Display text */ s2textxy(0,-0.5,0,string); /* Display text */
Line 45: Line 46:
fprintf(stderr,"Press the <spacebar> to change sphere resolution"); fprintf(stderr,"Press the <spacebar> to change sphere resolution");
 + srand48((long)time(NULL)); /* Seed random numbers */
s2opend("/s2mono", argc, argv); /* Open in mono mode */ s2opend("/s2mono", argc, argv); /* Open in mono mode */
s2swin(-1.,1., -1.,1., -1.,1.); /* Set the window coordinates */ s2swin(-1.,1., -1.,1., -1.,1.); /* Set the window coordinates */
s2box("BCDET",0,0,"BCDET",0,0,"BCDET",0,0); /* Draw coordinate box */ s2box("BCDET",0,0,"BCDET",0,0,"BCDET",0,0); /* Draw coordinate box */
- + 
cs2scb(cb); /* Install dynamic callback */ cs2scb(cb); /* Install dynamic callback */
s2show(1); /* Open the s2plot window */ s2show(1); /* Open the s2plot window */
Line 54: Line 56:
return 1; return 1;
} }
 +
</pre></code> </pre></code>
[[S2PLOT:Function List | Back]] to S2PLOT function list. [[S2PLOT:Function List | Back]] to S2PLOT function list.
__NOTOC__ __NOTOC__
__NOEDITSECTION__ __NOEDITSECTION__

Current revision

ss2qsr

Query the sphere resolution.

Prototype

int ss2qsr(void);

Description

Query the sphere resolution.

See Also

ss2ssrSet the sphere resolution.
ns2sphere Draw a sphere, with a given centre, radius and colour.

Code Example

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include "s2plot.h"

void cb(double *t, int *kc)
{
   static int lkc = 0;                          /* Count of key presses */

   if (lkc != *kc) {                            /* Space bar pressed? */
     ss2ssr((int)(drand48()*94+5));
   }
   int qsr = ss2qsr();                          /* Query sphere resolution */

   char string[32];
   sprintf(string,"Resolution = %d",qsr);       /* Write to string */
   s2textxy(0,-0.5,0,string);                   /* Display text */

   ns2sphere(0,0.5,0,0.3,1,1,0);                /* A yellow sphere */

   lkc = *kc;                                   /* Update count */
}

int main(int argc, char *argv[])
{
   fprintf(stderr,"Press the <spacebar> to change sphere resolution");

   srand48((long)time(NULL));                   /* Seed random numbers */
   s2opend("/s2mono", argc, argv);              /* Open in mono mode */
   s2swin(-1.,1., -1.,1., -1.,1.);              /* Set the window coordinates */
   s2box("BCDET",0,0,"BCDET",0,0,"BCDET",0,0);  /* Draw coordinate box */

   cs2scb(cb);                                  /* Install dynamic callback */
   s2show(1);                                   /* Open the s2plot window */

   return 1;
}

Back to S2PLOT function list.


Personal tools