Discuss the Sierpinski Gasket and run the appropriate program/code in Java to produce said gasket. Please and thank you... Also if its not too much to ask can you please include comments as to what each section of code is doing/give an understanding. It helps me in my learning.
Discuss the Sierpinski Gasket and run the appropriate program/code in Java to produce said gasket. Please and thank you... Also if its not too much to ask can you please include comments as to what each section of code is doing/give an understanding. It helps me in my learning.
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Discuss the Sierpinski Gasket and run the appropriate program/code in Java to produce said gasket.
Please and thank you... Also if its not too much to ask can you please include comments as to what each section of code is doing/give an understanding. It helps me in my learning.
Expert Solution
Step 1: Algorithm:
- Start.
- Create a Java Swing application.
- Define a custom JPanel class called
SierpinskiGasket
. - Initialize the depth of the Sierpinski Gasket.
- Override the
paintComponent
method to draw the Sierpinski Gasket recursively. - Define the initial triangle vertices and call the recursive
drawSierpinski
method. - In the
drawSierpinski
method, check if the depth is 0, and if so, draw a filled triangle. - If the depth is greater than 0, calculate midpoints of the sides and make three recursive calls with smaller triangles.
- Create a JFrame, set its properties, and add an instance of
SierpinskiGasket
with a specified depth. - Display the JFrame.
- End.
Step by step
Solved in 4 steps with 3 images
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education