Removed the test method.

This commit is contained in:
Relintai 2019-10-21 21:15:30 +02:00
parent 54ab3d3bc7
commit b26b97d728
2 changed files with 0 additions and 38 deletions

View File

@ -143,40 +143,6 @@ void TexturePacker::merge() {
}
}
String TexturePacker::test() {
String res = "";
const int RECTS = 200;
const bool ALLOW_FLIP = false;
rect_xywhf rects[RECTS], *ptr_rects[RECTS];
for (int i = 0; i < RECTS; ++i) {
rects[i] = rect_xywhf(0, 0, 7 + rand() % 50, 7 + rand() % 50);
ptr_rects[i] = rects + i;
}
std::vector<bin> bins;
if (pack(ptr_rects, RECTS, 400, ALLOW_FLIP, bins)) {
res += "bins: " + String::num(bins.size()) + "\n";
for (int i = 0; i < bins.size(); ++i) {
res += "bin: " + String::num(i) + ", rects: " + String::num(bins[i].size.w) + " " + String::num(bins[i].size.h) + " " + String::num(bins[i].rects.size()) + "\n";
for (int r = 0; r < bins[i].rects.size(); ++r) {
rect_xywhf *rect = bins[i].rects[r];
res += "rect " + String::num(r) + ": x: " + String::num(rect->x) + ", y: " + String::num(rect->y) + ", w: " + String::num(rect->w) + ", h: " + String::num(rect->h) + ", was flipped: " + (rect->flipped ? "yes" : " no") + "\n";
}
}
} else {
res += "failed: there's a rectangle with width/height bigger than max_size!\n";
}
return res;
}
TexturePacker::TexturePacker() {
}
@ -197,8 +163,6 @@ TexturePacker::~TexturePacker() {
}
void TexturePacker::_bind_methods() {
ClassDB::bind_method(D_METHOD("test"), &TexturePacker::test);
ClassDB::bind_method(D_METHOD("add_texture", "texture"), &TexturePacker::add_texture);
ClassDB::bind_method(D_METHOD("get_texture", "index"), &TexturePacker::get_texture);
ClassDB::bind_method(D_METHOD("get_original_texture", "index"), &TexturePacker::get_original_texture);

View File

@ -27,8 +27,6 @@ public:
void merge();
String test();
TexturePacker();
~TexturePacker();