17 lines
411 B
C#
17 lines
411 B
C#
using System.Windows.Controls;
|
|
|
|
namespace PamhagenSysCtrl.Helpers.Pipeline {
|
|
public interface INode {
|
|
|
|
public double CenterX { get; }
|
|
public double CenterY { get; }
|
|
public string Label { get; }
|
|
public ISet<IEdge> Inputs { get; }
|
|
public ISet<IEdge> Outputs { get; }
|
|
|
|
public void Draw(Canvas canvas);
|
|
public bool Update(double x, double y);
|
|
|
|
}
|
|
}
|