This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
BOUNCING "V" program version 1 | |
This is the version that is the "starter" for the coding class exercises. | |
For commentary and an introduction to world/local coordinate systems: | |
https://docs.google.com/document/d/14PU6DO_4kwF27xfv4P_2hXptYvCZkTm0tff5BC7V0PQ | |
""" | |
import arcade |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
SIMPLE MOTOR version 1 | |
""" | |
import arcade | |
import pymunk | |
import random | |
import timeit | |
import math |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
INCLINED-PLANK version 1 | |
""" | |
import arcade | |
import pymunk | |
import random | |
import timeit | |
import math |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
SEESAW version 4 | |
This is the version that is the "starter" for the coding class exercises. | |
For commentary and an introduction to world/local coordinate systems: | |
https://docs.google.com/document/d/14PU6DO_4kwF27xfv4P_2hXptYvCZkTm0tff5BC7V0PQ | |
""" | |
import arcade |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
This is the starter code for the exercise described at | |
https://docs.google.com/document/d/1g0jIbT89hR7PfRSo9rZhXb2y5PLY-p6px4sOl7U3BTY | |
I M P O R T A N T : | |
The best way to copy this code into your own Python code editor is to hit the "Raw" button | |
and then copy the code from the text-only version that will appear. | |
""" | |
import arcade |