Updated test data and stdlib sources.

This commit is contained in:
Evgeny Gerashchenko
2013-02-12 02:19:55 +04:00
parent 105d2d72de
commit b9e5704057
43 changed files with 96 additions and 78 deletions
@@ -495,6 +495,6 @@ class Vector(val x: Double = 0.0, val y: Double = 0.0) {
get() = this * (1.0 / Math.sqrt(sqr))
}
fun getRandomArbitary(val min: Int, val max: Int): Double {
fun getRandomArbitary(min: Int, max: Int): Double {
return Math.random() * (max - min) + min;
}