- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用此代码并尝试更改代码以获取生气和惊讶的表情。但我做不到。谁能帮帮我?
import turtle
smiles = turtle.Turtle()
smiles.penup()
smiles.goto(-75,150)
smiles.pendown()
smiles.circle(10) #eye one
smiles.penup()
smiles.goto(75,150)
smiles.pendown()
smiles.circle(10) #eye two
smiles.penup()
smiles.goto(0,0)
smiles.pendown()
smiles.circle(100,90) #right smile
smiles.penup()
smiles.setheading(180) # <-- look West
smiles.goto(0,0)
smiles.pendown()
smiles.circle(-100,90)
最佳答案
对于生气的脸,我们可以通过反转当前代码中微笑部分的值来创建嘴巴:
smiles.penup()
smiles.goto(0,50)
smiles.pendown()
smiles.circle(-100,90)
smiles.penup()
smiles.setheading(180)
smiles.goto(0,50)
smiles.pendown()
smiles.circle(100,90)
结果:
让它看起来更像一个经典的生气脸表情符号,如下所示:
我们需要添加愤怒的眉毛,并将眼睛向下移动:
import turtle
smiles = turtle.Turtle()
smiles.penup()
smiles.goto(-105,155)
smiles.pendown()
smiles.goto(-45,115)
smiles.penup()
smiles.goto(-75,75)
smiles.pendown()
smiles.circle(10)
smiles.penup()
smiles.goto(105,155)
smiles.pendown()
smiles.goto(45,115)
smiles.penup()
smiles.goto(75,75)
smiles.pendown()
smiles.circle(10)
smiles.penup()
smiles.goto(0,25)
smiles.pendown()
smiles.circle(-100,80)
smiles.penup()
smiles.setheading(180)
smiles.goto(0,25)
smiles.pendown()
smiles.circle(100,80)
turtle.done()
最终结果:
改进这张愤怒的脸以更匹配表情符号并制作一张惊讶的脸会遵循类似的过程。 提示:为惊喜脸的嘴巴画一个完整的圆圈。
turtle 图形的关键是理解第一个值对应于 x 坐标,第二个值对应于 y 坐标。一旦你明白你可以画任何东西。
关于python-画一张愤怒和惊讶的脸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44493062/
我想以 headless 模式(屏幕上根本没有 GUI)将 JPanel 绘制到 BufferedImage 中。 final JPanel panel = createPanel(); panel.
我是 Canvas 的新手,正在尝试创建看起来逼真的 float 粒子动画。 目前,我正在创建 400 个随机散布在 400x400 Canvas 上的粒子。 然后,在每个 requestAnimat
有没有办法在悬停时停止悬 float 画? :hover 这是一个显示动画的链接: https://codepen.io/youbiteme/pen/RprPrN 最佳答案 只需为您的 svg 悬停添
我想在谷歌地图上绘制覆盖图,其中除了特定点周围 1.5 公里半径以外的所有内容都被遮蔽了。为此,我尝试使用带有大量边框的圆圈,所以我会在边框中放置透明中心和覆盖颜色来实现这一点,但它无法渲染。
我正在尝试通过扩展类 UIView 来创建自定义 View ,该类可以在自定义 View 的中心显示一个圆圈。为了添加自定义绘图,我重写了 draw(_ rect: CGRect) 方法,如下所示。
我是一名优秀的程序员,十分优秀!