cs 2334 lab 13 13
play

CS 2334 Lab 13 13 Recursion DrawLine drawLine(int x1, int y1, int - PowerPoint PPT Presentation

CS 2334 Lab 13 13 Recursion DrawLine drawLine(int x1, int y1, int x2, int y2) Say you want to draw the line shown by the hypotenuse You know the starting point (x1, y1), , and the length of the line What are x2 and y2?


  1. CS 2334 Lab 13 13 Recursion

  2. DrawLine drawLine(int x1, int y1, int x2, int y2) Say you want to draw the line shown by the hypotenuse You know the starting point (x1, y1), ϴ , and the length of the line What are x2 and y2? http://www.pages.drexel.edu/~so29/SinCosTan.htm Andrew H. Fagg: CS2334: Lab 13 2

  3. Koch Snowflake • Start with an equilateral triangle • Recursively alter each line segment: • Divide the line segment into 3 segments of equal length • Draw an equilateral triangle that has the middle segment from step 1 as its base and points outward • Remove the line segment that is the base of the triangle from step 2 • Each new segment is 1/3 the length of the original https://en.wikipedia.org/wiki/Koch_snowflake Andrew H. Fagg: CS2334: Lab 13 3

  4. Example of f One It Iteration • Use same starting point as original segment • Draw 1 st new segment in the same direction • Rotate by π /3, draw 2 nd segment • Rotate the opposite direction by 2 π /3, draw 3 rd segment • Rotate to original direction, draw 4 th segment Andrew H. Fagg: CS2334: Lab 13 4

  5. In Interesting Properties • What is the perimeter? • What about the area? Andrew H. Fagg: CS2334: Lab 13 5

  6. In Interesting Properties • What is the perimeter? • Increase by 1/3 with each iteration • After n iterations, perimeter is (4/3) n times the original triangle perimeter • After an infinite number of iterations: perimeter is infinite • What about the area? • finite Andrew H. Fagg: CS2334: Lab 13 6

  7. ja javax.s .swing.Timer • Fires one or more ActionEvents at specified intervals • An example use is an animation object that uses a Timer as the trigger for drawing its frames • Setting up a timer involves creating a Timer object, registering one or more action listeners on it, and starting the timer using the start method Andrew H. Fagg: CS2334: Lab 13 7

  8. Timer example int delay = 100; //milliseconds ActionListener listener = new ActionListener() { public void actionPerformed(ActionEvent e) { // …Perform a task… } }; Timer timer = new Timer(delay, taskPerformer); timer.start(); Andrew H. Fagg: CS2334: Lab 13 8

  9. Lab13 • Recursively create a Koch Snowflake • Animate using the Timer class Demonstration… Andrew H. Fagg: CS2334: Lab 13 9

  10. Submission • Submit only one file: lab13.zip (casing matters) • Due date: Friday, November 20 th @11:59pm • Submit to lab13 dropbox on D2L Andrew H. Fagg: CS2334: Lab 13 10

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend