Skip to content

Instantly share code, notes, and snippets.

@dfsklar
dfsklar / arcmunk_bouncing_v_funnel.py
Last active January 23, 2021 01:17
arcmunk_bouncing_v_funnel.py
"""
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
@dfsklar
dfsklar / arcmunk_simplemotor.py
Created January 21, 2021 22:30
arcmunk_simplemotor.py
"""
SIMPLE MOTOR version 1
"""
import arcade
import pymunk
import random
import timeit
import math
"""
INCLINED-PLANK version 1
"""
import arcade
import pymunk
import random
import timeit
import math
@dfsklar
dfsklar / arcmunk_seesaw.py
Last active January 3, 2021 23:35
Seesaw program
"""
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 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