Skip to content

Instantly share code, notes, and snippets.

View TheBatScripts's full-sized avatar

TheBatScripts

View GitHub Profile
@TheBatScripts
TheBatScripts / DTM+ rectangles
Created April 15, 2012 18:24
DTM more methods
/**
* Gets an array of all valid template points inside the given rectangle
*
* @param Rectangle - The sub rectangle of the image to search in.
*
* @return An array of CPoint.
*/
public Point[] getPoints(Rectangle rect) {
return getPoints(rect, false);
}