Skip to content

Instantly share code, notes, and snippets.

package main
import (
"bufio"
"fmt"
"os"
"runtime"
"strings"
)
// 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
}