HowToC:CreateCallback
From S2PLOT
(Difference between revisions)
Revision as of 05:29, 30 October 2007 S2plot admin (Talk | contribs) ← Previous diff |
Current revision S2plot admin (Talk | contribs) |
||
Line 49: | Line 49: | ||
* [[S2PLOT:HowTo | Back]] to S2PLOT How To... | * [[S2PLOT:HowTo | Back]] to S2PLOT How To... | ||
- | * [[HowToC:DrawPoints | Drawing points ]] | + | * [[HowToC:SelectHandles | Selecting via handles ]] |
Current revision
Contents |
Drawing Points
Points example
Copy and paste the following code, and save the file as s2points.c
#include <stdio.h>
#include <stdlib.h>
#include "s2plot.h"
int main(int argc, char *argv[])
{
float xmin = -1, xmax = +1; /* X data range */
float ymin = -1, ymax = +1; /* Y data range */
float zmin = -1, zmax = +1; /* Z data range */
s2opend("/?",argc,argv); /* Which S2PLOT device to open? */
s2swin(xmin, xmax, ymin, ymax, zmin, zmax); /* Set the display coordinates */
s2show(1); /* Hand over to the display */
return 1;
}
Compile using: cbuild.csh s2example<tt> and then run by typing <tt>s2example at the command prompt.
Experiment for yourself
Function Overview
For more information on the functions we have introduced so far, see:
Common Problems
Test code: s2points.c
This is the full test code for the point-drawing example.
Where to Next?
- Back to S2PLOT How To...
- Selecting via handles