Skip to contents

Vector3 Lerp

Usage

vector3_lerp(v1, v2, amount)

Arguments

v1

A numeric vector of length 3.

v2

A numeric vector of length 3.

amount

A number.

Value

A numeric vector of length 3

Examples

vector3_lerp(c(0, 0, 0), c(0, 0, 0), 0.0)
#> x y z 
#> 0 0 0