Skip to content

Commit

Permalink
Remove interpolation resolution from public api
Browse files Browse the repository at this point in the history
  • Loading branch information
jzbrooks committed Nov 28, 2024
1 parent de77de2 commit 6265307
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion vgo-core/api/vgo-core.api
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,6 @@ public final class com/jzbrooks/vgo/core/util/math/RectangleKt {
}

public final class com/jzbrooks/vgo/core/util/math/Surveyor {
public static final field RESOLUTION I
public fun <init> ()V
public final fun findBoundingBox (Ljava/util/List;)Lcom/jzbrooks/vgo/core/util/math/Rectangle;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ class Surveyor {
}

private companion object {
const val RESOLUTION = 10
private const val RESOLUTION = 10
val interpolationResolution = (1..RESOLUTION).map { it / RESOLUTION.toDouble() }.map(Double::toFloat)
}
}

0 comments on commit 6265307

Please sign in to comment.