画一个圆。
圆是一个由 x
、y
、 和 d
参数确定的。 x
和 y
设置其中心点的位置。d
设置其宽度和高度(直径)。圆边缘上的每个点到其中心点的距离都是 d
。移步 ellipseMode() 查看其他设置其位置的方式。
示例
语法
circle(x, y, d)
参数
x
数字:
圆心的 x 坐标。
y
数字:
圆心的 y 坐标。
d
数字:
圆的直径。
Notice any errors or typos? Please let us know. Please feel free to edit src/core/shape/2d_primitives.js and open a pull request!