[][src]Function spatialite_sys::gaiaMakeArc

pub unsafe extern "C" fn gaiaMakeArc(
    center_x: f64,
    center_y: f64,
    radius: f64,
    start: f64,
    stop: f64,
    step: f64
) -> gaiaGeomCollPtr

Creates a Circular Arc (Linestring) Geometry

\param center_x center point X coordinate. \param center_y center point Y coordinate. \param radius the circle's radius. \param start the start angle (in degrees). \param start the stop angle (in degrees). \param step angular distance (in degrees) between points on the circumference.

\sa gaiaMakeCircle, gaiaMakeEllipse, gaiaMakeEllipticArc

\note simply a convenience method defaulting to gaiaMakeEllipticArc with both axes set to radius value