using System.Numerics; namespace RhythmBase.Components { /// /// Represents a vortex interface that supports various mathematical operations. /// /// The type that implements this interface. /// The type of the right operand in addition and subtraction operations. /// The type of the value in multiplication and division operations. public interface IRDVortex : IEquatable, IAdditionOperators, ISubtractionOperators, IMultiplyOperators, IDivisionOperators, IEqualityOperators where TSelf : IEquatable, IAdditionOperators, ISubtractionOperators, IMultiplyOperators, IDivisionOperators, IEqualityOperators { } }