More float<>double vector conversions

This commit is contained in:
DBotThePony 2024-02-11 11:04:27 +07:00
parent ffa7f0361f
commit cea22e65a2
Signed by: DBot
GPG Key ID: DCC23B5715498507
7 changed files with 13 additions and 1 deletions

View File

@ -4,7 +4,7 @@ kotlin.code.style=official
specifyKotlinAsDependency=false
projectGroup=ru.dbotthepony.kommons
projectVersion=2.1.5
projectVersion=2.1.6
guavaDepVersion=33.0.0
gsonDepVersion=2.8.9

View File

@ -191,6 +191,9 @@ data class Vector2d(
operator fun times(value: Matrix4dStack) = times(value.last())
fun toDoubleVector() = this
fun toFloatVector() = Vector2f(x.toFloat(), y.toFloat())
companion object {
@JvmField val ZERO = Vector2d()
@JvmField val POSITIVE_X = Vector2d(x = 1.0)

View File

@ -192,6 +192,7 @@ data class Vector2f(
operator fun times(value: Matrix4fStack) = times(value.last())
fun toDoubleVector() = Vector2d(x.toDouble(), y.toDouble())
fun toFloatVector() = this
companion object {
@JvmField val ZERO = Vector2f()

View File

@ -205,6 +205,9 @@ data class Vector3d(
operator fun times(value: Matrix4dStack) = times(value.last())
fun toDoubleVector() = this
fun toFloatVector() = Vector3f(x.toFloat(), y.toFloat(), z.toFloat())
companion object {
@JvmField val ZERO = Vector3d()
@JvmField val POSITIVE_X = Vector3d(x = 1.0)

View File

@ -206,6 +206,7 @@ data class Vector3f(
operator fun times(value: Matrix4fStack) = times(value.last())
fun toDoubleVector() = Vector3d(x.toDouble(), y.toDouble(), z.toDouble())
fun toFloatVector() = this
companion object {
@JvmField val ZERO = Vector3f()

View File

@ -226,6 +226,9 @@ data class Vector4d(
operator fun times(value: Matrix4dStack) = times(value.last())
fun toDoubleVector() = this
fun toFloatVector() = Vector4f(x.toFloat(), y.toFloat(), z.toFloat(), w.toFloat())
companion object {
@JvmField val ZERO = Vector4d()
@JvmField val POSITIVE_X = Vector4d(x = 1.0)

View File

@ -229,6 +229,7 @@ data class Vector4f(
operator fun times(value: Matrix4fStack) = times(value.last())
fun toDoubleVector() = Vector4d(x.toDouble(), y.toDouble(), z.toDouble(), w.toDouble())
fun toFloatVector() = this
companion object {
@JvmField val ZERO = Vector4f()