SlideShare una empresa de Scribd logo
1 de 27
Tree Fractals
The Walker School
APCSA
1
2
What is a Fractal?
• Geometric object
• Self-similar across scale
• The exhibit roughness
• Recursive definition
3
Fractal Geometry
• Infinite + finite
• Simple becomes complex
Where do we
find fractals in nature?
Everywhere!
Tree Fractals
6
7
1 + 2(1/2) + 4(1/4) + 8(1/8) + ... = ∞
Length: 1
Length: 0.5
Infinite length in a finite area!
8
…
Simple process
Complex result
9
Recursive Definition
• Define something in terms of itself
• Tree: a trunk with two subtrees at the top
10
Designing recursion
requires...
Assumption
(Leap of Faith)
Pseudocode Algorithm
• Draw the trunk
• Draw the two subtrees
• Go back to the base of the trunk
11
Pseudocode Algorithm
• Draw the trunk
• Draw the two subtrees
• Go back to the base of the trunk
12
Java Code
• A method that calls itself
• How to stop from going forever?
13
Java Code
• Base case
• Recursion “bottoms out”
• Must use arguments to manage this
14
Better Pseudocode
• To draw a tree of depth n and trunk size x:
–if depth is 1:
•Draw a trunk of length x
–else:
•Draw a trunk of length x
•Draw two trees of depth (n-1) and trunk size (x/2)
–Go back to the base of the trunk
15
Basic Tree
16
Unit Circle
0
-90
90
180
X
Y sinθ = y/1 = y
cosθ = x/1 = x
(x,y)(x,y)
Recursive Method
Method Call
Angles and Length
19
Colors
20
Forests
21
What else?
22
Examples for Inspiration
23
Golden Ratio Tree Fractal
https://www.behance.net/gallery/720515/Worlds-Largest-Fractal-Vectors
Pythagorean Tree
https://www.behance.net/gallery/720515/Worlds-Largest-Fractal-Vectors
Fractal Branching Tree
https://www.behance.net/gallery/720515/Worlds-Largest-Fractal-Vectors
Contact
If you want the Java code for some of the basic
trees you can contact me at:
Thomas Cooper
The Walker School
Marietta, GA 30062
Website: http://www.thewalkerschool.org
Email: thomas.cooper@thewalkerschool.org

Más contenido relacionado

Similar a Java tree fractals

Oxford 05-oct-2012
Oxford 05-oct-2012Oxford 05-oct-2012
Oxford 05-oct-2012Ted Dunning
 
Erik Bernhardsson, CTO, Better Mortgage
Erik Bernhardsson, CTO, Better MortgageErik Bernhardsson, CTO, Better Mortgage
Erik Bernhardsson, CTO, Better MortgageMLconf
 
Functional Programming with Immutable Data Structures
Functional Programming with Immutable Data StructuresFunctional Programming with Immutable Data Structures
Functional Programming with Immutable Data Structureselliando dias
 
Nearest Neighbor Customer Insight
Nearest Neighbor Customer InsightNearest Neighbor Customer Insight
Nearest Neighbor Customer InsightMapR Technologies
 
Approximate nearest neighbor methods and vector models – NYC ML meetup
Approximate nearest neighbor methods and vector models – NYC ML meetupApproximate nearest neighbor methods and vector models – NYC ML meetup
Approximate nearest neighbor methods and vector models – NYC ML meetupErik Bernhardsson
 
Approximate Nearest Neighbors and Vector Models by Erik Bernhardsson
Approximate Nearest Neighbors and Vector Models by Erik BernhardssonApproximate Nearest Neighbors and Vector Models by Erik Bernhardsson
Approximate Nearest Neighbors and Vector Models by Erik BernhardssonHakka Labs
 
L5. Data Transformation and Feature Engineering
L5. Data Transformation and Feature EngineeringL5. Data Transformation and Feature Engineering
L5. Data Transformation and Feature EngineeringMachine Learning Valencia
 
Clustering_Overview.pptx
Clustering_Overview.pptxClustering_Overview.pptx
Clustering_Overview.pptxnyomans1
 
Oct 21 The Discriminant
Oct 21 The DiscriminantOct 21 The Discriminant
Oct 21 The DiscriminantRyanWatt
 

Similar a Java tree fractals (12)

Oxford 05-oct-2012
Oxford 05-oct-2012Oxford 05-oct-2012
Oxford 05-oct-2012
 
Erik Bernhardsson, CTO, Better Mortgage
Erik Bernhardsson, CTO, Better MortgageErik Bernhardsson, CTO, Better Mortgage
Erik Bernhardsson, CTO, Better Mortgage
 
Functional Programming with Immutable Data Structures
Functional Programming with Immutable Data StructuresFunctional Programming with Immutable Data Structures
Functional Programming with Immutable Data Structures
 
Nearest Neighbor Customer Insight
Nearest Neighbor Customer InsightNearest Neighbor Customer Insight
Nearest Neighbor Customer Insight
 
october9.ppt
october9.pptoctober9.ppt
october9.ppt
 
Approximate nearest neighbor methods and vector models – NYC ML meetup
Approximate nearest neighbor methods and vector models – NYC ML meetupApproximate nearest neighbor methods and vector models – NYC ML meetup
Approximate nearest neighbor methods and vector models – NYC ML meetup
 
Approximate Nearest Neighbors and Vector Models by Erik Bernhardsson
Approximate Nearest Neighbors and Vector Models by Erik BernhardssonApproximate Nearest Neighbors and Vector Models by Erik Bernhardsson
Approximate Nearest Neighbors and Vector Models by Erik Bernhardsson
 
Clustering - ACM 2013 02-25
Clustering - ACM 2013 02-25Clustering - ACM 2013 02-25
Clustering - ACM 2013 02-25
 
L5. Data Transformation and Feature Engineering
L5. Data Transformation and Feature EngineeringL5. Data Transformation and Feature Engineering
L5. Data Transformation and Feature Engineering
 
Clustering_Overview.pptx
Clustering_Overview.pptxClustering_Overview.pptx
Clustering_Overview.pptx
 
Fractals
FractalsFractals
Fractals
 
Oct 21 The Discriminant
Oct 21 The DiscriminantOct 21 The Discriminant
Oct 21 The Discriminant
 

Más de tcooper66

Java Koch Curves
Java Koch CurvesJava Koch Curves
Java Koch Curvestcooper66
 
Waitomo slideshow
Waitomo slideshowWaitomo slideshow
Waitomo slideshowtcooper66
 
Energy Facts and Fiction
Energy Facts and FictionEnergy Facts and Fiction
Energy Facts and Fictiontcooper66
 
Designing And Leading Collaborative Projects
Designing And Leading Collaborative ProjectsDesigning And Leading Collaborative Projects
Designing And Leading Collaborative Projectstcooper66
 
C:\Fakepath\Designing And Managing Collaborative Projects
C:\Fakepath\Designing And Managing Collaborative ProjectsC:\Fakepath\Designing And Managing Collaborative Projects
C:\Fakepath\Designing And Managing Collaborative Projectstcooper66
 
Ge Tutorials Part Vi Design Principles
Ge Tutorials Part Vi   Design PrinciplesGe Tutorials Part Vi   Design Principles
Ge Tutorials Part Vi Design Principlestcooper66
 
GE Tutorials Part VI Design Principles
GE Tutorials Part VI   Design PrinciplesGE Tutorials Part VI   Design Principles
GE Tutorials Part VI Design Principlestcooper66
 
Ge Tutorials Part V Embedding Objects
Ge Tutorials Part V   Embedding ObjectsGe Tutorials Part V   Embedding Objects
Ge Tutorials Part V Embedding Objectstcooper66
 
Cooper Family Reunion 2009
Cooper Family Reunion 2009Cooper Family Reunion 2009
Cooper Family Reunion 2009tcooper66
 
Kml Basics Chpt 5 Overlays
Kml Basics Chpt  5   OverlaysKml Basics Chpt  5   Overlays
Kml Basics Chpt 5 Overlaystcooper66
 
Kml Basics Chpt 4 Styles & Icons
Kml Basics Chpt  4   Styles & IconsKml Basics Chpt  4   Styles & Icons
Kml Basics Chpt 4 Styles & Iconstcooper66
 
Kml Basics Chpt 3 Geometry
Kml Basics Chpt  3   GeometryKml Basics Chpt  3   Geometry
Kml Basics Chpt 3 Geometrytcooper66
 
Kml Basics Chpt 2 Placemarks
Kml Basics Chpt  2   PlacemarksKml Basics Chpt  2   Placemarks
Kml Basics Chpt 2 Placemarkstcooper66
 
Kml Basics Chpt 1 Overview
Kml Basics Chpt  1   OverviewKml Basics Chpt  1   Overview
Kml Basics Chpt 1 Overviewtcooper66
 
Creating Tours in Google Earth
Creating Tours in Google EarthCreating Tours in Google Earth
Creating Tours in Google Earthtcooper66
 
Google Earth Tutorials Part III
Google Earth Tutorials Part IIIGoogle Earth Tutorials Part III
Google Earth Tutorials Part IIItcooper66
 
Google Earth Tutorials Part II
Google Earth Tutorials Part IIGoogle Earth Tutorials Part II
Google Earth Tutorials Part IItcooper66
 
Google Earth Tutorials - Part I
Google Earth Tutorials - Part IGoogle Earth Tutorials - Part I
Google Earth Tutorials - Part Itcooper66
 
Climate and the Asian Monsoon
Climate and the Asian MonsoonClimate and the Asian Monsoon
Climate and the Asian Monsoontcooper66
 

Más de tcooper66 (20)

Java Koch Curves
Java Koch CurvesJava Koch Curves
Java Koch Curves
 
Waitomo slideshow
Waitomo slideshowWaitomo slideshow
Waitomo slideshow
 
Energy Facts and Fiction
Energy Facts and FictionEnergy Facts and Fiction
Energy Facts and Fiction
 
Designing And Leading Collaborative Projects
Designing And Leading Collaborative ProjectsDesigning And Leading Collaborative Projects
Designing And Leading Collaborative Projects
 
C:\Fakepath\Designing And Managing Collaborative Projects
C:\Fakepath\Designing And Managing Collaborative ProjectsC:\Fakepath\Designing And Managing Collaborative Projects
C:\Fakepath\Designing And Managing Collaborative Projects
 
Ge Tutorials Part Vi Design Principles
Ge Tutorials Part Vi   Design PrinciplesGe Tutorials Part Vi   Design Principles
Ge Tutorials Part Vi Design Principles
 
GE Tutorials Part VI Design Principles
GE Tutorials Part VI   Design PrinciplesGE Tutorials Part VI   Design Principles
GE Tutorials Part VI Design Principles
 
Ge Tutorials Part V Embedding Objects
Ge Tutorials Part V   Embedding ObjectsGe Tutorials Part V   Embedding Objects
Ge Tutorials Part V Embedding Objects
 
Cooper Family Reunion 2009
Cooper Family Reunion 2009Cooper Family Reunion 2009
Cooper Family Reunion 2009
 
Kml Basics Chpt 5 Overlays
Kml Basics Chpt  5   OverlaysKml Basics Chpt  5   Overlays
Kml Basics Chpt 5 Overlays
 
Kml Basics Chpt 4 Styles & Icons
Kml Basics Chpt  4   Styles & IconsKml Basics Chpt  4   Styles & Icons
Kml Basics Chpt 4 Styles & Icons
 
Kml Basics Chpt 3 Geometry
Kml Basics Chpt  3   GeometryKml Basics Chpt  3   Geometry
Kml Basics Chpt 3 Geometry
 
Kml Basics Chpt 2 Placemarks
Kml Basics Chpt  2   PlacemarksKml Basics Chpt  2   Placemarks
Kml Basics Chpt 2 Placemarks
 
Kml Basics Chpt 1 Overview
Kml Basics Chpt  1   OverviewKml Basics Chpt  1   Overview
Kml Basics Chpt 1 Overview
 
Creating Tours in Google Earth
Creating Tours in Google EarthCreating Tours in Google Earth
Creating Tours in Google Earth
 
Google Earth Tutorials Part III
Google Earth Tutorials Part IIIGoogle Earth Tutorials Part III
Google Earth Tutorials Part III
 
Wind Energy
Wind EnergyWind Energy
Wind Energy
 
Google Earth Tutorials Part II
Google Earth Tutorials Part IIGoogle Earth Tutorials Part II
Google Earth Tutorials Part II
 
Google Earth Tutorials - Part I
Google Earth Tutorials - Part IGoogle Earth Tutorials - Part I
Google Earth Tutorials - Part I
 
Climate and the Asian Monsoon
Climate and the Asian MonsoonClimate and the Asian Monsoon
Climate and the Asian Monsoon
 

Último

SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17Celine George
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docxPoojaSen20
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseAnaAcapella
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
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).pptxVishalSingh1417
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 

Último (20)

SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
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
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 

Java tree fractals