Doxygen Source Code Documentation
curve.c File Reference
#include "f2c.h"Go to the source code of this file.
Functions | |
| int | curve_ (real *x, real *y, integer *n) |
Variables | |
| integer | c__0 = 0 |
| integer | c__1 = 1 |
Function Documentation
|
||||||||||||||||
|
Definition at line 18 of file curve.c. References c__0, c__1, and points_(). Referenced by plotpak_curve().
00019 {
00020 extern /* Subroutine */ int points_(real *, real *, integer *, integer *,
00021 integer *);
00022
00023
00024 /* Connect N points with N-1 straight lines */
00025
00026 /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
00027 */
00028 /* Parameter adjustments */
00029 --y;
00030 --x;
00031
00032 /* Function Body */
00033 points_(&x[1], &y[1], n, &c__0, &c__1);
00034 return 0;
00035 } /* curve_ */
|
Variable Documentation
|
|
Definition at line 10 of file curve.c. Referenced by curve_(). |
|
|
Definition at line 11 of file curve.c. Referenced by curve_(). |