public function Geometry::project in geoPHP 7
Same name and namespace in other branches
- 8 geoPHP/lib/geometry/Geometry.class.php \Geometry::project()
File
- geoPHP/
lib/ geometry/ Geometry.class.php, line 309
Class
- Geometry
- Geometry abstract class
Code
public function project(Geometry $point, $normalized = NULL) {
if ($this
->geos()) {
return $this
->geos()
->project($point
->geos(), $normalized);
}
}