Add remaining tanks

This commit is contained in:
2026-07-13 17:11:21 +02:00
parent 011f90233c
commit 74ec9527da
13 changed files with 378 additions and 110 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ namespace PamhagenSysCtrl.Helpers.Pipeline {
public ISet<IEdge> Inputs { get; init; }
public ISet<IEdge> Outputs { get; init; }
private Ellipse? _circle;
private Shape? _circle;
private TextBlock? _text;
public Pump(string label, double x, double y) {
@@ -26,7 +26,7 @@ namespace PamhagenSysCtrl.Helpers.Pipeline {
}
public void Draw(Canvas canvas) {
_circle = new() {
_circle = new Ellipse() {
Height = RADIUS,
Width = RADIUS,
Fill = Brushes.WhiteSmoke,