LifeSimulation.Core.Vector.Dot C# (CSharp) Method

Dot() public method

public Dot ( Vector other ) : double
other Vector
return double
        public double Dot(Vector other)
        {
            return _x*other.X + _y*other.Y;
        }