using System; namespace Science.Mathematics.VectorCalculus { public class Angle { public double BetweenTwoVectors(Vector a, Vector b) { double theta = Math.Acos(a*b/a.Length/b.Length); return theta; } } }