Fix wrong bounding box calculation for initial arrange item.
This commit is contained in:
parent
5bb9ba64c2
commit
7fd4800e7c
1 changed files with 2 additions and 6 deletions
|
@ -1116,12 +1116,8 @@ private:
|
||||||
for(Item& item : items_) item.translate(d);
|
for(Item& item : items_) item.translate(d);
|
||||||
}
|
}
|
||||||
|
|
||||||
void setInitialPosition(Item& item) {
|
void setInitialPosition(Item& item) {
|
||||||
auto sh = item.rawShape();
|
Box bb = item.boundingBox();
|
||||||
sl::translate(sh, item.translation());
|
|
||||||
sl::rotate(sh, item.rotation());
|
|
||||||
|
|
||||||
Box bb = sl::boundingBox(sh);
|
|
||||||
|
|
||||||
Vertex ci, cb;
|
Vertex ci, cb;
|
||||||
auto bbin = sl::boundingBox(bin_);
|
auto bbin = sl::boundingBox(bin_);
|
||||||
|
|
Loading…
Reference in a new issue