From a65e6b3b55c1827e51d24a84e2b4964567cba64d Mon Sep 17 00:00:00 2001 From: sbosse Date: Tue, 27 Jan 2026 11:50:37 +0100 Subject: [PATCH] Tue 27 Jan 11:47:53 CET 2026 --- src/SimNDT/core/scenario.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SimNDT/core/scenario.py b/src/SimNDT/core/scenario.py index c70a321..c266252 100644 --- a/src/SimNDT/core/scenario.py +++ b/src/SimNDT/core/scenario.py @@ -21,7 +21,7 @@ class Scenario: self.Height = Height self.Pixel_mm = Pixel_mm self.Label = Label - + self.Objects = [] self.M = int(self.Height * self.Pixel_mm) self.N = int(self.Width * self.Pixel_mm) self.I = np.ones((self.M,self.N), dtype=np.uint8)*Label # create a matrix of MxN with each pixel having value as material Label @@ -134,7 +134,7 @@ class Scenario: def addObject(self, obj): - + self.Objects.append(obj) if obj.Name == "ellipse": print("Adding ellipse to Scenario.") print(obj)