Name: William Greene-Hill
Student Number: C19412942
- Fork this repository and use it a starter project for your assignment
- Create a new package named your student number and put all your code in this package.
- You should start by creating a subclass of ie.tudublin.Visual
- There is an example visualiser called MyVisual in the example package
- Check out the WaveForm and AudioBandsVisual for examples of how to call the Processing functions from other classes that are not subclasses of PApplet
My assignment is based off the sun in the sky, where the circle is the sun on the bottom left of the canvas and the rays the sun omits are the frequency band that thread the beat of the song that plays when ran, HeroPlanet!
Run the program and enjoy!
When run, the program will play the mp3 file. I have drawn a frequency band around the circle (the sun) and they will grow and shrink in tandem with the beat using FFT.
This is emphasis
This is a bulleted list
- Item
- Item
This is a numbered list
- Item
- Item
This is a hyperlink
This is code:
public void render()
{
ui.noFill();
ui.stroke(255);
ui.rect(x, y, width, height);
ui.textAlign(PApplet.CENTER, PApplet.CENTER);
ui.text(text, x + width * 0.5f, y + height * 0.5f);
}
So is this without specifying the language:
public void render()
{
ui.noFill();
ui.stroke(255);
ui.rect(x, y, width, height);
ui.textAlign(PApplet.CENTER, PApplet.CENTER);
ui.text(text, x + width * 0.5f, y + height * 0.5f);
}
This is an image using a relative URL:
This is an image using an absolute URL:
This is a youtube video:
This is a table:
Heading 1 | Heading 2 |
---|---|
Some stuff | Some more stuff in this column |
Some stuff | Some more stuff in this column |
Some stuff | Some more stuff in this column |
Some stuff | Some more stuff in this column |