diff --git a/README.md b/README.md index 289d192..4e7be80 100644 --- a/README.md +++ b/README.md @@ -21,3 +21,21 @@ The second milestone will be to try to move the electrons using superturtle. I t The last milestone (which may be more of a long term goal) would be to add an option to input the name of the element and draw the appropriate drawing based on that. I think this would add quite a bit of complexity, so it may be something I would add later if I end up liking the animation. I think this would involve some if/elif/else statements based on user input, which I have a little bit of familiarity with. I would consider the project successful even if I don't reach this milestone becuase I view it more as an extension of the drawing project. +## Feedback + +Chris, I love this project and I think the milestone makes sense. For drawing +filled shapes (and for other drawing features), make sure you check out the +documentation for [the turtle library](https://docs.python.org/3/library/turtle.html). + +I actually don't think that making the electrons move will be very challenging--once you +have a function to draw a static representation of a ring with electrons in it, you can just +call the function from within a rotation of the frame, as shown in +[the docs](https://superturtle.readthedocs.io/en/latest/animation.html): + +``` +for frame in animate(frames=30): + with frame.rotate(0, 90): + square(100) +``` + +Let's meet if you get stuck!