11 lines
208 B
C#
11 lines
208 B
C#
using Graphing.Graphables;
|
|
|
|
namespace Graphing.Abstract;
|
|
|
|
public interface IConvertSlopeField
|
|
{
|
|
public bool UngraphWhenConvertedToSlopeField { get; }
|
|
|
|
public SlopeField ToSlopeField(int detail);
|
|
}
|