From f00e75ba29168d4b9b7fff91700c2e7cfc31b8b7 Mon Sep 17 00:00:00 2001 From: rrsr28 Date: Tue, 13 Jun 2023 17:08:44 +0530 Subject: Added class for KettleReboiler --- src/main/python/shapes/shapes.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/main/python/shapes/shapes.py b/src/main/python/shapes/shapes.py index b135959..d9f6b52 100644 --- a/src/main/python/shapes/shapes.py +++ b/src/main/python/shapes/shapes.py @@ -981,6 +981,15 @@ class ImmersionCoil(NodeItem): [88.232463407718, 100, "top"] ] +class KettleReboiler(NodeItem): + def __init__(self): + super(KettleReboiler, self).__init__("svg/Heating or Cooling Arrangements/Kettle Reboiler") + self.grips = [ + [100, 26.3, "right"], + [0, 26.3, "left"], + [50, 100, "top"], + [50, 0, "bottom"] + ] class HorizontalVessel(NodeItem): def __init__(self): -- cgit