Function:ns2thcline
From S2PLOT
Revision as of 03:33, 29 August 2011; view current revision
←Older revision | Newer revision→
←Older revision | Newer revision→
ns2cline
Draw a thick coloured line.
Prototype
void ns2thcline(float x1, float y1, float z1, float x2, float y2, float z2,
float red1, float green1,
float blue1, float red2, float green2, float blue2,float width);
Description
Draw a thick coloured line, with colour blended between the two given colours along the line, and given width.
See Also
ns2vthcline | Draw a thick coloured line - vector input. |
ns2line | Draw a line from one point to another in a specific colour. |
ns2vline | Draw a line from one point to another in a specific colour - vector input. |
ns2thline | Draw a thick line from one point to another in a specific colour. |
ns2vthline | Draw a thick line from one point to another in a specific colour - vector input. |
ns2cline | Draw a coloured line, with colour blended between the two given colours along the line. |
ns2vcline | Draw a coloured line, with colour blended between the two given colours along the line - vector input. |
Code Example
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include "s2plot.h"
int main(int argc, char *argv[])
{
float x1, y1, z1; /* Start of line */
float x2, y2, z2; /* End of line */
float r1, g1, b1; /* Colour of line segment (start) */
float r2, g2, b2; /* Colour of line segment (end) */
float size; /* Thickness of line */
int N = 10; /* Number of lines */
int i; /* Loop variable */
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 */
s2sci(S2_PG_YELLOW); /* Set colour */
for (i=0;i<N;i++) {
x1 = drand48()*2.0 - 1.0; /* Random (x,y,z) coordinates */
y1 = drand48()*2.0 - 1.0;
z1 = drand48()*2.0 - 1.0;
x2 = drand48()*2.0 - 1.0; /* Random (x,y,z) coordinates */
y2 = drand48()*2.0 - 1.0;
z2 = drand48()*2.0 - 1.0;
r1 = drand48();
g1 = drand48();
b1 = drand48();
r2 = drand48();
g2 = drand48();
b2 = drand48();
size = drand48()*10.0; /* Line thickness */
ns2thcline(x1,y1,z1, x2,y2,z2, r1,g1,b1, r2,g2,b2, size); /* Draw the thick line */
}
s2show(1); /* Open the s2plot window */
return 1;
}
Back to S2PLOT function list.