LifeSimulation.Core.Vector.AngleBetween C# (CSharp) Méthode

AngleBetween() public méthode

public AngleBetween ( Vector other ) : double
other Vector
Résultat double
        public double AngleBetween(Vector other)
        {
            return Math.Atan2(this.X - other.X, this.Y - other.Y);
        }