mirror of https://github.com/KLayout/klayout.git
WIP: cleanup
This commit is contained in:
parent
5ff187a56d
commit
f0e20ad258
|
|
@ -1672,7 +1672,7 @@ AsIfFlatRegion::xor_with (const Region &other, PropertyConstraint prop_constrain
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
// @@@ TODO: implement property constraint
|
// TODO: implement property constraint
|
||||||
|
|
||||||
// Generic case
|
// Generic case
|
||||||
db::EdgeProcessor ep (report_progress (), progress_desc ());
|
db::EdgeProcessor ep (report_progress (), progress_desc ());
|
||||||
|
|
@ -1728,7 +1728,7 @@ AsIfFlatRegion::or_with (const Region &other, PropertyConstraint prop_constraint
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
// @@@ TODO: implement property constraint
|
// TODO: implement property constraint
|
||||||
|
|
||||||
// Generic case
|
// Generic case
|
||||||
db::EdgeProcessor ep (report_progress (), progress_desc ());
|
db::EdgeProcessor ep (report_progress (), progress_desc ());
|
||||||
|
|
|
||||||
|
|
@ -784,7 +784,7 @@ DeepRegion::not_with (const Region &other, PropertyConstraint property_constrain
|
||||||
RegionDelegate *
|
RegionDelegate *
|
||||||
DeepRegion::or_with (const Region &other, db::PropertyConstraint /*property_constraint*/) const
|
DeepRegion::or_with (const Region &other, db::PropertyConstraint /*property_constraint*/) const
|
||||||
{
|
{
|
||||||
// @@@ TODO: implement property_constraint
|
// TODO: implement property_constraint
|
||||||
RegionDelegate *res = add (other);
|
RegionDelegate *res = add (other);
|
||||||
return res->merged_in_place ();
|
return res->merged_in_place ();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -80,7 +80,7 @@ EmptyRegion::or_with (const Region &other, db::PropertyConstraint /*prop_constra
|
||||||
} else if (! other.strict_handling ()) {
|
} else if (! other.strict_handling ()) {
|
||||||
return other.delegate ()->clone ();
|
return other.delegate ()->clone ();
|
||||||
} else {
|
} else {
|
||||||
// @@@ TODO: implement prop_constraint
|
// TODO: implement prop_constraint
|
||||||
return other.delegate ()->merged ();
|
return other.delegate ()->merged ();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue