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

commonMain.korlibs.math.interpolation.Interpolation.vector.kt Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
package korlibs.math.interpolation

import korlibs.math.geom.*

fun Ratio.interpolate(l: Vector2D, r: Vector2D): Vector2D = Vector2D(interpolate(l.x, r.x), interpolate(l.y, r.y))
fun Ratio.interpolate(l: Vector2F, r: Vector2F): Vector2F = Vector2F(interpolate(l.x, r.x), interpolate(l.y, r.y))




© 2015 - 2025 Weber Informatics LLC | Privacy Policy