mirror of
https://github.com/KLayout/klayout.git
synced 2026-08-29 17:30:09 +02:00
Fixed a problem in deep XOR mode (wrong size implementation for tolerances)
This commit is contained in:
@@ -802,8 +802,8 @@ XORWorker::do_perform_deep (const XORTask *xor_task)
|
||||
|
||||
if (*t > 0) {
|
||||
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, false);
|
||||
rr.size (-((*t + 1) / 2), (unsigned int)2);
|
||||
rr.size (((*t + 1) / 2), (unsigned int)2);
|
||||
}
|
||||
|
||||
// TODO: no clipping for hierarchical mode yet
|
||||
|
||||
Reference in New Issue
Block a user