2023-03-09 16:44:23 -05:00

9 lines
292 B
C#

namespace Nerd_STF.Mathematics.Abstract;
public interface ICross<TSelf> : ICross<TSelf, TSelf>
where TSelf : ICross<TSelf> { }
public interface ICross<TSelf, TOut> where TSelf : ICross<TSelf, TOut>
{
public static abstract TOut Cross(TSelf a, TSelf b, bool normalized = false);
}