Remove accidental debug code.
This commit is contained in:
parent
c9096c7168
commit
5705859e9e
|
@ -100,10 +100,9 @@ public:
|
||||||
|
|
||||||
for( auto subshape : subshapes )
|
for( auto subshape : subshapes )
|
||||||
{
|
{
|
||||||
BOX2I bbox = subshape->BBox();
|
BOX2I bbox = subshape->BBox();
|
||||||
bbox.Inflate( Millimeter2iu( 20 ) );
|
const int mmin[2] = { bbox.GetX(), bbox.GetY() };
|
||||||
const int mmin[2] = { bbox.GetX(), bbox.GetY() };
|
const int mmax[2] = { bbox.GetRight(), bbox.GetBottom() };
|
||||||
const int mmax[2] = { bbox.GetRight(), bbox.GetBottom() };
|
|
||||||
|
|
||||||
m_tree[layer]->Insert( mmin, mmax, new ITEM_WITH_SHAPE( aItem, subshape, itemShape ) );
|
m_tree[layer]->Insert( mmin, mmax, new ITEM_WITH_SHAPE( aItem, subshape, itemShape ) );
|
||||||
m_count++;
|
m_count++;
|
||||||
|
|
Loading…
Reference in New Issue