だいら #6823(2008/07/24 21:04 GMT) [ PHP ] Rating0/0=0.00
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?php //移動回数 define('LOOP', 10); //初期位置 $pos[0] = array('x' => 0, 'y' => 0); for($time = 1; $time <= LOOP; $time++){ $rad = deg2rad(mt_rand()%360); $x = $pos[$time-1]['x'] + cos($rad); $y = $pos[$time-1]['y'] + sin($rad); $pos[$time] = array('x' => $x, 'y' => $y); } foreach($pos as $key => $val){ echo $key . " " . $val['x'] . " " . $val['y'] . " " . "\n"; }
Rating0/0=0.00-0+
[ reply ]
だいら
#6823()
[
PHP
]
Rating0/0=0.00
Rating0/0=0.00-0+
[ reply ]