Week_1

Git – code library_ sharing platform.
Git hub – Web browser interface.

Participating in Open source community
– Code should be shared. 


** Getting familiar with ‘ P5.JS ’
** ML5 -> interactive code with signals


Compiled Language
- Put on code, hit-build -> compiling

Interpreted Language
- Computer trying to understand to run.

Compiled Language is faster than interpreted Language.



Scripting
ex) writing words in MS words.
- Writing code inside of a program.

 

P5
- Programming language_ based on Java script
- Java – x same – Java Script
- Framework Library in JS.

 
Processing

- Open framework -> one of famous library to start.
- Java based.
- Install all the stuff first -> interesting!*



** Study Java Script, and it will help A LOT when doing P5. **

** Also, will help when learning other language. **

 

Max/MSP dataflow programming(Node based,,,,)
Shaders – languages for GPU.
Arduino…





IN CLASS (P5)

Rect(x,y,w,h);
-              Draw rectangle.
-              When you put (x,y,num); it automatically will set (w,h) same.

(mouseX, mouseY );
-               Mouse tracking variable in P5.

Syntax
-              Grammer of the language
-              such as ‘ ; ’ – this line finished.
-              ‘ , ’ – separating the value.

 Sketches
-              Name commonly used to describe a P5 program.

 Setup() -> run once.

Draw() -> keep running the function. 60 / FPS

 

/* ---  */ -> comment everything in. -> don’t run in the comment.

Naming is sooooooo important. *****

 

// -> commenting only for one line. 

X recommend dropping FPS, but give the code to delay, instead.

 

x++;   -> ‘++’ means   ‘increasing number’

ex) let x; background(x++)  = background(1,2,3,4,5….) by FPS;

 

“ ” -> string (letter and numbers as text) 

console.log(“Ran this line”);  -> only shown in console.

 

noLoop();
-              Pascal case -> start first word with Lower case,
and following word with Upper Case.

 

Fill(r, g, b, a);  all 255 standard.

 

Accuracy:
Accuracy is how close a measured value is to the actual (true) value.

Precision:
Precision is how close the measured values are to each other.



Questions:

  • Sky Seo : How can I group the individual shapes to change the position of them together without changing all the shapes' position separately?
  • Sky Seo : Can I use Hex Code in p5.JS? I don't see the option for hex code in 'colorMode()'.
  • Sky Seo : IS the color RGB based or RGB'A' based? --- solved. RGBA based, but all the scales are 0 - 255 including 'Alpha' value.





Week_2
Topic: Animation and Variables

** Check out BuiltIn Variables **

Max/MSP – Node based Language.

 

Q:  x++ same as X = x+1; ?? -> Watch video

Week_02

·      If you give a code switching position or orientation like:

Rotate, translate…

-              Need to put it back once you make a group work not to influence to the other shapes.

 

·      mouseX mouseY … variables always kept updated.

 

·      Console.log() = print(“”);

 

·      To use Hex Code, background(“#ffffff”);

-              Put it as ‘string’.

-              #111111f2 -> adding the last 2 Hexadecimal = Alpha

 

-              In Class

·      Using photography -> picking up the color palette = FUN!

 

·      rectMode // ellipseMode

 Changing the orientation.

Option: (CENTER, CORNER, CORNERS).

 

·      Transformation -> moving all together.

·      Rect(x,y,w,h,r1,r2,r3,r4);

 r = radius.

 

 

Data

- information we are active on.

- each byte = pixel.

- bit < byte.

Binary / Decimal / HexDecimal

0-1.     / 0-10.       /.  0-F

FF = 255 ( 15 x 16(bits) + 15);

 

 

 Variables

-              Simplify the name

-              Simplify the way to get the data

-              Container – used in the later on.

 

** Check out Built in Variables **

Variables list:

-              frameCount = number of frames.

 

** Stick with “(  )” for calculation or math

 

 Try it! -> symmetrical shapes…

rect(frameCount*10,mouseY,20,20);

rect(width-(frameCount*10),mouseY,20,20);

 

** Challenge **

Adding number into Hex Code, using:

`${}, ${}` 

 

-              Key  => unput of keyboard when pressed.

 

 

Custom Variable

-              Let variableName;

 

Syntax:

= -> is ‘assigning the value’

== -> is ‘same’

‘let’ -> only stay in a certain Function.

BUT, if you put it outside of function, it becomes ‘Global’.

 

 

  Built-in Function

-              Random(from,to);

-              Map();

-              Mills();  -- What is This?

 

Global:

Let x = 0;

Draw(){

Rect(x,200,100);

X = x+1;

}

 

x++  // same as // x  =  x + 1;

x+=5 // same as // x = x + 5;

x--  // same as // x  =  x - 1;

x-= 5 // same as // x = x - 5;

x*= 0.5 // same as // x = x * 0.5;

 

 

random() &

randomSeed()

 Creating one time random and stay there.

 



week_3

Intro to Media Computing

Week_03

 


Simple function -> lerp(from,to,%);

Ex) x = lerp(x, mouseX, 0.1);

 

·      Edit -> Tidy Code. = auto format

 

·      If you use a Variable only in a specific fuction, don’t make it global, so that people can understand that it is only used in the function.

 

·      Soh Cah Toa



In Class

·      Numerical Expressions.

-              % = remainder

-              Num 나누기 Num 하고 나머지

Ex) 3 % 2 = 1, 1 % 2 = 1, 2%4 = 2 …

 

 

·      String Expressions.

-              Put them in “”

Ex) print(“hello world”) or print(“hello ” + “world”)

 

-              String only works with ‘+’

-              NaN = Not a Number.

 

·      Boolean Expressions

== -> Equivalent.  - comparison

= -> Equal – assigning 

Ex) r = 3>4  ->   false

Ex) r = (3==4)  ->. False

 

&& -> AND

|| -> OR

!=   ->  Not Equal

§  3 <=4 && 4==4    ->   True

§  3<4   ||   4 != 4.   -> True

 

·      Condicional

If ( condition ) {

Do something.

};

Ex) if ( mouseX > 100) {

Print(“To the right”);

Rect(100,100,200);

}

The for and while loops are both used for iteration, but they have different use cases and purposes.

 

for loop:
  • It’s typically used when the number of iterations is known in advance. For example, it's useful for iterating over the elements of a list or a range.
  • The syntax is concise, making it easy to see the range of iteration at a glance.

 

while loop:
  • It continues to execute as long as a specified condition is true. It’s useful when the number of iterations isn’t predetermined and depends on some condition being met.
  • This loop is ideal for situations where you need to keep looping until a certain condition changes.

 

In summary, use for when you have a specific range or number of iterations, and use while when you need to loop based on a condition.

 

Noise

-              value is between 0 – 1;

-              Noise(x,y,z) -> 3차원 공간으로 확장-> 동적 노이즈 생성

 

Fill에도 noise 를 적용할 수 있다.




Week_4





Week_5






Week_5