afstand-tussen-2-punten-berekenen
Gesponsorde koppelingen
PHP script bestanden
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
//Coordinatenpunt 1
$x1=1;
$y1=1;
//Coordinatenpunt 2
$x2=4;
$y2=3;
//Relatieve, absoluten afstanden in de richting van x en y bepalen
$rel_x=abs($x1-$x2);
$rel_y=abs($y1-$y2);
//Regels van Pythagoras
$distance_quadrat=pow($rel_x,2)+pow($rel_y,2);
$distance=sqrt($distance_quadrat);
//Resultaat weergeven
echo "Punt1: x=$x1, y=$y1 <br>";
echo "Punt2: x=$x2, y=$y2 <br>";
echo "Absoluten afstanden tussen 2 punten: " . $distance;
?>
//Coordinatenpunt 1
$x1=1;
$y1=1;
//Coordinatenpunt 2
$x2=4;
$y2=3;
//Relatieve, absoluten afstanden in de richting van x en y bepalen
$rel_x=abs($x1-$x2);
$rel_y=abs($y1-$y2);
//Regels van Pythagoras
$distance_quadrat=pow($rel_x,2)+pow($rel_y,2);
$distance=sqrt($distance_quadrat);
//Resultaat weergeven
echo "Punt1: x=$x1, y=$y1 <br>";
echo "Punt2: x=$x2, y=$y2 <br>";
echo "Absoluten afstanden tussen 2 punten: " . $distance;
?>