使用Python的matplotlib库
```python
import matplotlib.pyplot as plt
import numpy as np
def plot_circle(center, radius):
theta = np.linspace(0, 2*np.pi, 100)
x = center + radius * np.cos(theta)
y = center + radius * np.sin(theta)
plt.plot(x, y)
plt.axis('equal') 设置x轴和y轴的比例相等
plt.show()
示例:画一个半径为5的圆,圆心坐标为(0, 0)
center = (0, 0)
radius = 5
plot_circle(center, radius)
```
使用Python的turtle模块
```python
import turtle
def draw_circle(radius):
turtle.circle(radius)
turtle.done()
示例:画一个半径为100的圆
draw_circle(100)
```
使用Python的easyX库
```c
include
int main() {
initgraph(640, 480); // 创建绘图窗口,大小为 640x480 像素
circle(200, 200, 50); // 画圆心在(200, 200),半径为50的圆
getch(); // 按任意键继续
closegraph(); // 关闭绘图窗口
return 0;
}
```
使用JavaScript和HTML5 Canvas
```html