Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 0 additions & 61 deletions library/src/main/java/com/google/maps/android/geometry/Bounds.java

This file was deleted.

54 changes: 54 additions & 0 deletions library/src/main/java/com/google/maps/android/geometry/Bounds.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
/*
* Copyright 2025 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/


package com.google.maps.android.geometry

/**
* Represents an area in the cartesian plane.
*/
class Bounds(
@JvmField val minX: Double,
@JvmField val maxX: Double,
@JvmField val minY: Double,
@JvmField val maxY: Double
) {
@JvmField
val midX: Double = (minX + maxX) / 2

@JvmField
val midY: Double = (minY + maxY) / 2

fun contains(x: Double, y: Double): Boolean {
return minX <= x && x <= maxX && minY <= y && y <= maxY
}

fun contains(point: Point): Boolean {
return contains(point.x, point.y)
}

fun intersects(minX: Double, maxX: Double, minY: Double, maxY: Double): Boolean {
return minX < this.maxX && this.minX < maxX && minY < this.maxY && this.minY < maxY
}

fun intersects(bounds: Bounds): Boolean {
return intersects(bounds.minX, bounds.maxX, bounds.minY, bounds.maxY)
}

fun contains(bounds: Bounds): Boolean {
return bounds.minX >= minX && bounds.maxX <= maxX && bounds.minY >= minY && bounds.maxY <= maxY
}
}
38 changes: 0 additions & 38 deletions library/src/main/java/com/google/maps/android/geometry/Point.java

This file was deleted.

45 changes: 45 additions & 0 deletions library/src/main/java/com/google/maps/android/geometry/Point.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/*
* Copyright 2025 Google LLC.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.google.maps.android.geometry

open class Point(@JvmField val x: Double, @JvmField val y: Double) {
override fun toString(): String {
return "Point(x=$x, y=$y)"
}

override fun equals(other: Any?): Boolean {
if (this === other) return true
if (javaClass != other?.javaClass) return false

other as Point

if (x != other.x) return false
if (y != other.y) return false

return true
}

override fun hashCode(): Int {
var result = x.hashCode()
result = 31 * result + y.hashCode()
return result
}

fun copy(x: Double = this.x, y: Double = this.y): Point {
return Point(x, y)
}
}
Loading