11 lines
190 B
C#
11 lines
190 B
C#
using Graphing.Graphables;
|
|
|
|
namespace Graphing.Abstract;
|
|
|
|
public interface IConvertEquation
|
|
{
|
|
public bool UngraphWhenConvertedToEquation { get; }
|
|
|
|
public Equation ToEquation();
|
|
}
|