Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (406)
games submitted by our members
Games in WIP (292)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Visualization Riddle/Experiment  (Read 755 times)
0 Members and 1 Guest are viewing this topic.
Offline namrog84

JGO Knight


Medals: 23
Projects: 2


Keep programming!


« Posted 2011-08-05 16:56:12 »

Not really a riddle but for those who know or find out, do not post the solution!

Here we go

Imagine you have 3 points that form an equilateral triangle.

Point A, B and C.

1. Start anywhere X,Y, leave a dot
2. Randomly select one of the three points. (A, B or C)
3. Move halfway between wherever you are and that point and leave a dot.
4. Then randomly select one of the three points again.
5. Move halfway between your current position and that point and leave another dot.
6. Repeat steps 4 and 5 at least 10,000 times


What is the shape that you get?
Try to visualize it internally

If you already know what this is, don't say anything please:)

example code snippet solution
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
   
Random r = new Random();
Point[] xy = new Point[10000];
Point[] triP = { new Point(50, 450), new Point(300, 10), new Point(550, 450) };

public void init() {
   xy[0] = new Point(r.nextInt(800), r.nextInt(800));
   for (int i = 1; i < xy.length; i++) {
      int pickPoint = r.nextInt(3);
      xy[i] = new Point(Math.abs((xy[i - 1].x + triP[pickPoint].x) / 2), Math.abs((xy[i - 1].y + triP[pickPoint].y) / 2));
   }
}
public void render(Graphics g) {
   for (int i = 0; i < xy.length; i++) {
      g.drawLine(xy[i].x, xy[i].y, xy[i].x, xy[i].y);
   }
}


Edit: If you run the code, mangle it around to utilize different shapes(square, octagon, etc..) and try to create new things and see their results. Some are expected, some are not.

"Experience is what you get when you did not get what you wanted"
Offline gouessej

JGO Ninja


Medals: 33
Projects: 1


TUER


« Reply #1 - Posted 2011-08-11 17:12:28 »

Hi

If you like maths, maybe you should have a look at my source code, I need someone to check if I have not forgotten something...

Offline Eli Delventhal
« League of Dukes »

JGO Kernel


Medals: 39
Projects: 12


Game Engineer


« Reply #2 - Posted 2011-08-11 17:34:14 »

I think I can guess what it would look like.

See my work:
OTC Software
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Get high quality music tracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (66 views)
2013-05-17 21:29:12

alaslipknot (75 views)
2013-05-16 21:24:48

gouessej (106 views)
2013-05-16 00:53:38

gouessej (103 views)
2013-05-16 00:17:58

theagentd (114 views)
2013-05-15 15:01:13

theagentd (103 views)
2013-05-15 15:00:54

StreetDoggy (148 views)
2013-05-14 15:56:26

kutucuk (171 views)
2013-05-12 17:10:36

kutucuk (169 views)
2013-05-12 15:36:09

UnluckyDevil (178 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.135 seconds with 20 queries.