-
Notifications
You must be signed in to change notification settings - Fork 2
Collection of test classes (Testklassensammlung)
OTI2020 edited this page Oct 15, 2020
·
3 revisions
/**
* @author: OTI2020 && heilandoo
* @title: 2d-array for testing
* @aim: testing of floodfill-similar algorithem to detect connected areas of same color
* @date: 11.03.2020; 11:20 am
**/
private static int px = 9;
private static int py = 8;
private static int anzPixel = 0;
private static float[][] ausgangsArr = { {0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,255}, {0 ,255,255,255,255,255,255,255,0 ,0 }, {0 ,255,255,255,255,255,255,255,255,0 }, {0 ,0 ,255,255,0 ,0 ,0 ,255,255,0 }, {0 ,255,255,255,0 ,255,0 ,255,255,0 }, {0 ,0 ,255,255,0 ,0 ,0 ,255,0 ,0 }, {0 ,0 ,255,255,255,255,255,0 ,0 ,0 }, {0 ,255,255,255,255,255,0 ,0 ,0 ,0 }, {0 ,0 ,0 ,255,255,255,0 ,0 ,255,255}, {255,0 ,0 ,0 ,0 ,0 ,0 ,255,255,255}};
/**
* @author
* @title: testing ROPs
* @date:
**/