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

com.neko233.skilltree.game.spaceMath.Vector2D.kt Maven / Gradle / Ivy

There is a newer version: 0.3.6
Show newest version
package com.example.kotlinplayground.spaceMath

/**
 * 二维向量
 *
 * @author SolarisNeko on 2023-10-01
 */
data class Vector2D(
    val x: Float,
    val y: Float,
) {

    constructor(
        x: Number,
        y: Number,
    ) : this(x.toFloat(), y.toFloat())
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy