Function:ns2thline

From S2PLOT

Jump to: navigation, search

ns2thline

Draw a thick line from one point to another in a specific colour.

Prototype

void ns2thline(float x1, float y1, float z1, float x2, float y2, float z2, float red, float green, float blue, float width);

Description

Draw a thick line (width) from (x1,y1,z1) to (x2,y2,z2) using RGB colour (red,green,blue).

See Also

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.
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 r, g, b;				/* Colour of line segment */
   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;
      r  = drand48();
      g  = drand48();
      b  = drand48();
      size = drand48()*10.0;			/* Line thickness */
      ns2thline(x1,y1,z1, x2,y2,z2, r,g,b, size);	/* Draw the thick line */
   }

   s2show(1);					/* Open the s2plot window */
   
   return 1;
}

Back to S2PLOT function list.


Personal tools