Function:ss2pt
From S2PLOT
(Difference between revisions)
Revision as of 23:03, 28 October 2007 S2plot admin (Talk | contribs) ← Previous diff |
Current revision S2plot admin (Talk | contribs) |
||
Line 25: | Line 25: | ||
#include <stdio.h> | #include <stdio.h> | ||
#include <stdlib.h> | #include <stdlib.h> | ||
+ | #include <time.h> | ||
#include "s2plot.h" | #include "s2plot.h" | ||
Line 30: | Line 31: | ||
{ | { | ||
char *texture = "firetile2_pow2_rgb.tga"; | char *texture = "firetile2_pow2_rgb.tga"; | ||
- | /* Texture in directory pointed to by S2PLOT_TEXPATH */ | + | /* Texture in directory pointed to by S2PLOT_TEXPATH */ |
- | int texid; /* ID for this texture */ | + | int texid; /* ID for this texture */ |
- | char *tex; /* Array holding texture */ | + | char *tex; /* Array holding texture */ |
- | int width, height; /* Dimensions of texture */ | + | int width, height; /* Dimensions of texture */ |
- | int i, j; /* Loop variables */ | + | int i, j; /* Loop variables */ |
- | int idx; /* Temporary index into array */ | + | int idx; /* Temporary index into array */ |
- | XYZ xyz = { 0.0, 0.0, 0.0 }; /* Location of sphere */ | + | XYZ xyz = { 0.0, 0.0, 0.0 }; /* Location of sphere */ |
- | float r = 0.3; /* Radius of sphere */ | + | float r = 0.3; /* Radius of sphere */ |
- | COLOUR col = { 1.0, 1.0, 1.0 }; /* Colour of sphere */ | + | COLOUR col = { 1.0, 1.0, 1.0 }; /* Colour of sphere */ |
- | s2opend("/?",argc, argv); /* Open the display */ | + | srand48((long)time(NULL)); /* Seed random numbers */ |
- | s2swin(-1.,1., -1.,1., -1.,1.); /* Set the window coordinates */ | + | s2opend("/?",argc, argv); /* Open the display */ |
- | s2box("BCDET",0,0,"BCDET",0,0,"BCDET",0,0); /* Draw coordinate box */ | + | s2swin(-1.,1., -1.,1., -1.,1.); /* Set the window coordinates */ |
+ | s2box("BCDET",0,0,"BCDET",0,0,"BCDET",0,0); /* Draw coordinate box */ | ||
- | texid = ss2lt(texture); /* Get an ID for texture */ | + | texid = ss2lt(texture); /* Get an ID for texture */ |
- | tex = ss2gt(texid, &width, &height); /* Store texture */ | + | tex = ss2gt(texid, &width, &height); /* Store texture */ |
- | + | ||
- | for (j=0;j<(height/2);j++) { /* Bottom half of texture */ | + | for (j=0;j<(height/2);j++) { /* Bottom half of texture */ |
for (i=0;i<width;i++) { | for (i=0;i<width;i++) { | ||
- | idx = (j*width + i)*4; /* Stored as (r, g, b, alpha) */ | + | idx = (j*width + i)*4; /* Stored as (r, g, b, alpha) */ |
- | tex[idx ] = 127*drand48()+128; /* Randomish Red */ | + | tex[idx ] = 127*drand48()+128; /* Randomish Red */ |
- | tex[idx+1] = 0; /* Green */ | + | tex[idx+1] = 0; /* Green */ |
- | tex[idx+2] = 0; /* Blue */ | + | tex[idx+2] = 0; /* Blue */ |
- | /* Do nothing to alpha */ | + | /* Do nothing to alpha */ |
} | } | ||
} | } | ||
- | ss2pt(texid); /* Restore texture for use */ | + | ss2pt(texid); /* Restore texture for use */ |
- | ns2vspherex(xyz, r, col, texid); /* Draw textured sphere */ | + | ns2vspherex(xyz, r, col, texid); /* Draw textured sphere */ |
- | s2show(1); /* Open the s2plot window */ | + | s2show(1); /* Open the s2plot window */ |
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
ss2pt
Reinstall a texture.
Prototype
void ss2pt(unsigned int itextureID);
Description
Reinstall a texture, eg. after modifying the map returned by ss2gt.
See Also
Textures | Important information on using textures in S2PLOT. |
ss2lt | Load a texture for future (generally repeated) use. |
ss2gt | Get a pointer to an identified texture. |
Code Example
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include "s2plot.h"
int main(int argc, char *argv[])
{
char *texture = "firetile2_pow2_rgb.tga";
/* Texture in directory pointed to by S2PLOT_TEXPATH */
int texid; /* ID for this texture */
char *tex; /* Array holding texture */
int width, height; /* Dimensions of texture */
int i, j; /* Loop variables */
int idx; /* Temporary index into array */
XYZ xyz = { 0.0, 0.0, 0.0 }; /* Location of sphere */
float r = 0.3; /* Radius of sphere */
COLOUR col = { 1.0, 1.0, 1.0 }; /* Colour of sphere */
srand48((long)time(NULL)); /* Seed random numbers */
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 */
texid = ss2lt(texture); /* Get an ID for texture */
tex = ss2gt(texid, &width, &height); /* Store texture */
for (j=0;j<(height/2);j++) { /* Bottom half of texture */
for (i=0;i<width;i++) {
idx = (j*width + i)*4; /* Stored as (r, g, b, alpha) */
tex[idx ] = 127*drand48()+128; /* Randomish Red */
tex[idx+1] = 0; /* Green */
tex[idx+2] = 0; /* Blue */
/* Do nothing to alpha */
}
}
ss2pt(texid); /* Restore texture for use */
ns2vspherex(xyz, r, col, texid); /* Draw textured sphere */
s2show(1); /* Open the s2plot window */
return 1;
}
Back to S2PLOT function list.