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
/* MoMath Math Square Behavior | |
* | |
* Title: Waveforms | |
* Description: stand on the knobs to combine simple waveforms into something | |
* more complex, stand on the wave to distort it | |
* Framework: P5 | |
* Author: Tom Quinn <thquinn.github.io> | |
* Created: 2017-07 | |
* Status: works | |
*/ |
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
/* MoMath Math Square Behavior | |
* | |
* Title: Asterangles | |
* Description: cooperative asteroids, form an equilateral triangle with an | |
* asteroid and another player to fire | |
* Framework: P5 | |
* Author: Tom Quinn <thquinn.github.io> | |
* Created: 2018-07 | |
* Status: works | |
*/ |
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
they | |
been | |
said | |
could | |
these | |
also | |
years | |
yeah | |
such | |
must |
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
#!/usr/bin/python | |
import sys | |
import itertools | |
POWER_EVAL = .6 | |
TOUGHNESS_EVAL = .4 | |
DOUBLE_STRIKE_MULT = 1.5 | |
DEATHTOUCH_EVAL = 1 | |
FLYING_EVAL = 1 |
NewerOlder