mirror of https://github.com/KLayout/klayout.git
Fixed a problem in deep XOR mode (wrong size implementation for tolerances)
This commit is contained in:
parent
7a5737d55f
commit
488dc561de
|
|
@ -802,8 +802,8 @@ XORWorker::do_perform_deep (const XORTask *xor_task)
|
||||||
|
|
||||||
if (*t > 0) {
|
if (*t > 0) {
|
||||||
tl::SelfTimer timer (tl::verbosity () >= 21, "Sizing part");
|
tl::SelfTimer timer (tl::verbosity () >= 21, "Sizing part");
|
||||||
rr.size (-((*t + 1) / 2), (unsigned int)2, false);
|
rr.size (-((*t + 1) / 2), (unsigned int)2);
|
||||||
rr.size (((*t + 1) / 2), (unsigned int)2, false);
|
rr.size (((*t + 1) / 2), (unsigned int)2);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: no clipping for hierarchical mode yet
|
// TODO: no clipping for hierarchical mode yet
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue