Skip to contents

Vector3 Cubic Hermite

Usage

vector3_cubic_hermite(v1, tangent1, v2, tangent2, amount)

Arguments

v1

A numeric vector of length 3.

tangent1

A numeric vector of length 3.

v2

A numeric vector of length 3.

tangent2

A numeric vector of length 3.

amount

A number.

Value

A numeric vector of length 3

Examples

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