主页 / 库函数目录 / 图形绘制 / fillcircle


功能:

绘制填充圆。
边线颜色由 setcolor() 函数指定,填充颜色由 setfillcolor() 函数指定。

声明:
void fillcircle(
    int x,
    int y,
    int radius,
    PIMAGE pimg = NULL
);

void fillcirclef(
    float x,
    float y,
    float radius,
    PIMAGE pimg = NULL
);
参数: x 圆的圆心 x 坐标。 y 圆的圆心 y 坐标。 radius 圆的半径。 pimg 绘制的目标图像,默认为 NULL(即绘制到窗口)。 返回值: (无) 示例: (无)