PHP Класс Polygon, AlgorithmsNYC

Наследование: extends Shape
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$points

Открытые методы

Метод Описание
__construct ( )
addPoint ( Point $point )
contains ( Point $point )
count ( ) Interface Countable
current ( )
find_polygons_in_graph ( Graph $graph )
getArea ( ) Calculates the area of any given non-crossing polygon
getCentroid ( ) Gets the coordinates of the centroid of the polygon
getPerimeter ( )
includes ( Point $point ) Checks the presence of a point in the polygon Returns : 0 : Point not in polygon 1 : Point in polygon 2 : Point is a node of the polygon
key ( )
next ( )
offsetExists ( $offset )
offsetGet ( $offset )
offsetSet ( $offset, $value ) Interface ArrayAccess
offsetUnset ( $offset )
polygon_finder_recursive ( Graph $graph, $currentPolygon, $currentVertex, $lastVertex )
rewind ( )
valid ( )

Описание методов

__construct() публичный Метод

public __construct ( )

addPoint() публичный Метод

public addPoint ( Point $point )
$point Point

contains() публичный Метод

public contains ( Point $point )
$point Point

count() публичный Метод

Interface Countable
public count ( )

current() публичный Метод

public current ( )

find_polygons_in_graph() публичный статический Метод

public static find_polygons_in_graph ( Graph $graph )
$graph Graph

getArea() публичный Метод

Calculates the area of any given non-crossing polygon
См. также: http://www.mathopenref.com/coordpolygonarea2.html
public getArea ( )

getCentroid() публичный Метод

Gets the coordinates of the centroid of the polygon
См. также: http://stackoverflow.com/questions/2792443/finding-the-centroid-of-a-polygon
public getCentroid ( )

getPerimeter() публичный Метод

public getPerimeter ( )

includes() публичный Метод

Checks the presence of a point in the polygon Returns : 0 : Point not in polygon 1 : Point in polygon 2 : Point is a node of the polygon
См. также: http://stackoverflow.com/questions/217578/point-in-polygon-aka-hit-test
public includes ( Point $point )
$point Point

key() публичный Метод

public key ( )

next() публичный Метод

public next ( )

offsetExists() публичный Метод

public offsetExists ( $offset )

offsetGet() публичный Метод

public offsetGet ( $offset )

offsetSet() публичный Метод

Interface ArrayAccess
public offsetSet ( $offset, $value )

offsetUnset() публичный Метод

public offsetUnset ( $offset )

polygon_finder_recursive() публичный Метод

public polygon_finder_recursive ( Graph $graph, $currentPolygon, $currentVertex, $lastVertex )
$graph Graph

rewind() публичный Метод

public rewind ( )

valid() публичный Метод

public valid ( )

Описание свойств

$points защищенное свойство

protected $points