主页->库函数目录->绘制图形相关函数->ege_drawcurve 功能: 这个函数用于画一条经过所有点的拟合曲线。边线颜色由setcolor函数决定 声明:void ege_drawcurve( int numpoints, ege_point* polypoints, PIMAGE pimg = NULL );注意事项: 使用的是ARGB颜色,透明度不能为0,否则无绘制效果。 参数: numpoints 点的个数。 polypoints 每个点的坐标,数组元素个数为 numpoints。 拟合曲线经过所有点。 pimg 绘制的目标图像,默认为NULL,即绘制到窗口。 返回值: (无) 示例: (无)