namespace Cryville.Common.Math { public interface IVectorOperator { T Add(T lhs, T rhs); T ScalarMultiply(float lhs, T rhs); } }