2D cross product

This commit is contained in:
DBotThePony 2024-02-29 10:48:39 +07:00
parent a6abc783b4
commit 16666055ba
Signed by: DBot
GPG Key ID: DCC23B5715498507
4 changed files with 64 additions and 1 deletions

View File

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

View File

@ -111,6 +111,27 @@ data class Vector2d(
operator fun unaryMinus(): Vector2d = Vector2d(-x, -y)
/**
* 2D vector cross product (Z coordinate)
*/
fun cross(other: IStruct2d): Double {
return x * other.component2() - other.component1() * y
}
/**
* 2D vector cross product (Z coordinate)
*/
fun cross(other: IStruct2f): Double {
return x * other.component2() - other.component1() * y
}
/**
* 2D vector cross product (Z coordinate)
*/
fun cross(other: IStruct2i): Double {
return x * other.component2() - other.component1() * y
}
fun dot(x: Double, y: Double) = this.x * x + this.y * y
fun dot(value: IStruct2d): Double { val (x, y) = value; return dot(x, y) }
fun dot(value: Vector2d): Double { val (x, y) = value; return dot(x, y) }

View File

@ -111,6 +111,27 @@ data class Vector2f(
operator fun unaryMinus(): Vector2f = Vector2f(-x, -y)
/**
* 2D vector cross product (Z coordinate)
*/
fun cross(other: IStruct2f): Float {
return x * other.component2() - other.component1() * y
}
/**
* 2D vector cross product (Z coordinate)
*/
fun cross(other: IStruct2i): Float {
return x * other.component2() - other.component1() * y
}
/**
* 2D vector cross product (Z coordinate)
*/
fun cross(other: IStruct2d): Double {
return x * other.component2() - other.component1() * y
}
fun dot(x: Float, y: Float) = this.x * x + this.y * y
fun dot(value: IStruct2f): Float { val (x, y) = value; return dot(x, y) }
fun dot(value: Vector2f): Float { val (x, y) = value; return dot(x, y) }

View File

@ -88,6 +88,27 @@ data class Vector2i(
operator fun unaryMinus(): Vector2i = Vector2i(-x, -y)
/**
* 2D vector cross product (Z coordinate)
*/
fun cross(other: IStruct2f): Float {
return x * other.component2() - other.component1() * y
}
/**
* 2D vector cross product (Z coordinate)
*/
fun cross(other: IStruct2i): Int {
return x * other.component2() - other.component1() * y
}
/**
* 2D vector cross product (Z coordinate)
*/
fun cross(other: IStruct2d): Double {
return x * other.component2() - other.component1() * y
}
fun dot(x: Int, y: Int) = this.x * x + this.y * y
fun dot(value: IStruct2i): Int { val (x, y) = value; return dot(x, y) }
fun dot(value: Vector2i): Int { val (x, y) = value; return dot(x, y) }