angle entre deux vecteurs

function angleTo(v: Vector) {
        return Math.atan2(v.y - this.y, v.x - this.x)
 }
Himanshu Jangid