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> | |
| <script type="text/javascript" src="https://getfirebug.com/firebug-lite-debug.js"></script> | |
| <meta name="description" content="CS4406 Computer Graphics - Assignment #5" /> | |
| <meta charset="utf-8" /> | |
| <title>Assignment #4 for CS4406 Computer Graphics</title> | |
| <style> | |
| #container { | |
| background: #000000; |
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 hosts file is brought to you by Dan Pollock and can be found at | |
| # http://someonewhocares.org/hosts/ | |
| # You are free to copy and distribute this file for non-commercial uses, | |
| # as long the original URL and attribution is included. | |
| #<localhost> | |
| 127.0.0.1 localhost | |
| 127.0.0.1 localhost.localdomain | |
| 255.255.255.255 broadcasthost | |
| ::1 localhost |
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
| // SuperCollider Markov Experiment II | |
| // August 21st, 2011 | |
| // Jacob Joaquin | |
| // CodeHop.com | |
| // | |
| // Translated from Csound: | |
| // http://codehop.com/markov-experiment-ii/ | |
| SynthDef(\my_synth, {|dur = 1.0, amp = 1.0, freq = 440| | |
| var env = EnvGen.ar(Env.new([1, 0.1, 0], [0.06, dur - 0.06]), doneAction: 2); |