Nerd_STF/Nerd_STF/Mathematics/Geometry/Abstract/IGeometricTranslate2d.cs

8 lines
225 B
C#

namespace Nerd_STF.Mathematics.Geometry.Abstract;
public interface IGeometricTranslate2d<T> where T : IGeometricTranslate2d<T>
{
public void Translate(Float2 offset);
public T TranslateImmutable(Float2 offset);
}