PHP: How to extract string between 2 words phptuts December 13, 2012 How to extract string between two words. How to parse a string between two strings. We offer 3 functions to obtain a string delimited between… Continue Reading
PHP: How to determine the center of a Polygon phptuts December 12, 2012 How to determine the center of a Polygon. Read first: PHP: How to calculate signed area of a Polygon Method 1: Result: array(2) { [0]=>… Continue Reading
PHP: How to check if polygon is concave or convex? phptuts December 12, 2012 How to check if polygon is concave or convex? Note: It is assumed that the polygon is simple (does not intersect itself or have holes)… Continue Reading
PHP: How to check if the vertices of polygon are in clockwise or counter-clockwise order? phptuts December 12, 2012 How to check if the vertices of polygon are in clockwise or counter-clockwise order? There are many of method to check this. We offer some… Continue Reading
PHP: How to calculate signed area of a Polygon phptuts December 12, 2012 Calculating the signed area for an polygon can be found when you know the coordinates of the vertices. We offer 3 methods below: Method 1:… Continue Reading