Home
last modified time | relevance | path

Searched refs:tryNextPoint (Results 1 – 2 of 2) sorted by relevance

/dports/cad/fritzing/fritzing-app-0.9.2b/src/svg/
H A Dgroundplanegenerator.cpp1117 if (tryNextPoint(x, y + 1, image, points)) return true; in try8()
1118 else if (tryNextPoint(x + 1, y, image, points)) return true; in try8()
1119 else if (tryNextPoint(x, y - 1, image, points)) return true; in try8()
1120 else if (tryNextPoint(x - 1, y, image, points)) return true; in try8()
1121 else if (tryNextPoint(x + 1, y + 1, image, points)) return true; in try8()
1122 else if (tryNextPoint(x - 1, y + 1, image, points)) return true; in try8()
1123 else if (tryNextPoint(x + 1, y - 1, image, points)) return true; in try8()
1124 else if (tryNextPoint(x - 1, y - 1, image, points)) return true; in try8()
1128 bool GroundPlaneGenerator::tryNextPoint(int x, int y, QImage & image, QList<QPoint> & points) in tryNextPoint() function in GroundPlaneGenerator
H A Dgroundplanegenerator.h96 bool tryNextPoint(int x, int y, QImage & image, QList<QPoint> & points);