Currently I'm working on a
vector class in C# and now I'm coming to the point, where I've to figure out, how i want to implement the functions for interpolation between two vectors. At first I came up with implementing the functions directly into the
vector class...
public class Vector3D
{
public static Vector3D LinearInterpolate(Vector3D
…