本文目录一览

1,solidworks里面画一个圆 怎么利用这个圆来画同心圆

可以直接扑捉那个圆的圆心, 也可以随便画一个圆 按住CTRL点圆的边线,左边那里有添加约束的 点同心 回答完毕 谢谢
你在学solidworks?

solidworks里面画一个圆 怎么利用这个圆来画同心圆

2,python turtle画4个同心圆方法

123456789101112131415161718192021 importturtle#draw first circleturtle.penup()turtle.goto(0,-200)turtle.pendown()turtle.circle(200)#draw second circleturtle.penup()turtle.goto(0,-150)turtle.pendown()turtle.circle(150)#draw third circleturtle.penup()turtle.goto(0,-100)turtle.pendown()turtle.circle(100)#draw fourth circleturtle.penup()turtle.goto(0,-50)turtle.pendown()turtle.circle(50) 画笔的坐标默认在0,0,就以它为圆心。因为turtle画圆的时候是从圆的底部开始画的,所以需要找到四个圆底部的坐标比如:第一个半径为200的圆,底部为(0,-200)第二个半径为150的圆,底部为(0,-150)第三个半径为100的圆,底部为(0,-100)第四个半径为 50的圆,底部为(0, -50)画的时候按下面的步骤:1. 抬起画笔:turtle.penup()2. 移动到相应坐标:turtle.goto(坐标)3. 放下画笔:turtle.pendown()4. 画圆:turtle.circle(半径)效果如下图所示:
from turtle import *def Circle(radius,angle,length):for i in range(length):penup()goto(0,angle)pendown()circle(radius)angle=angle+50radius=radius-50Circle(200,-200,4)done()

python turtle画4个同心圆方法


文章TAG:怎么  同心  同心圆  solidworks  su怎么画同心圆  怎么利用这个圆来画同心圆  
下一篇