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 Bzca5e
silvia
 
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
math267
 
3.4 ellipses
3.4 ellipses3.4 ellipses
3.4 ellipses
math123c
 
Tugasmatematikakelompok 150715235527-lva1-app6892
Tugasmatematikakelompok 150715235527-lva1-app6892Tugasmatematikakelompok 150715235527-lva1-app6892
Tugasmatematikakelompok 150715235527-lva1-app6892
drayertaurus
 

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

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
herminaprocter
 
Matlab level 1.pptx
Matlab level 1.pptxMatlab level 1.pptx
Matlab level 1.pptx
AbanobGozef
 
engineeringmathematics-iv_unit-v
engineeringmathematics-iv_unit-vengineeringmathematics-iv_unit-v
engineeringmathematics-iv_unit-v
Kundan Kumar
 
Fundamentals of Multimedia - Vector Graphics.pdf
Fundamentals of Multimedia - Vector Graphics.pdfFundamentals of Multimedia - Vector Graphics.pdf
Fundamentals of Multimedia - Vector Graphics.pdf
FatihahIrra
 
Introduction to MatLab programming
Introduction to MatLab programmingIntroduction to MatLab programming
Introduction to MatLab programming
Damian T. Gordon
 
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
HenryViernes
 
5 1 Linear Functions
5 1 Linear Functions5 1 Linear Functions
5 1 Linear Functions
taco40
 
Coordinates y3 y4
Coordinates y3 y4Coordinates y3 y4
Coordinates y3 y4
daliamada
 

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

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

Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
Chris Hunter
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
PECB
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
negromaestrong
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 

Recently uploaded (20)

Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
Role Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptxRole Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptx
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 

Evolutionary Graphics - Class 02 2014