|
|
|
@ -71,7 +71,7 @@ class Point(BasePoint):
|
|
|
|
|
|
|
|
|
|
@weight.setter |
|
|
|
|
def weight(self, weight): |
|
|
|
|
return self._weight |
|
|
|
|
self._weight = weight |
|
|
|
|
|
|
|
|
|
@property |
|
|
|
|
def cluster(self): |
|
|
|
@ -179,6 +179,7 @@ class Point(BasePoint):
|
|
|
|
|
s += f"X: {self._x} | Y: {self._y} | " |
|
|
|
|
s += f"SIZE: {self._point_size} | " |
|
|
|
|
s += f"COLOR: {self._color} | " |
|
|
|
|
s += f"WEIGHT: {self._weight} | " |
|
|
|
|
s += f"VIEWPORT_WIDTH: {self._viewport_width} | " |
|
|
|
|
s += f"VIEWPORT_HEIGHT: {self._viewport_height}" |
|
|
|
|
s += ">" |
|
|
|
|