Commit 77e78c23b3711dfa29ecc0c306bf64d0612e5030
1 parent
01ada1e7
Exists in
master
and in
6 other branches
ENH: Adding to viewers measures read from inv3
Showing
1 changed file
with
0 additions
and
5 deletions
Show diff stats
invesalius/data/measures.py
... | ... | @@ -39,7 +39,6 @@ class MeasurementManager(object): |
39 | 39 | |
40 | 40 | |
41 | 41 | def _load_measurements(self, pubsub_evt): |
42 | - print "_load_measurements" | |
43 | 42 | dict = pubsub_evt.data |
44 | 43 | for i in dict: |
45 | 44 | m = dict[i] |
... | ... | @@ -49,15 +48,11 @@ class MeasurementManager(object): |
49 | 48 | mr = AngularMeasure(m.colour) |
50 | 49 | self.current = (m, mr) |
51 | 50 | self.measures.append(self.current) |
52 | - print "m.index", m.index | |
53 | - print "m.points", m.points | |
54 | 51 | for point in m.points: |
55 | - print "-- point", point | |
56 | 52 | x, y, z = point |
57 | 53 | actors = mr.AddPoint(x, y, z) |
58 | 54 | ps.Publisher().sendMessage(("Add actors", m.location), |
59 | 55 | (actors, m.slice_number)) |
60 | - print "----" | |
61 | 56 | |
62 | 57 | |
63 | 58 | def _add_point(self, pubsub_evt): | ... | ... |