| 42 | return r |
| 43 | } |
| 44 | |
| 45 | private fun iy(it: Box, x: Double, r: MutableList<Vec2>) { |
| 46 | it.properties.get(FLineDrawing.lines)?.values?.forEach { |
| 47 | val m = it.get() |
| 48 | if (m != null) { |
| 49 | if (m.attributes.isTrue(notation, false)) { |
| 50 | val intersections = FLinesAndJavaShapes.intersectY(m, x) |
| 51 | if (intersections != null) |
| 52 | intersections.forEach { r.add(it.toVec2()) } |
| 53 | } |
| 54 | } |
| 55 | } |
| 56 | } |
| 57 | |
| 58 |