python编程:利用函数递归调用和turtle绘制树-3_彭世瑜_新浪博客_python




源代码(还不是太了解~~~囧)

  1. # drawtree.py
  2. from turtle import Turtle, mainloop
  3. def tree(plist, l, a, f):
  4. """ plist is list of pens
  5. l is length of branch
  6. a is half of the angle between 2 branches
  7. f is factor by which branch is shortened
  8. from level to level."""
  9. if l > 5: #
  10. lst = []
  11. for p in plist:
  12. p.forward(l)#沿着当前的方向画画Move the turtle forward by the specified distance, in the direction the turtle is headed.
  13. q = p.clone()#Create and return a clone of the turtle with same position, heading and turtle properties.
  14. p.left(a) #Turn turtle left by angle units
  15. q.right(a)# turn turtle right by angle units, nits are by default degrees, but can be set via the degrees() and radians() functions.
  16. lst.append(p)#将元素增加到列表的最后
  17. lst.append(q)
  18. tree(lst, l*f, a, f)
  19. def main():
  20. p = Turtle()
  21. p.color("green")
  22. p.pensize(5)
  23. #p.setundobuffer(None)
  24. p.hideturtle() #Make the turtle invisible. It’s a good idea to do this while you’re in the middle of doing some complex drawing,
  25. #because hiding the turtle speeds up the drawing observably.
  26. #p.speed(10)
  27. # p.getscreen().tracer(1,0)#Return the TurtleScreen object the turtle is drawing on.
  28. p.speed(10)
  29. #TurtleScreen methods can then be called for that object.
  30. p.left(90)# Turn turtle left by angle units. direction 调整画笔
  31. p.penup() #Pull the pen up – no drawing when moving.
  32. p.goto(0,-200)#Move turtle to an absolute position. If the pen is down, draw line. Do not change the turtle’s orientation.
  33. p.pendown()# Pull the pen down – drawing when moving. 这三条语句是一个组合相当于先把笔收起来再移动到指定位置,再把笔放下开始画
  34. #否则turtle一移动就会自动的把线画出来
  35. #t = tree([p], 200, 65, 0.6375)
  36. t = tree([p], 200, 65, 0.6375)
  37. main()