diff options
author | rrsr28 | 2023-06-13 17:06:58 +0530 |
---|---|---|
committer | rrsr28 | 2023-06-13 17:06:58 +0530 |
commit | c9c43134e9d7bc43ea9820ee61ff699f4401018c (patch) | |
tree | b1725eba811b55f3e7718f850e918a4db8fee2ff | |
parent | a8c07bc4049463e9bd326905be8a6f6d9b85c721 (diff) | |
download | Chemical-PFD-c9c43134e9d7bc43ea9820ee61ff699f4401018c.tar.gz Chemical-PFD-c9c43134e9d7bc43ea9820ee61ff699f4401018c.tar.bz2 Chemical-PFD-c9c43134e9d7bc43ea9820ee61ff699f4401018c.zip |
Added class for 907KettleReboiler
-rw-r--r-- | src/main/python/shapes/shapes.py | 9 | ||||
-rw-r--r-- | src/main/resources/base/config/items.json | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/src/main/python/shapes/shapes.py b/src/main/python/shapes/shapes.py index a04aa5e..b135959 100644 --- a/src/main/python/shapes/shapes.py +++ b/src/main/python/shapes/shapes.py @@ -941,6 +941,15 @@ class Exchanger905(NodeItem): [60.5, 88.88, "top", 55.33] ] +class KettleReboiler907(NodeItem): + def __init__(self): + super(KettleReboiler907, self).__init__("svg/Heating or Cooling Arrangements/907Kettle Reboiler") + self.grips = [ + [18, 20.33, "bottom", 18], + [70, 20.33, "bottom", 40.33], + [18, 75, "top", 18], + [70, 96, "top", 40.33] + ] class Exchanger(NodeItem): def __init__(self): diff --git a/src/main/resources/base/config/items.json b/src/main/resources/base/config/items.json index a9a7710..2815ad0 100644 --- a/src/main/resources/base/config/items.json +++ b/src/main/resources/base/config/items.json @@ -85,7 +85,7 @@ "name": "Kettle Reboiler", "icon": "./Heating or Cooling Arrangements/907Kettle Reboiler.png", "class": "Heating or Cooling Arrangements", - "object": "KettleReboiler", + "object": "KettleReboiler907", "args": [] }, "Exchanger": { |