SlideShare a Scribd company logo
1 of 69
VART3227

Evolutionary Graphics
Class 02: Coordinates & geometry
VART3227

Remember in last week. We described our patterns.
Horizontal lines distributed evenly…
Four squares, symmetric…
VART3227

Any systematic way to describe, notate, analyze visual
forms in everyday life?
Euclid
Euclidean Geometry

Greek mathematician – Euclid (300 BC)

Elements – first systematic text on the studies of
geometry. Assuming a small set of axioms
(assumptions), it proves other propositions by logical
deduction.
We focus on the Plane Geometry (2D)
Straight line
Circle
Parallel lines
Numbers

We also learn numbers in primary school.

Integer
Rational number
Real number
Integer

We are familiar with Integers,

1, 2, 3, 4, 5, …
Integer

Some number sequences are geometric in nature. For
example,
1, 4, 9, 16, 25, 36, …
Square number
Square number

In Context Free Art, we can have nested repetitions,
startshapemyShape
shape myShape {
loop 5 [y 1] {
loop 5 [x 1]
CIRCLE []
}
}
Integer

Another number sequence is,

1, 3, 6, 10, 15, 21, …
Guess what shape it is?
Integer

Another number sequence is,

1, 4, 9, 16, 25, 36, …
Can it be something else other than a square?
Integer

Hex numbers are,

1, 7, 19, 37, 61, …
It arranges like a hexagon.
Integer
Fibonacci numbers

One of the most interesting number sequence is the
Fibonacci number.
1, 1, 2, 3, 5, 8, 13, 21, 34, …
Golden section
Golden section
Typography
Golden section
Golden section

The ratio of the golden section is roughly,
1:1.618 or 0.618:1
If we take a look at the Fibonacci sequence,
1, 1, 2, 3, 5, 8, 13, 21, 34, …
When we divide two consecutive numbers …
Fibonacci number

Can you find the relation between the Fibonacci
numbers and this?
Coordinate system

Remember the 2D plane with X and Y axis.

It is a combination of geometry and the number system.
Coordinate geometry
y (+)

sin (θ)

angle θ
x (-)

centre (0, 0)

y (-)

cos (θ)

x (+)
Coordinate geometry
y (+)

x (-)

centre (0, 0)

y (-)

x (+)
Visual Design

Conceptual elements

Point
Line
Plane
Volume
Visual Design

Visual elements

Shape, e.g. SQUARE, TRIANGLE, SQUARE
Size
Colour, e.g. Hue, Saturation, Brightness
Texture
Visual Design

Repetition
Visual Design

Structure
Visual Design

Gradation
Visual Design

Radiation
CFA

Implementation in Context Free Art
Lines

Two points give you a straight line.

MOVETO (0, 0)
LINETO (1, 1)
Multiple lines

When you have multiple lines,

MOVETO (0, 0)
LINETO (1, 2)
LINETO (2, 0)
LINETO (0, 0)
Multiple lines

You expect a triangular shape?
Multiple lines

Take this one again,

MOVETO (0, 0)
LINETO (1, 2)
LINETO (2, 0)
LINETO (0, 0)
CLOSEPOLY ()
Shape

It looks better.
Circular path

Try the following circular path with ARCTO,

MOVETO (0, 0)
ARCTO (1, 0, 0.5)
Circular path
Circular path

Try the following circular path with ARCTO,

MOVETO (0, 0)
ARCTO (1, 0, 0.5, CF::ArcCW)

CF::ArcCW means clockwise.
Circular path
Circular path

To complete the path as a circle,

MOVETO (0, 0)
ARCTO (1, 0, 0.5)
ARCTO (0, 0, 0.5)
CLOSEPOLY ()

STROKE () []
FILL [h 60 sat 1 b 1]
Circular path
Circular path

To draw an ellipse,
MOVETO (0, 0)
ARCTO (1, 0, 0.5, 0.3, 180)
ARCTO (0, 0, 0.5, 0.3, 180)
CLOSEPOLY ()
STROKE () []
FILL [h 60 sat 1 b 1]
Circular path
Colour wheel – hue
Example photo
More path command

We start from a simple LINETO with the use of sine and
cosine functions we have learnt in secondary school.

LINETO (cos(?), sin(?))
Coordinate geometry
y (+)

sin (θ)

angle θ
x (-)

centre (0, 0)

y (-)

cos (θ)

x (+)
More path command

Let’s put it together.

MOVETO (1, 0)
LINETO (cos(30), sin(30))
STROKE () []
More path command

We do repetition within a path.

MOVETO (1, 0)
loop 2 [r 30] {
LINETO (cos(30), sin(30))
}

STROKE () []
More path command

We do more repetitions to form a polygon.

MOVETO (1, 0)
loop 12 [r 30] {
LINETO (cos(30), sin(30))
}

CLOSEPOLY ()
STROKE () []
More path command

We add a bit complication.

MOVETO (1, 0)
loop 12 [r (360/13)] {
LINETO (cos(360/13), sin(360/13)}
}

CLOSEPOLY ()
STROKE () []
More path command

We add a bit complication.

MOVETO (1, 0)
loop 12 [r (4*360/13)] {
LINETO (cos(4*360/13), sin(4*360/13))
}

CLOSEPOLY ()
STROKE () []
More path command

We fill it with colour.

MOVETO (1, 0)
loop 12 [r (4*360/13)] {
LINETO (cos(4*360/13), sin(4*360/13))
}

CLOSEPOLY ()
FILL () []
More path command

We modify the fill effect.

MOVETO (1, 0)
loop 12 [r (4*360/13)] {
LINETO (cos(4*360/13), sin(4*360/13))
}

CLOSEPOLY ()
FILL (CF::EvenOdd) []
Sample image
Randomness

We may from time to time to create something not that
deterministic. That is, we want surprise.
In mathematics, it is randomness and probability we
have learnt in secondary school.
Randomness

Consider throwing a coin, we have Head or Tail. If we
design a coin with one side red and other side blue, we

can draw the coin. It can either be red or blue.
By using Context Free Art, we achieve by using multiple
rules of the same name.
Randomness

First, we define a red coin,

path CoinRed {
MOVETO (0, 0)
ARCTO (1, 0, 0.5)
ARCTO (0, 0, 0.5)

STROKE () []
FILL [h 0 sat 1 b 1]
}
Randomness

Then we define a blue coin,

path CoinBlue {
MOVETO (0, 0)
ARCTO (1, 0, 0.5)
ARCTO (0, 0, 0.5)

STROKE () []
FILL [h 240 sat 1 b 1]
}
Randomness

Then we have two definitions of a shape,

shape MyCoin {
CoinRed []
}

shape MyCoin {
CoinBlue []
}
Randomness

You test by creating a repetition of the MyCoin rule.
Randomness

You can control the ‘randomness’ by specifying a number
for each rule with the same name.

shape myCoin
rule 10% {
…

}
rule 90% {
…
}
Exercise

Using a grid of 3 x 3 to design a few graphical patterns.
Exercise

Using a grid of 3 x 3 to design a few graphical patterns.
Exercise

Create a tile of the basic graphical patterns with the use
of randomness.

More Related Content

What's hot

Final Revision Math Primary 2 (Part 1)
Final Revision   Math   Primary 2 (Part 1)Final Revision   Math   Primary 2 (Part 1)
Final Revision Math Primary 2 (Part 1)guest422113a9
 
2 3 Bzca5e
2 3 Bzca5e2 3 Bzca5e
2 3 Bzca5esilvia
 
5 parametric equations, tangents and curve lengths in polar coordinates
5 parametric equations, tangents and curve lengths in polar coordinates5 parametric equations, tangents and curve lengths in polar coordinates
5 parametric equations, tangents and curve lengths in polar coordinatesmath267
 
Learn Creative Coding: Begin Programming with the Processing Language
Learn Creative Coding: Begin Programming with the Processing LanguageLearn Creative Coding: Begin Programming with the Processing Language
Learn Creative Coding: Begin Programming with the Processing Languageshelfrog
 
Learn Creative Coding: Begin Programming with the Processing Language
Learn Creative Coding: Begin Programming with the Processing LanguageLearn Creative Coding: Begin Programming with the Processing Language
Learn Creative Coding: Begin Programming with the Processing LanguageW M Harris
 
Calculus II - 34
Calculus II - 34Calculus II - 34
Calculus II - 34David Mao
 
CST 504 Linear Equations
CST 504 Linear EquationsCST 504 Linear Equations
CST 504 Linear EquationsNeil MacIntosh
 
12 cbse-maths-2014-solution set 1
12 cbse-maths-2014-solution set 1 12 cbse-maths-2014-solution set 1
12 cbse-maths-2014-solution set 1 vandna123
 
3.4 ellipses
3.4 ellipses3.4 ellipses
3.4 ellipsesmath123c
 
Calculus II - 33
Calculus II - 33Calculus II - 33
Calculus II - 33David Mao
 
Tugas matematika kelompok
Tugas matematika kelompokTugas matematika kelompok
Tugas matematika kelompokachmadtrybuana
 
59 constructing linea equations of lines
59 constructing linea equations of lines59 constructing linea equations of lines
59 constructing linea equations of linesalg1testreview
 
Tugasmatematikakelompok 150715235527-lva1-app6892
Tugasmatematikakelompok 150715235527-lva1-app6892Tugasmatematikakelompok 150715235527-lva1-app6892
Tugasmatematikakelompok 150715235527-lva1-app6892drayertaurus
 
CST 504 Graphing Inequalities
CST 504 Graphing InequalitiesCST 504 Graphing Inequalities
CST 504 Graphing InequalitiesNeil MacIntosh
 
CST 504 Standard and Function Form of a Line
CST 504 Standard and Function Form of a LineCST 504 Standard and Function Form of a Line
CST 504 Standard and Function Form of a LineNeil MacIntosh
 
Quadratic equations class 10
Quadratic equations class 10Quadratic equations class 10
Quadratic equations class 10AadhiSXA
 

What's hot (20)

Final Revision Math Primary 2 (Part 1)
Final Revision   Math   Primary 2 (Part 1)Final Revision   Math   Primary 2 (Part 1)
Final Revision Math Primary 2 (Part 1)
 
2 3 Bzca5e
2 3 Bzca5e2 3 Bzca5e
2 3 Bzca5e
 
Complex numbers
Complex numbersComplex numbers
Complex numbers
 
5 parametric equations, tangents and curve lengths in polar coordinates
5 parametric equations, tangents and curve lengths in polar coordinates5 parametric equations, tangents and curve lengths in polar coordinates
5 parametric equations, tangents and curve lengths in polar coordinates
 
Learn Creative Coding: Begin Programming with the Processing Language
Learn Creative Coding: Begin Programming with the Processing LanguageLearn Creative Coding: Begin Programming with the Processing Language
Learn Creative Coding: Begin Programming with the Processing Language
 
Learn Creative Coding: Begin Programming with the Processing Language
Learn Creative Coding: Begin Programming with the Processing LanguageLearn Creative Coding: Begin Programming with the Processing Language
Learn Creative Coding: Begin Programming with the Processing Language
 
Calculus II - 34
Calculus II - 34Calculus II - 34
Calculus II - 34
 
CST 504 Linear Equations
CST 504 Linear EquationsCST 504 Linear Equations
CST 504 Linear Equations
 
12 cbse-maths-2014-solution set 1
12 cbse-maths-2014-solution set 1 12 cbse-maths-2014-solution set 1
12 cbse-maths-2014-solution set 1
 
Cs580
Cs580Cs580
Cs580
 
3.4 ellipses
3.4 ellipses3.4 ellipses
3.4 ellipses
 
Calculus II - 33
Calculus II - 33Calculus II - 33
Calculus II - 33
 
Articles en mathematics_4
Articles en mathematics_4Articles en mathematics_4
Articles en mathematics_4
 
maths basics
maths basicsmaths basics
maths basics
 
Tugas matematika kelompok
Tugas matematika kelompokTugas matematika kelompok
Tugas matematika kelompok
 
59 constructing linea equations of lines
59 constructing linea equations of lines59 constructing linea equations of lines
59 constructing linea equations of lines
 
Tugasmatematikakelompok 150715235527-lva1-app6892
Tugasmatematikakelompok 150715235527-lva1-app6892Tugasmatematikakelompok 150715235527-lva1-app6892
Tugasmatematikakelompok 150715235527-lva1-app6892
 
CST 504 Graphing Inequalities
CST 504 Graphing InequalitiesCST 504 Graphing Inequalities
CST 504 Graphing Inequalities
 
CST 504 Standard and Function Form of a Line
CST 504 Standard and Function Form of a LineCST 504 Standard and Function Form of a Line
CST 504 Standard and Function Form of a Line
 
Quadratic equations class 10
Quadratic equations class 10Quadratic equations class 10
Quadratic equations class 10
 

Similar to Evolutionary Graphics - Class 02 2014

Cartesian Coordinate Plane
Cartesian Coordinate PlaneCartesian Coordinate Plane
Cartesian Coordinate Planechingkai08
 
Cartesian coordinate plane
Cartesian coordinate planeCartesian coordinate plane
Cartesian coordinate planeElvie Hernandez
 
cartesiancoordinateplane-140804022012-phpapp01.pdf
cartesiancoordinateplane-140804022012-phpapp01.pdfcartesiancoordinateplane-140804022012-phpapp01.pdf
cartesiancoordinateplane-140804022012-phpapp01.pdfKayraTheressGubat
 
15.) Line L in the figure below is parallel to the line y=.docx
15.) Line L in the figure below is parallel to the line y=.docx15.) Line L in the figure below is parallel to the line y=.docx
15.) Line L in the figure below is parallel to the line y=.docxherminaprocter
 
Calculus II - 35
Calculus II - 35Calculus II - 35
Calculus II - 35David Mao
 
Matlab level 1.pptx
Matlab level 1.pptxMatlab level 1.pptx
Matlab level 1.pptxAbanobGozef
 
Engineering Mathematics-IV_B.Tech_Semester-IV_Unit-V
Engineering Mathematics-IV_B.Tech_Semester-IV_Unit-VEngineering Mathematics-IV_B.Tech_Semester-IV_Unit-V
Engineering Mathematics-IV_B.Tech_Semester-IV_Unit-VRai University
 
engineeringmathematics-iv_unit-v
engineeringmathematics-iv_unit-vengineeringmathematics-iv_unit-v
engineeringmathematics-iv_unit-vKundan Kumar
 
Fundamentals of Multimedia - Vector Graphics.pdf
Fundamentals of Multimedia - Vector Graphics.pdfFundamentals of Multimedia - Vector Graphics.pdf
Fundamentals of Multimedia - Vector Graphics.pdfFatihahIrra
 
Introduction to MatLab programming
Introduction to MatLab programmingIntroduction to MatLab programming
Introduction to MatLab programmingDamian T. Gordon
 
Teoria y problemas de funcion lineal fl54 ccesa007
Teoria y problemas de funcion  lineal  fl54 ccesa007Teoria y problemas de funcion  lineal  fl54 ccesa007
Teoria y problemas de funcion lineal fl54 ccesa007Demetrio Ccesa Rayme
 
An introdcution to complex numbers jcw
An introdcution to complex numbers jcwAn introdcution to complex numbers jcw
An introdcution to complex numbers jcwjenniech
 
Geothermal-Energy Science 9 - Junior Hihg School
Geothermal-Energy Science 9 - Junior Hihg SchoolGeothermal-Energy Science 9 - Junior Hihg School
Geothermal-Energy Science 9 - Junior Hihg SchoolHenryViernes
 
5 1 Linear Functions
5 1 Linear Functions5 1 Linear Functions
5 1 Linear Functionstaco40
 
High-dimensional sampling and volume computation
High-dimensional sampling and volume computationHigh-dimensional sampling and volume computation
High-dimensional sampling and volume computationVissarion Fisikopoulos
 
Coordinates y3 y4
Coordinates y3 y4Coordinates y3 y4
Coordinates y3 y4daliamada
 

Similar to Evolutionary Graphics - Class 02 2014 (20)

Cartesian Coordinate Plane
Cartesian Coordinate PlaneCartesian Coordinate Plane
Cartesian Coordinate Plane
 
Cartesian coordinate plane
Cartesian coordinate planeCartesian coordinate plane
Cartesian coordinate plane
 
cartesiancoordinateplane-140804022012-phpapp01.pdf
cartesiancoordinateplane-140804022012-phpapp01.pdfcartesiancoordinateplane-140804022012-phpapp01.pdf
cartesiancoordinateplane-140804022012-phpapp01.pdf
 
15.) Line L in the figure below is parallel to the line y=.docx
15.) Line L in the figure below is parallel to the line y=.docx15.) Line L in the figure below is parallel to the line y=.docx
15.) Line L in the figure below is parallel to the line y=.docx
 
Calculus II - 35
Calculus II - 35Calculus II - 35
Calculus II - 35
 
Presentation on calculus
Presentation on calculusPresentation on calculus
Presentation on calculus
 
Matlab level 1.pptx
Matlab level 1.pptxMatlab level 1.pptx
Matlab level 1.pptx
 
Engineering Mathematics-IV_B.Tech_Semester-IV_Unit-V
Engineering Mathematics-IV_B.Tech_Semester-IV_Unit-VEngineering Mathematics-IV_B.Tech_Semester-IV_Unit-V
Engineering Mathematics-IV_B.Tech_Semester-IV_Unit-V
 
engineeringmathematics-iv_unit-v
engineeringmathematics-iv_unit-vengineeringmathematics-iv_unit-v
engineeringmathematics-iv_unit-v
 
Functional optics
Functional opticsFunctional optics
Functional optics
 
Fundamentals of Multimedia - Vector Graphics.pdf
Fundamentals of Multimedia - Vector Graphics.pdfFundamentals of Multimedia - Vector Graphics.pdf
Fundamentals of Multimedia - Vector Graphics.pdf
 
Introduction to MatLab programming
Introduction to MatLab programmingIntroduction to MatLab programming
Introduction to MatLab programming
 
Teoria y problemas de funcion lineal fl54 ccesa007
Teoria y problemas de funcion  lineal  fl54 ccesa007Teoria y problemas de funcion  lineal  fl54 ccesa007
Teoria y problemas de funcion lineal fl54 ccesa007
 
An introdcution to complex numbers jcw
An introdcution to complex numbers jcwAn introdcution to complex numbers jcw
An introdcution to complex numbers jcw
 
Geothermal-Energy Science 9 - Junior Hihg School
Geothermal-Energy Science 9 - Junior Hihg SchoolGeothermal-Energy Science 9 - Junior Hihg School
Geothermal-Energy Science 9 - Junior Hihg School
 
5 1 Linear Functions
5 1 Linear Functions5 1 Linear Functions
5 1 Linear Functions
 
Introduction to MATLAB
Introduction to MATLABIntroduction to MATLAB
Introduction to MATLAB
 
High-dimensional sampling and volume computation
High-dimensional sampling and volume computationHigh-dimensional sampling and volume computation
High-dimensional sampling and volume computation
 
G05834551
G05834551G05834551
G05834551
 
Coordinates y3 y4
Coordinates y3 y4Coordinates y3 y4
Coordinates y3 y4
 

More from Bryan Chung

Be a Hong Kong Patriot, Part 3, The Red Scout
Be a Hong Kong Patriot, Part 3, The Red ScoutBe a Hong Kong Patriot, Part 3, The Red Scout
Be a Hong Kong Patriot, Part 3, The Red ScoutBryan Chung
 
Fiction and Film
Fiction and FilmFiction and Film
Fiction and FilmBryan Chung
 
MAVA Information Seminar 2019
MAVA Information Seminar 2019MAVA Information Seminar 2019
MAVA Information Seminar 2019Bryan Chung
 
MAVA Studio Project Introduction 2018
MAVA Studio Project Introduction 2018MAVA Studio Project Introduction 2018
MAVA Studio Project Introduction 2018Bryan Chung
 
MAVA Orientation 2018
MAVA Orientation 2018MAVA Orientation 2018
MAVA Orientation 2018Bryan Chung
 
Class 11 - Social impacts of videogames
Class 11 - Social impacts of videogamesClass 11 - Social impacts of videogames
Class 11 - Social impacts of videogamesBryan Chung
 
Class 10 - Simulation games
Class 10 - Simulation gamesClass 10 - Simulation games
Class 10 - Simulation gamesBryan Chung
 
Class 12 - Videogames technology in art
Class 12 - Videogames technology in artClass 12 - Videogames technology in art
Class 12 - Videogames technology in artBryan Chung
 
Glass 09 - Online game and virtual environment
Glass 09 - Online game and virtual environmentGlass 09 - Online game and virtual environment
Glass 09 - Online game and virtual environmentBryan Chung
 
Class 07 - Game and space
Class 07 - Game and spaceClass 07 - Game and space
Class 07 - Game and spaceBryan Chung
 
Class 06 - Game and narrative
Class 06 - Game and narrativeClass 06 - Game and narrative
Class 06 - Game and narrativeBryan Chung
 
Class 02 - Interactivity, games and arts
Class 02 - Interactivity, games and artsClass 02 - Interactivity, games and arts
Class 02 - Interactivity, games and artsBryan Chung
 
Class 01 - Introduction to Videogames and Arts
Class 01 - Introduction to Videogames and ArtsClass 01 - Introduction to Videogames and Arts
Class 01 - Introduction to Videogames and ArtsBryan Chung
 
Digital Art ToolKit
Digital Art ToolKitDigital Art ToolKit
Digital Art ToolKitBryan Chung
 
Digital Image Workshop
Digital Image WorkshopDigital Image Workshop
Digital Image WorkshopBryan Chung
 
Class 03 - Formal Elements of Game/Play
Class 03 - Formal Elements of Game/PlayClass 03 - Formal Elements of Game/Play
Class 03 - Formal Elements of Game/PlayBryan Chung
 
Class 05 - Art Game and Game Art
Class 05 - Art Game and Game ArtClass 05 - Art Game and Game Art
Class 05 - Art Game and Game ArtBryan Chung
 
Augmented Reality and Visual Arts
Augmented Reality and Visual ArtsAugmented Reality and Visual Arts
Augmented Reality and Visual ArtsBryan Chung
 
Movement in Space Project Launch Seminar
Movement in Space Project Launch SeminarMovement in Space Project Launch Seminar
Movement in Space Project Launch SeminarBryan Chung
 
Design for Hypermedia - Class 08 (2015B)
Design for Hypermedia - Class 08 (2015B)Design for Hypermedia - Class 08 (2015B)
Design for Hypermedia - Class 08 (2015B)Bryan Chung
 

More from Bryan Chung (20)

Be a Hong Kong Patriot, Part 3, The Red Scout
Be a Hong Kong Patriot, Part 3, The Red ScoutBe a Hong Kong Patriot, Part 3, The Red Scout
Be a Hong Kong Patriot, Part 3, The Red Scout
 
Fiction and Film
Fiction and FilmFiction and Film
Fiction and Film
 
MAVA Information Seminar 2019
MAVA Information Seminar 2019MAVA Information Seminar 2019
MAVA Information Seminar 2019
 
MAVA Studio Project Introduction 2018
MAVA Studio Project Introduction 2018MAVA Studio Project Introduction 2018
MAVA Studio Project Introduction 2018
 
MAVA Orientation 2018
MAVA Orientation 2018MAVA Orientation 2018
MAVA Orientation 2018
 
Class 11 - Social impacts of videogames
Class 11 - Social impacts of videogamesClass 11 - Social impacts of videogames
Class 11 - Social impacts of videogames
 
Class 10 - Simulation games
Class 10 - Simulation gamesClass 10 - Simulation games
Class 10 - Simulation games
 
Class 12 - Videogames technology in art
Class 12 - Videogames technology in artClass 12 - Videogames technology in art
Class 12 - Videogames technology in art
 
Glass 09 - Online game and virtual environment
Glass 09 - Online game and virtual environmentGlass 09 - Online game and virtual environment
Glass 09 - Online game and virtual environment
 
Class 07 - Game and space
Class 07 - Game and spaceClass 07 - Game and space
Class 07 - Game and space
 
Class 06 - Game and narrative
Class 06 - Game and narrativeClass 06 - Game and narrative
Class 06 - Game and narrative
 
Class 02 - Interactivity, games and arts
Class 02 - Interactivity, games and artsClass 02 - Interactivity, games and arts
Class 02 - Interactivity, games and arts
 
Class 01 - Introduction to Videogames and Arts
Class 01 - Introduction to Videogames and ArtsClass 01 - Introduction to Videogames and Arts
Class 01 - Introduction to Videogames and Arts
 
Digital Art ToolKit
Digital Art ToolKitDigital Art ToolKit
Digital Art ToolKit
 
Digital Image Workshop
Digital Image WorkshopDigital Image Workshop
Digital Image Workshop
 
Class 03 - Formal Elements of Game/Play
Class 03 - Formal Elements of Game/PlayClass 03 - Formal Elements of Game/Play
Class 03 - Formal Elements of Game/Play
 
Class 05 - Art Game and Game Art
Class 05 - Art Game and Game ArtClass 05 - Art Game and Game Art
Class 05 - Art Game and Game Art
 
Augmented Reality and Visual Arts
Augmented Reality and Visual ArtsAugmented Reality and Visual Arts
Augmented Reality and Visual Arts
 
Movement in Space Project Launch Seminar
Movement in Space Project Launch SeminarMovement in Space Project Launch Seminar
Movement in Space Project Launch Seminar
 
Design for Hypermedia - Class 08 (2015B)
Design for Hypermedia - Class 08 (2015B)Design for Hypermedia - Class 08 (2015B)
Design for Hypermedia - Class 08 (2015B)
 

Recently uploaded

Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxCarlos105
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfSpandanaRallapalli
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxMaryGraceBautista27
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomnelietumpap1
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfphamnguyenenglishnb
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxChelloAnnAsuncion2
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 

Recently uploaded (20)

Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdf
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptx
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
 
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptxLEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choom
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 

Evolutionary Graphics - Class 02 2014