Tom – [OLD SEMESTER] 15-104 • Introduction to Computing for Creative Practice https://courses.ideate.cmu.edu/15-104/f2022 Professor Tom Cortina • Fall 2022 • Introduction to Computing for Creative Practice Fri, 10 Sep 2021 20:17:32 +0000 en-US hourly 1 https://wordpress.org/?v=6.0.8 https://courses.ideate.cmu.edu/15-104/f2022/2021/09/10/65337/ https://courses.ideate.cmu.edu/15-104/f2022/2021/09/10/65337/#respond Fri, 10 Sep 2021 20:08:46 +0000 https://courses.ideate.cmu.edu/15-104/f2022/?p=65337 Continue reading ""]]>
sketchDownload
function setup() {
    createCanvas(200, 200);
    background(220);
    text("p5.js vers 0.9.0 test.", 10, 15);
}

function draw() {
	background(204);
	ellipse(50, 50, 80, 80);
}
sketchDownload
function setup() {
    createCanvas(300, 300);
    background(220);
//    text("p5.js vers 0.9.0 test.", 10, 15);
}

function draw() {
	if (mouseX < width / 2) {    // left side
		if (mouseY < height / 2) {     // top half
			background(255, 0, 0);
		}
		else {   // bottom half
			background(0, 255, 0);
		}
	}
	else {   // right side
		if (mouseY < height / 2) {  // top half
			background(0, 0, 255);
		}
		else {	// bottom half
			background(0, 0, 0);
		}
	}
}

]]>
https://courses.ideate.cmu.edu/15-104/f2022/2021/09/10/65337/feed/ 0
https://courses.ideate.cmu.edu/15-104/f2022/2021/09/10/65333/ https://courses.ideate.cmu.edu/15-104/f2022/2021/09/10/65333/#respond Fri, 10 Sep 2021 16:04:26 +0000 https://courses.ideate.cmu.edu/15-104/f2022/?p=65333

]]>
https://courses.ideate.cmu.edu/15-104/f2022/2021/09/10/65333/feed/ 0
https://courses.ideate.cmu.edu/15-104/f2022/2021/09/10/65330/ https://courses.ideate.cmu.edu/15-104/f2022/2021/09/10/65330/#respond Fri, 10 Sep 2021 16:00:41 +0000 https://courses.ideate.cmu.edu/15-104/f2022/?p=65330

]]>
https://courses.ideate.cmu.edu/15-104/f2022/2021/09/10/65330/feed/ 0
Test Post https://courses.ideate.cmu.edu/15-104/f2022/2021/09/07/test-post/ https://courses.ideate.cmu.edu/15-104/f2022/2021/09/07/test-post/#respond Tue, 07 Sep 2021 15:24:27 +0000 https://courses.ideate.cmu.edu/15-104/f2022/?p=64865 Continue reading "Test Post"]]>

Here is a simple program.

sketchDownload
function setup() {
    createCanvas(300, 300);
    background(220);
//    text("p5.js vers 0.9.0 test.", 10, 15);
}

function draw() {
	if (mouseX < width / 2) {    // left side
		if (mouseY < height / 2) {     // top half
			background(255, 0, 0);
		}
		else {   // bottom half
			background(0, 255, 0);
		}
	}
	else {   // right side
		if (mouseY < height / 2) {  // top half
			background(0, 0, 255);
		}
		else {	// bottom half
			background(0, 0, 0);
		}
	}
}
]]>
https://courses.ideate.cmu.edu/15-104/f2022/2021/09/07/test-post/feed/ 0
Project 1 – Self Portrait https://courses.ideate.cmu.edu/15-104/f2022/2020/09/08/project-1-self-portrait-15/ https://courses.ideate.cmu.edu/15-104/f2022/2020/09/08/project-1-self-portrait-15/#respond Tue, 08 Sep 2020 23:35:37 +0000 https://courses.ideate.cmu.edu/15-104/f2022/?p=56086

This is what I look like in the morning…

morning-portrait
function setup() {
    createCanvas(200, 200);
    background(220);
    text("p5.js vers 0.9.0 test.", 10, 15);
}

function draw() {
	background(204);
	ellipse(50, 50, 80, 80);
}

]]>
https://courses.ideate.cmu.edu/15-104/f2022/2020/09/08/project-1-self-portrait-15/feed/ 0
LO 1 – My inspiration https://courses.ideate.cmu.edu/15-104/f2022/2020/09/08/lo-1-my-inspiration-2/ https://courses.ideate.cmu.edu/15-104/f2022/2020/09/08/lo-1-my-inspiration-2/#respond Tue, 08 Sep 2020 23:18:40 +0000 https://courses.ideate.cmu.edu/15-104/f2022/?p=56021

Here is where you would enter your blog text.

Pixar is where I would work if I didn’t work at CMU.

Scene from the upcoming PIxar movie, Soul.
]]>
https://courses.ideate.cmu.edu/15-104/f2022/2020/09/08/lo-1-my-inspiration-2/feed/ 0
Project 01 – Self Portrait https://courses.ideate.cmu.edu/15-104/f2022/2020/09/08/project-01-self-portrait-5/ https://courses.ideate.cmu.edu/15-104/f2022/2020/09/08/project-01-self-portrait-5/#respond Tue, 08 Sep 2020 18:07:51 +0000 https://courses.ideate.cmu.edu/15-104/f2022/?p=55849

This is what I look like in the morning.

morning-portrait
function setup() {
    createCanvas(200, 200);
    background(220);
    text("p5.js vers 0.9.0 test.", 10, 15);
}

function draw() {
	background(204);
	ellipse(50, 50, 80, 80);
}

]]>
https://courses.ideate.cmu.edu/15-104/f2022/2020/09/08/project-01-self-portrait-5/feed/ 0
LO1 – My Inspiration https://courses.ideate.cmu.edu/15-104/f2022/2020/09/08/lo1-my-inspiration-3/ https://courses.ideate.cmu.edu/15-104/f2022/2020/09/08/lo1-my-inspiration-3/#respond Tue, 08 Sep 2020 17:44:03 +0000 https://courses.ideate.cmu.edu/15-104/f2022/?p=55802

My inspiration would go here.

Pixar is where I wish I could work if I didn’t work at CMU.

Image from the upcoming Pixar movie, Soul.
]]>
https://courses.ideate.cmu.edu/15-104/f2022/2020/09/08/lo1-my-inspiration-3/feed/ 0
Project 1 – Self Portrait https://courses.ideate.cmu.edu/15-104/f2022/2020/09/08/project-1-self-portrait-5/ https://courses.ideate.cmu.edu/15-104/f2022/2020/09/08/project-1-self-portrait-5/#respond Tue, 08 Sep 2020 14:32:28 +0000 https://courses.ideate.cmu.edu/15-104/f2022/?p=55644

This is what I look like in the morning.

portrait
function setup() {
    createCanvas(200, 200);
    background(220);
    text("p5.js vers 0.9.0 test.", 10, 15);
}

function draw() {
	background(204);
	ellipse(50, 50, 80, 80);
}
]]>
https://courses.ideate.cmu.edu/15-104/f2022/2020/09/08/project-1-self-portrait-5/feed/ 0
LO – My Inspiration https://courses.ideate.cmu.edu/15-104/f2022/2020/09/08/lo-my-inspiration-9/ https://courses.ideate.cmu.edu/15-104/f2022/2020/09/08/lo-my-inspiration-9/#respond Tue, 08 Sep 2020 14:13:05 +0000 https://courses.ideate.cmu.edu/15-104/f2022/?p=55576

This is where your blog would go.

Disney’s Pixar really excites my imagination.

Scene from the movie Soul by Pixar.

]]>
https://courses.ideate.cmu.edu/15-104/f2022/2020/09/08/lo-my-inspiration-9/feed/ 0