Home
last modified time | relevance | path

Searched defs:dot (Results 1 – 5 of 5) sorted by relevance

/xr/runtime/runtime-testing/src/main/kotlin/androidx/xr/runtime/testing/math/
DMathAssertions.kt49 val dot = Math.abs(actual.toNormalized().dot(expected.toNormalized())) in assertRotation() constant
/xr/runtime/runtime/src/main/kotlin/androidx/xr/runtime/math/
DVector2.kt79 public inline infix fun dot(other: Vector2): Float = x * other.x + y * other.y in cross() method in androidx.xr.runtime.math.Vector2
134 val dot = vector1 dot vector2 in hashCode() constant
DVector4.kt81 public infix fun dot(other: Vector4): Float = in unaryMinus() method in androidx.xr.runtime.math.Vector4
147 val dot = vector1 dot vector2 in toString() constant
DVector3.kt75 public infix fun dot(other: Vector3): Float = x * other.x + y * other.y + z * other.z in unaryMinus() method in androidx.xr.runtime.math.Vector3
153 val dot = vector1 dot vector2 in toString() constant
DQuaternion.kt145 public inline infix fun dot(other: Quaternion): Float = in dot() method
392 public fun dot(lhs: Quaternion, rhs: Quaternion): Float = in toString() method