Home
last modified time | relevance | path

Searched refs:newVector (Results 1 – 1 of 1) sorted by relevance

/compose/animation/animation-core/src/commonMain/kotlin/androidx/compose/animation/core/
DAnimationVectors.kt31 internal abstract fun newVector(): AnimationVector in reset() method in androidx.compose.animation.core.AnimationVector
77 @Suppress("UNCHECKED_CAST") return this.newVector() as T in reset()
81 val newVector = newInstance() in copy() constant
82 for (i in 0 until newVector.size) { in copy()
83 newVector[i] = this[i] in copy()
85 return newVector in copy()
110 override fun newVector(): AnimationVector1D = AnimationVector1D(0f) in newVector() method
158 override fun newVector(): AnimationVector2D = AnimationVector2D(0f, 0f) in equals() method
215 override fun newVector(): AnimationVector3D = AnimationVector3D(0f, 0f, 0f) in newVector() method
279 override fun newVector(): AnimationVector4D = AnimationVector4D(0f, 0f, 0f, 0f) in equals() method