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
| Group A | |
| 0 - Ampex 1200, 15 IPS Multitrack | |
| 1 - Ampex 1200, 30 IPS Multitrack | |
| 2 - Ampex 351, 15 IPS Stereo (tube pre, no tape) | |
| 3 - Ampex 351, 30 IPS Stereo (tube pre, no tape) | |
| 4 - EMI TR-50, Stereo 15 IPS | |
| 5 - EMI TR-50, Dual Mono 15 IPS | |
| 6 - EMI TR-50, Stereo 30 IPS | |
| 7 - EMI TR-50, dual mono 30 IPS | |
| 8 - MCI JH-110, Stereo 15 IPS |
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
| doctype html | |
| html | |
| head | |
| title <?php bloginfo(); wp_title(); ?> | |
| meta name="viewport" content="width=device-width, initial-scale=1" | |
| meta charset="utf-8" | |
| meta http-equiv="X-UA-Compatible" content="IE=edge" | |
| <?php wp_head(); ?> | |
| link rel="stylesheet" href="https://fonts.googleapis.com css?family=Open+Sans:300,400,700" | |
| | <!--[if lt IE 9]><script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"><![endif]--> |
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
| 1 = #F3F993 | |
| 2 = #F5F75C | |
| 3 = #F6F513 | |
| 4 = #EAE615 | |
| 5 = #E0D01B | |
| 6 = #D5BC26 | |
| 7 = #CDAA37 | |
| 8 = #C1963C | |
| 9 = #BE8C3A |
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
| public void update() { | |
| prevX = getX(); | |
| cleanup(); | |
| wrap(playScreen.getViewport()); | |
| this.setPosition(b2body.getPosition().x - getWidth()/2f, | |
| b2body.getPosition().y - getHeight()/2f); | |
| this.setRotation((float)Math.toDegrees(b2body.getAngle())); |
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
| local class = require("middleclass") | |
| local Maze = class('Maze') | |
| Maze.directions = | |
| { | |
| north = { x = 0, y = -1 }, | |
| east = { x = 1, y = 0 }, | |
| south = { x = 0, y = 1 }, | |
| west = { x = -1, y = 0 } |