How to find the vector that is halfway between 2 unit vectors?

The solution will probably be simple but the green one is the one I’m trying to calculate:

1 Like

Use lerp:
Vector1:Lerp(Vector2, 0.5)

1 Like

Are these unit vectors that you are talking about?

1 Like

What do you mean this? There’s multiple interpretations that could be made out of this but my guess is that you want something like https://www.desmos.com/calculator/bpg9oesd2m? (This is calculating force vectors)
Equations:

(x-a_f)^2+(y-b_f)^2
a_f=ta_1+ta_2+ta_3
b_f=tb_1+tb_2+tb_3

Calculating force vector:

F=sqrt(a_1^2+b_1^2)+sqrt(a_2^2+b_2^2)+sqrt(a_3^2+b_3^2)

Also a_3 and b_3 usually can be 0 unless you need those calculations

Edit:Forgot a bunch of equations

1 Like