mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-13 20:08:55 +00:00
Rotation support
This commit is contained in:
parent
4f78efa0c8
commit
03e9eac55b
@ -24,7 +24,7 @@ class Shape:
|
||||
Shape are visual element not used by the network emulation. Like
|
||||
text, images, rectangle... They are pure SVG elements.
|
||||
"""
|
||||
def __init__(self, project, shape_id=None, svg="<svg></svg>", x=0, y=0, z=0):
|
||||
def __init__(self, project, shape_id=None, svg="<svg></svg>", x=0, y=0, z=0, rotation=0):
|
||||
self.svg = svg
|
||||
self._project = project
|
||||
if shape_id is None:
|
||||
@ -34,6 +34,7 @@ class Shape:
|
||||
self._x = x
|
||||
self._y = y
|
||||
self._z = z
|
||||
self._rotation = rotation
|
||||
|
||||
@property
|
||||
def id(self):
|
||||
@ -71,6 +72,14 @@ class Shape:
|
||||
def z(self, val):
|
||||
self._z = val
|
||||
|
||||
@property
|
||||
def rotation(self):
|
||||
return self._rotation
|
||||
|
||||
@rotation.setter
|
||||
def rotation(self, val):
|
||||
self._rotation = val
|
||||
|
||||
@asyncio.coroutine
|
||||
def update(self, **kwargs):
|
||||
"""
|
||||
@ -96,6 +105,7 @@ class Shape:
|
||||
"x": self._x,
|
||||
"y": self._y,
|
||||
"z": self._z,
|
||||
"rotation": self._rotation,
|
||||
"svg": self._svg
|
||||
}
|
||||
return {
|
||||
@ -104,6 +114,7 @@ class Shape:
|
||||
"x": self._x,
|
||||
"y": self._y,
|
||||
"z": self._z,
|
||||
"rotation": self._rotation,
|
||||
"svg": self._svg
|
||||
}
|
||||
|
||||
|
@ -47,6 +47,12 @@ SHAPE_OBJECT_SCHEMA = {
|
||||
"description": "Z property",
|
||||
"type": "integer"
|
||||
},
|
||||
"rotation": {
|
||||
"description": "Rotation of the element",
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"maximum": 360
|
||||
},
|
||||
"svg": {
|
||||
"description": "SVG content of the shape",
|
||||
"type": "string",
|
||||
|
@ -55,13 +55,15 @@ def test_json(project):
|
||||
"x": i.x,
|
||||
"y": i.y,
|
||||
"z": i.z,
|
||||
"svg": i.svg
|
||||
"svg": i.svg,
|
||||
"rotation": i.rotation
|
||||
}
|
||||
assert i.__json__(topology_dump=True) == {
|
||||
"shape_id": i.id,
|
||||
"x": i.x,
|
||||
"y": i.y,
|
||||
"z": i.z,
|
||||
"rotation": i.rotation,
|
||||
"svg": i.svg
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user