
x = randu()*100.0 - 50.0;
y = randu()*100.0 - 50.0;

h = hypot( x, y );

if ( h < 0.0 || h > 100.0 ) {
	throw new Error( 'Something went wrong!' );
}
