Does nalgebra-glm have a lerp for Vec3

I’m currently switching from cgmath to nalgebra-glm, and so far the transition has been extremely easy. The only issue I’ve had is I can’t find a linear interpolate function for nalgebra_glm::Vec3. Is there a lerp function for Vec3 or Vectors in general? Similar to glm::lerp() from the original library. I see there’s a slerp function for TVec3, but not a regular lerp

There is currently none. This will be added in the next version (0.2) of nalgebra-glm. I will make a release after the CI passes on https://github.com/rustsim/nalgebra/pull/452