当前位置:   article > 正文

Py代码学习(Ⅴ)——用python代码海龟绘图法绘制五星红旗_python怎么画图案

python怎么画图案

一、前言

我们要想运用python代码绘制出五星红旗,我们首先要对五星红旗的外观形状,长宽比,以及各五角星的方位进行了解。

二、五星红旗的介绍以及画法介绍

        红色为第,长宽比例为3:2。 左上方缀黄色五角星五颗,四颗小星环拱在一颗大星的右面,并各有一个角尖正对大星的中心点。甲、为便于确定五星之位置,先将旗面对分为四个相等的长方形,将左上方之长方形上下划为十等分,左右划为十五等分。乙、大五角星的中心点,在该长方形上五下五、左五右十之处。其画法为:以此点为圆心,以三等分为半径作一圆。在此圆周上,定出五个等距离的点,其一点须位于圆之正上方。然后将此五点中各相隔的两点相联,使各成一直线。此五直线所构成之外轮廓线,即为所需之大五角星。五角星之一个角尖正向上方。丙、四颗小五角星的中心点,第一点在该长方形上二下八、左十右五之处,第二点在上四下六、左十二右三之处,第三点在上七下三、左十二右三之处,第四点在上九下一、左十右五之处。其画法为:以以上四点为圆心,各以一等分为半径,分别作四个圆。在每个圆上各定出五个等距离的点,其中均须各有一点位于大五角星中心点与以上四个圆心的各联结线上。然后用构成大五角星的同样方法,构成小五角星。此四颗小五角星均各有一个角尖正对大五角星的中心点。

三、用CAD绘制思路类比python绘制

参考网址:CAD如何画五星红旗-百度经验 (baidu.com)

四、相关绘制图示

相关代码:

  1. import turtle as t
  2. import math as m
  3. def wjx(long): #画五角星函数
  4. t.color('yellow')
  5. t.begin_fill()
  6. t.rt(180)
  7. for i in range(5):
  8. t.fd(long)
  9. t.rt(144)
  10. t.end_fill()
  11. flag_w=eval(input("请输入国旗宽度:"))
  12. flag_h=flag_w*2/3
  13. t.setup(flag_w+60,flag_h+40,0,0) #设置画布大小
  14. c_len=flag_w/30 #单元格长度
  15. def grid(): #画出辅助格子函数
  16. t.color("white")
  17. for i in range(11):
  18. t.penup()
  19. t.goto(-flag_w/2,flag_h/2-i*c_len)
  20. t.seth(0)
  21. t.pendown()
  22. t.fd(c_len*15)
  23. for i in range(16):
  24. t.seth(90)
  25. t.penup()
  26. t.goto(-i*c_len,0)
  27. t.pendown()
  28. t.fd(c_len*10)
  29. t.color("red") #国旗布背景
  30. t.penup()
  31. t.goto(-flag_w/2,flag_h/2)
  32. t.pendown()
  33. t.begin_fill()
  34. t.fd(flag_w)
  35. t.right(90)
  36. t.fd(flag_h)
  37. t.right(90)
  38. t.fd(flag_w)
  39. t.right(90)
  40. t.fd(flag_h)
  41. t.end_fill()
  42. #grid() #画出格子
  43. t.color("yellow") #大五角星
  44. t.penup()
  45. t.bk(c_len*5)
  46. t.rt(90)
  47. t.fd(c_len*5)
  48. t.left(90+72)
  49. r=flag_h/3/2 #大圆半径
  50. t.fd(r)
  51. t.rt(90+72)
  52. t.pendown()
  53. wjx(r*m.sin(36)*2)
  54. #右上角第一个星
  55. t.penup()
  56. t.goto(-c_len*5,c_len*8)
  57. t.seth(m.atan(3/5)*180/m.pi+180)
  58. r=flag_h/10/2
  59. t.fd(r)
  60. t.rt(162)
  61. t.pendown()
  62. wjx(r*m.sin(36)*2)
  63. #右上角第二个星
  64. t.penup()
  65. t.goto(-c_len*3,c_len*6)
  66. t.seth(m.atan(1/7)*180/m.pi+180)
  67. r=flag_h/10/2
  68. t.fd(r)
  69. t.rt(162)
  70. t.pendown()
  71. wjx(r*m.sin(36)*2)
  72. #右下角第三个星
  73. t.penup()
  74. t.goto(-c_len*3,c_len*3)
  75. t.seth(180-m.atan(2/7)*180/m.pi)
  76. r=flag_h/10/2
  77. t.fd(r)
  78. t.rt(162)
  79. t.pendown()
  80. wjx(r*m.sin(36)*2)
  81. #右下角第四个星
  82. t.penup()
  83. t.goto(-c_len*5,c_len*1)
  84. t.seth(180-m.atan(4/5)*180/m.pi)
  85. r=flag_h/10/2
  86. t.fd(r)
  87. t.rt(162)
  88. t.pendown()
  89. wjx(r*m.sin(36)*2)
  90. t.penup()
  91. t.goto(-c_len*10,c_len*5)
  92. t.done()

绘制结果展示: 

 

我们可以通过修改代码在所绘制的图案上添加绘制人等相关信息,首先我们需要一串代码来获取我们所绘制的图案(以400px为例)的边界框大小范围(min_x, max_x),(min_y, max_y)

  1. # 获取绘制的图案的边界框
  2. min_x, max_x = min(t.xcor(), t.xcor() + flag_w), max(t.xcor(), t.xcor() + flag_w)
  3. min_y, max_y = min(t.ycor(), t.ycor() - flag_h), max(t.ycor(), t.ycor() - flag_h)
  4. print("边界框坐标:")
  5. print("最小 X 值:", min_x)
  6. print("最大 X 值:", max_x)
  7. print("最小 Y 值:", min_y)
  8. print("最大 Y 值:", max_y)

运行结果为: 

可以通过对边界的位置以及对文本框位置的输出,经过调试可让文本框出现在预定位置

  1. # 获取文本框的位置
  2. text_x, text_y = t.xcor(), t.ycor()
  3. print("文本框的位置 (x, y):", text_x, text_y)

插入相关代码:

  1. import turtle as t
  2. import math as m
  3. def wjx(long): # 画五角星函数
  4. t.color('yellow')
  5. t.begin_fill()
  6. t.rt(180)
  7. for i in range(5):
  8. t.fd(long)
  9. t.rt(144)
  10. t.end_fill()
  11. flag_w = eval(input("请输入国旗宽度:"))
  12. flag_h = flag_w * 2 / 3
  13. t.setup(flag_w + 60, flag_h + 40, 0, 0) # 设置画布大小
  14. c_len = flag_w / 30 # 单元格长度
  15. t.speed(0) # 设置绘制速度为最快
  16. def grid(): # 画出辅助格子函数
  17. t.color("white")
  18. for i in range(11):
  19. t.penup()
  20. t.goto(-flag_w / 2, flag_h / 2 - i * c_len)
  21. t.seth(0)
  22. t.pendown()
  23. t.fd(c_len * 15)
  24. for i in range(16):
  25. t.seth(90)
  26. t.penup()
  27. t.goto(-i * c_len, 0)
  28. t.pendown()
  29. t.fd(c_len * 10)
  30. t.color("red") # 国旗布背景
  31. t.penup()
  32. t.goto(-flag_w / 2, flag_h / 2)
  33. t.pendown()
  34. t.begin_fill()
  35. t.fd(flag_w)
  36. t.right(90)
  37. t.fd(flag_h)
  38. t.right(90)
  39. t.fd(flag_w)
  40. t.right(90)
  41. t.fd(flag_h)
  42. t.end_fill()
  43. # grid() # 画出格子
  44. t.color("yellow") # 大五角星
  45. t.penup()
  46. t.bk(c_len * 5)
  47. t.rt(90)
  48. t.fd(c_len * 5)
  49. t.left(90 + 72)
  50. r = flag_h / 3 / 2 # 大圆半径
  51. t.fd(r)
  52. t.rt(90 + 72)
  53. t.pendown()
  54. wjx(r * m.sin(36) * 2)
  55. # 右上角第一个星
  56. t.penup()
  57. t.goto(-c_len * 5, c_len * 8)
  58. t.seth(m.atan(3 / 5) * 180 / m.pi + 180)
  59. r = flag_h / 10 / 2
  60. t.fd(r)
  61. t.rt(162)
  62. t.pendown()
  63. wjx(r * m.sin(36) * 2)
  64. # 右上角第二个星
  65. t.penup()
  66. t.goto(-c_len * 3, c_len * 6)
  67. t.seth(m.atan(1 / 7) * 180 / m.pi + 180)
  68. r = flag_h / 10 / 2
  69. t.fd(r)
  70. t.rt(162)
  71. t.pendown()
  72. wjx(r * m.sin(36) * 2)
  73. # 右下角第三个星
  74. t.penup()
  75. t.goto(-c_len * 3, c_len * 3)
  76. t.seth(180 - m.atan(2 / 7) * 180 / m.pi)
  77. r = flag_h / 10 / 2
  78. t.fd(r)
  79. t.rt(162)
  80. t.pendown()
  81. wjx(r * m.sin(36) * 2)
  82. # 右下角第四个星
  83. t.penup()
  84. t.goto(-c_len * 5, c_len * 1)
  85. t.seth(180 - m.atan(4 / 5) * 180 / m.pi)
  86. r = flag_h / 10 / 2
  87. t.fd(r)
  88. t.rt(162)
  89. t.pendown()
  90. wjx(r * m.sin(36) * 2)
  91. # 获取绘制的图案的边界框
  92. min_x, max_x = min(t.xcor(), t.xcor() + flag_w), max(t.xcor(), t.xcor() + flag_w)
  93. min_y, max_y = min(t.ycor(), t.ycor() - flag_h), max(t.ycor(), t.ycor() - flag_h)
  94. # 计算文本框的位置
  95. text_x = max_x - (flag_w / 20)-300 # 20 是一个调整文本位置的因子
  96. text_y = min_y + (flag_h / 20) +100 # 20 同样是一个调整文本位置的因子
  97. # 添加文本 (右下角)
  98. t.penup()
  99. t.goto(text_x, text_y)
  100. t.color("yellow")
  101. t.write("绘制人:张培森 202209327", align="left", font=("Arial", 12, "normal"))
  102. # 获取绘制的图案的边界框坐标
  103. print("边界框坐标:")
  104. print("最小 X 值:", min_x)
  105. print("最大 X 值:", max_x)
  106. print("最小 Y 值:", min_y)
  107. print("最大 Y 值:", max_y)
  108. # 获取文本框的位置
  109. text_x, text_y = t.xcor(), t.ycor()
  110. print("文本框的位置 (x, y):", text_x, text_y)
  111. t.done()

效果图: 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/421616
推荐阅读
相关标签
  

闽ICP备14008679号