Compile Time Changes

class SpecialWallFeatureSearch

The "blocker" lines concept has been removed and the interfaces below have changed as a result. Note that while many methods had a "blockers" argument, it wasn't actually used for anything.

Removed: extend public line2D[] blockers(FeatureLineSearch fs, point fp, SimpleWallLine{} walls) {
Old: extend public void appendCandidates(SimpleWallLine wall, FeatureLineSearch fs, GraphPrimitive{} currentFT, GraphPrimitive{} otherFT, line2D[] blockers) {
New: extend public void appendCandidates(SimpleWallLine wall, FeatureLineSearch fs, GraphPrimitive{} currentFT, GraphPrimitive{} otherFT) {
Old: extend public void appendPickupPointCandidate(SimpleWallLine wall, SpecialWallFeaturePrimitive current, FeatureLineSearch fs, line2D[] blockers) {
New: extend public void appendPickupPointCandidate(SimpleWallLine wall, SpecialWallFeaturePrimitive current, FeatureLineSearch fs) {
Old: extend public void appendIntersectionCandidate(SimpleWallLine wall, SpecialWallFeaturePrimitive current, SpecialWallFeaturePrimitive other, FeatureLineSearch fs, line2D[] blockers) {
New: extend public void appendIntersectionCandidate(SimpleWallLine wall, SpecialWallFeaturePrimitive current, SpecialWallFeaturePrimitive other, FeatureLineSearch fs) {
Old: extend public void appendPerpendicularToOtherCandidate(SimpleWallLine wall, SpecialWallFeaturePrimitive current, SpecialWallFeaturePrimitive other, FeatureLineSearch fs, line2D[] blockers) {
New: extend public void appendPerpendicularToOtherCandidate(SimpleWallLine wall, SpecialWallFeaturePrimitive current, SpecialWallFeaturePrimitive other, FeatureLineSearch fs) {