Note:
-
Cartesian coordinate system (the origin (0,0) place at the top left)
-
createCanvas()
-
2D Primitives
- rect()
- line()
-
Attributes
- rectMode();
Note:
- fill, noFill, stroke, noStroke, background, grayscale / RGB / RGBA
- https://youtu.be/7A5tKW9HGoM (lib variables)
- https://youtu.be/dRhXIIFp-ys (own variables)
- https://youtu.be/T26OJGjI8qI ( += )
- https://youtu.be/POn4cZ0jL-o ( random(min, max) )
- https://youtu.be/nicMAoW6u1g ( map(mutable, min, max, min, max) )
Note:
-
mouseX
,mouseY
-
setup()
is called once (we should do preprocess here) -
draw()
is called multiple time -
mousePressed()
invoke when mouse pressed -
declare, initialize, use: '3 steps variable'
-
built in function like
random
working only whensetup()
is invoke
- https://youtu.be/TaluaAD9MKA (create multiple layer in draw)
- https://youtu.be/LO3Awjn_gyU (control the circle moving left and right alternate infinity time)
- https://youtu.be/r2S7j54I68c?t=722 (&&, ||)
Note:
- Pressed vs Clicked, NOT operator(!), Toggle boolean state
-
https://youtu.be/wRHAitGzBrg (bouncing ball arround screen ref)
-
https://youtu.be/zkc417YapfE (Parameters and Arguments)
-
https://youtu.be/qRnUBiTJ66Y (
return
)
-
https://youtu.be/xG2Vbnv0wvg (Introduce)
-
https://youtu.be/T-HGdc8L-7w (Classes, encapsulation,
constructor
,this
) -
https://youtu.be/rHiSsgFRgx4 (Constructor Arguments)
- https://youtu.be/5nf41qLeagU (Web Editor)
-
https://youtu.be/VIQoUghHSxU (What is an array)
-
https://youtu.be/RXWO3mFuW-I (Arrays and loops)
-
https://youtu.be/fBqaA7zRO58 (Arrays of objects)
-
https://youtu.be/Y8sMnRQYr3c (for...of loop)
-
https://youtu.be/TaN5At5RWH8 (Mouse Interaction with Objects mousePressed -> bubble.click())
-
https://youtu.be/tA_ZgruFF9k (Removing Objects from Arrays)
-
https://youtu.be/W1-ej3Wu5zg (Object Communication P1, two bubbles intersect)
-
https://youtu.be/5Q9cA0REztY (Object Communication P2, n bubbles intersect)
-
https://youtu.be/i2C1hrJMwz0 (Objects and Images,
preload
,loadImage
,random
element in an array)