Lines Matching refs:aTestPoly
1371 Polygon2D aTestPoly(4); in main() local
1372 aTestPoly[0] = someCurves[i].p0; in main()
1373 aTestPoly[1] = someCurves[i].p1; in main()
1374 aTestPoly[2] = someCurves[i].p2; in main()
1375 aTestPoly[3] = someCurves[i].p3; in main()
1377 aTestPoly[0].x += convHull_xOffset; in main()
1378 aTestPoly[1].x += convHull_xOffset; in main()
1379 aTestPoly[2].x += convHull_xOffset; in main()
1380 aTestPoly[3].x += convHull_xOffset; in main()
1383 << aTestPoly[0].x << "," in main()
1384 << aTestPoly[1].x << "," in main()
1385 << aTestPoly[2].x << "," in main()
1386 << aTestPoly[3].x << ",t),bez(" in main()
1387 << aTestPoly[0].y << "," in main()
1388 << aTestPoly[1].y << "," in main()
1389 << aTestPoly[2].y << "," in main()
1390 … << aTestPoly[3].y << ",t), '-' using ($1):($2) title \"convex hull " << i << "\" with lp"; in main()
1399 Polygon2D aTestPoly(4); in main() local
1400 aTestPoly[0] = someCurves[i].p0; in main()
1401 aTestPoly[1] = someCurves[i].p1; in main()
1402 aTestPoly[2] = someCurves[i].p2; in main()
1403 aTestPoly[3] = someCurves[i].p3; in main()
1405 aTestPoly[0].x += convHull_xOffset; in main()
1406 aTestPoly[1].x += convHull_xOffset; in main()
1407 aTestPoly[2].x += convHull_xOffset; in main()
1408 aTestPoly[3].x += convHull_xOffset; in main()
1410 Polygon2D convHull( convexHull(aTestPoly) ); in main()