PlantSchemeWindow: Expand graph
This commit is contained in:
@@ -7,14 +7,24 @@ namespace PamhagenSysCtrl.Helpers.Pipeline {
|
||||
public double CenterY { get; set; }
|
||||
public string Label { get; set; }
|
||||
|
||||
public ISet<IEdge> Inputs { get; init; }
|
||||
|
||||
public ISet<IEdge> Outputs { get; init; }
|
||||
|
||||
public Pump(string label, double x, double y) {
|
||||
CenterX = x;
|
||||
CenterY = y;
|
||||
Label = label;
|
||||
Inputs = new HashSet<IEdge>();
|
||||
Outputs = new HashSet<IEdge>();
|
||||
}
|
||||
|
||||
public void Draw(Canvas canvas) {
|
||||
|
||||
}
|
||||
|
||||
public bool Update(double x, double y) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user