This commit is contained in:
2021-09-07 07:19:23 +02:00
parent e112ce52e3
commit be4d8e0ff9
3 changed files with 4 additions and 7 deletions

View File

@@ -2,7 +2,6 @@ from numpy import array as a
from UI.Objects.Multiscene import Multiscene
from UI.Objects.nr_objects.Line import Line
from UI.Objects.nr_objects.controllable_objects.RopeInteractiveDot import RopeInteractiveDot
from UI.Scenes.RopeScene import RopeScene
@@ -20,9 +19,6 @@ class RopeMultiscene(Multiscene):
l0 = Line(a([200, 0]), a([200, 400]), 10, (255, 100, 100), self)
rd0 = RopeInteractiveDot(a([0, 0]), 10, (100, 255, 100), 20, 100, self)
#self.nrc_objects.append(rd0)
self.sort_objects(s0, s1, l0)
self.i = 0