This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "os" | |
| "runtime" | |
| "strings" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Random generator of position in circle | |
| // Test out on http://testdata.kutac.cz/nahodna-pozice-v-kruhu/ | |
| function getCircleRandomPosition(radius){ | |
| a = Math.random(); | |
| b = Math.random(); | |
| var ret = { | |
| x: 0, | |
| y: 0 | |
| } |