GINO Graphics Suite - GINOGRAF v9.5  

ggAddGraphCurve

Syntax

[C/C++:]
void ggAddGraphCurve(int npts, GPOINT *points);
[F90:]
subroutine ggAddGraphCurve(npts, points)

integer, intent(in) :: npts
type(GPOINT), intent(in) :: points(*)

Arguments

npts
The number of points to be plotted

points
Array of points through which a curve is to be drawn on the graph

Description

The routine ggAddGraphCurve() draws a smooth curve through the points defined in array points, with respect to the current axes as set up by the last axis definition calls. The points are not marked on the graph. If axes have not been defined, the points will be read and plotted according to the default values for axis positioning and scaling. This could result in points being outside the available drawing area or current window.

The end conditions of the curve may be set using the routines ggSetCurveStartConds() and/or ggSetCurveEndConds().

See Also

ggAddGraphCurve Usage
ggSetCurveStartConds
ggSetCurveEndConds