2022-04-17 17:55:56 -04:00

8 lines
149 B
C#

namespace Nerd_STF.Mathematics.Geometry;
public interface ISubdividable<T>
{
public T Subdivide();
public T Subdivide(int iterations);
}