Fix Line2d.distanceTo

This commit is contained in:
DBotThePony 2024-05-06 14:18:38 +07:00
parent 79e606f609
commit 19038dea7d
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 3 additions and 3 deletions

View File

@ -163,7 +163,7 @@ data class Line2d(val p0: Vector2d, val p1: Vector2d) {
if (!infinite)
proj = proj.coerceIn(0.0, 1.0)
return (Vector2d(other) - p0 + difference * proj).length
return (Vector2d(other) - (p0 + difference * proj)).length
}
fun distanceTo(other: Vector2d, infinite: Boolean = false): Double {
@ -172,7 +172,7 @@ data class Line2d(val p0: Vector2d, val p1: Vector2d) {
if (!infinite)
proj = proj.coerceIn(0.0, 1.0)
return (other - p0 + difference * proj).length
return (other - (p0 + difference * proj)).length
}
class Adapter(gson: Gson) : TypeAdapter<Line2d>() {

View File

@ -240,7 +240,7 @@ data class WorldGeometry(val size: Vector2i, val loopX: Boolean = true, val loop
fun nearestTo(source: IStruct2d, target: IStruct2d) = Vector2d(x.nearestTo(source.component1(), target.component1()), y.nearestTo(source.component2(), target.component2()))
fun polyDistance(poly: Poly, point: IStruct2d): Double {
return poly.distance(nearestTo(poly.centre, point))
return split(poly).minOf { it.distance(nearestTo(it.centre, point)) }
}
val splitLines: ImmutableList<Pair<Line2d, Pair<Vector2d, Vector2d>>> by lazy {