Radegast.Rendering.Camera.Interpolate C# (CSharp) Method

Interpolate() private method

private Interpolate ( System.Vector3 start, System.Vector3 end, float fraction ) : System.Vector3
start System.Vector3
end System.Vector3
fraction float
return System.Vector3
        Vector3 Interpolate(Vector3 start, Vector3 end, float fraction)
        {
            float distance = Vector3.Distance(start, end);
            Vector3 direction = end - start;
            return start + direction * fraction;
        }