ParallelDirSelector now filters for geomType() == "PLANE"

In certain circumstances this will be breaking, most commonly when using
DirectionNthSelector and there was previously a non-planar face in the
list. In this case eg. ">X[2]" will have to become ">X[1]".
This commit is contained in:
Marcus Boyd
2020-12-25 14:30:02 +10:30
parent 88714975ff
commit e19a05d023
3 changed files with 20 additions and 6 deletions

View File

@ -1,6 +1,11 @@
Changes
=======
Master
------
### Breaking changes
* Fixed bug in ParallelDirSelector where non-planar faces could be selected. Note this will be breaking if you've used DirectionNthSelector and a non-planar face made it into your object list. In that case eg. ">X[2]" will have to become ">X[1]".
2.0 (stable release)
------