PlantSchemeWindow: Expand graph
This commit is contained in:
@@ -9,9 +9,15 @@ namespace PamhagenSysCtrl.Helpers.Pipeline {
|
||||
public double CenterY { get; set; }
|
||||
public string Label { get; } = "";
|
||||
|
||||
public ISet<IEdge> Inputs { get; init; }
|
||||
|
||||
public ISet<IEdge> Outputs { get; init; }
|
||||
|
||||
public PipeJoin(double x, double y) {
|
||||
CenterX = x;
|
||||
CenterY = y;
|
||||
Inputs = new HashSet<IEdge>();
|
||||
Outputs = new HashSet<IEdge>();
|
||||
}
|
||||
|
||||
public void Draw(Canvas canvas) {
|
||||
@@ -24,5 +30,9 @@ namespace PamhagenSysCtrl.Helpers.Pipeline {
|
||||
e.SetValue(Canvas.TopProperty, CenterY - 9);
|
||||
canvas.Children.Add(e);
|
||||
}
|
||||
|
||||
public bool Update(double x, double y) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user