Skip to content

Commit facd8fb

Browse files
author
Péter Báthory
committed
change pow() to **
1 parent 2cf5345 commit facd8fb

File tree

4 files changed

+22
-22
lines changed

4 files changed

+22
-22
lines changed

src/Geometry/LineString.php

+12-13
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
use function count;
1515
use function deg2rad;
1616
use function is_nan;
17-
use function pow;
1817
use function sin;
1918
use function sqrt;
2019
use function tan;
@@ -116,8 +115,8 @@ public function getCentroidAndLength(float &$length = 0.0): Point
116115
if ($previousPoint) {
117116
// Equivalent to $previousPoint->distance($point) but much faster
118117
$segmentLength = sqrt(
119-
pow(($previousPoint->x() - $point->x()), 2) +
120-
pow(($previousPoint->y() - $point->y()), 2)
118+
($previousPoint->x() - $point->x()) ** 2 +
119+
($previousPoint->y() - $point->y()) ** 2
121120
);
122121
$length += $segmentLength;
123122
$x += ($previousPoint->x() + $point->x()) / 2 * $segmentLength;
@@ -150,8 +149,8 @@ public function length(): float
150149
foreach ($this->getComponents() as $point) {
151150
if ($previousPoint) {
152151
$length += sqrt(
153-
pow(($previousPoint->x() - $point->x()), 2) +
154-
pow(($previousPoint->y() - $point->y()), 2)
152+
($previousPoint->x() - $point->x()) ** 2 +
153+
($previousPoint->y() - $point->y()) ** 2
155154
);
156155
}
157156
$previousPoint = $point;
@@ -167,9 +166,9 @@ public function length3D(): float
167166
foreach ($this->getComponents() as $point) {
168167
if ($previousPoint) {
169168
$length += sqrt(
170-
pow(($previousPoint->x() - $point->x()), 2) +
171-
pow(($previousPoint->y() - $point->y()), 2) +
172-
pow(($previousPoint->z() - $point->z()), 2)
169+
($previousPoint->x() - $point->x()) ** 2 +
170+
($previousPoint->y() - $point->y()) ** 2 +
171+
($previousPoint->z() - $point->z()) ** 2
173172
);
174173
}
175174
$previousPoint = $point;
@@ -203,16 +202,16 @@ public function greatCircleLength(float $radius = geoPHP::EARTH_WGS84_SEMI_MAJOR
203202
$radius *
204203
atan2(
205204
sqrt(
206-
pow($cosLat2 * sin($deltaLon), 2) +
207-
pow($cosLat1 * $sinLat2 - $sinLat1 * $cosLat2 * $cosDeltaLon, 2)
205+
($cosLat2 * sin($deltaLon)) ** 2 +
206+
($cosLat1 * $sinLat2 - $sinLat1 * $cosLat2 * $cosDeltaLon) ** 2
208207
),
209208
$sinLat1 * $sinLat2 +
210-
$cosLat1 * $cosLat2 * $cosDeltaLon
209+
$cosLat1 * $cosLat2 * $cosDeltaLon
211210
);
212211
if ($points[$i]->is3D()) {
213212
$d = sqrt(
214-
pow($d, 2) +
215-
pow($points[$i + 1]->z() - $points[$i]->z(), 2)
213+
$d ** 2 +
214+
($points[$i + 1]->z() - $points[$i]->z()) ** 2
216215
);
217216
}
218217

src/Geometry/Point.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
use function gettype;
1010
use function is_finite;
1111
use function is_numeric;
12-
use function pow;
1312
use function sqrt;
1413

1514
/**
@@ -328,8 +327,8 @@ public function distance(Geometry $geometry): ?float
328327
}
329328
if ($geometry->geometryType() == Geometry::POINT) {
330329
return sqrt(
331-
pow(($this->x() - $geometry->x()), 2)
332-
+ pow(($this->y() - $geometry->y()), 2)
330+
($this->x() - $geometry->x()) ** 2 +
331+
($this->y() - $geometry->y()) ** 2
333332
);
334333
}
335334
if ($geometry instanceof MultiGeometry) {

tests/Benchmark/Geometry/LineStringBench.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function setUpLineString(): void
1616

1717
/**
1818
* @BeforeMethods("setUpLineString")
19-
* @Revs(200)
19+
* @Revs(100)
2020
*/
2121
public function benchInvertXY(): void
2222
{
@@ -25,7 +25,7 @@ public function benchInvertXY(): void
2525

2626
/**
2727
* @BeforeMethods("setUpLineString")
28-
* @Revs(1000)
28+
* @Revs(200)
2929
*/
3030
public function benchIsEmpty(): void
3131
{
@@ -74,7 +74,7 @@ public function benchExplodeTrue(): void
7474

7575
/**
7676
* @BeforeMethods("setUpLineString")
77-
* @Revs(1000)
77+
* @Revs(200)
7878
*/
7979
public function benchGeometryN(): void
8080
{
@@ -83,7 +83,7 @@ public function benchGeometryN(): void
8383

8484
/**
8585
* @BeforeMethods("setUpLineString")
86-
* @Revs(1000)
86+
* @Revs(200)
8787
*/
8888
public function benchEndPoint(): void
8989
{

tests/Benchmark/Geometry/PolygonBench.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function benchCreatePolygon(array $params): void
3939

4040
/**
4141
* @BeforeMethods("setUpPolygonLarge")
42-
* @Revs(1000)
42+
* @Revs(200)
4343
*/
4444
public function benchIsEmpty(): void
4545
{
@@ -48,7 +48,7 @@ public function benchIsEmpty(): void
4848

4949
/**
5050
* @BeforeMethods("setUpPolygonLarge")
51-
* @Revs(1000)
51+
* @Revs(200)
5252
*/
5353
public function benchExteriorRing(): void
5454
{
@@ -57,6 +57,7 @@ public function benchExteriorRing(): void
5757

5858
/**
5959
* @BeforeMethods("setUpPolygonSmall")
60+
* @Revs(10)
6061
*/
6162
public function benchGetPoints(): void
6263
{
@@ -65,6 +66,7 @@ public function benchGetPoints(): void
6566

6667
/**
6768
* @BeforeMethods("setUpPolygonSmall")
69+
* @Revs(10)
6870
*/
6971
public function benchArea(): void
7072
{

0 commit comments

Comments
 (0)