All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.bselzer.gw2.v2.model.tile.position.BoundedPosition.kt Maven / Gradle / Ivy

There is a newer version: 3.11.0
Show newest version
package com.bselzer.gw2.v2.model.tile.position

import com.bselzer.ktx.geometry.dimension.bi.position.Coordinates2D
import com.bselzer.ktx.geometry.dimension.bi.position.Point2D
import com.bselzer.ktx.serialization.serializer.Point2DSerializer
import kotlinx.serialization.Serializable
import kotlin.jvm.JvmInline

/**
 * The absolute position within the bounds of the grid.
 */
@Serializable
@JvmInline
value class BoundedPosition(
    @Serializable(with = Point2DSerializer::class)
    private val value: Point2D = Point2D()
) : Coordinates2D {
    constructor(x: Double, y: Double) : this(Point2D(x, y))

    override val x: Double
        get() = value.x

    override val y: Double
        get() = value.y

    override fun toString(): String = value.toString()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy