Roll the map (in degrees) For example, a roll of 180 makes the map appear upside down. The 'roll' property is a number and may be specified as: - An int or float Returns ------- int|float
(self)
| 49 | |
| 50 | @property |
| 51 | def roll(self): |
| 52 | """ |
| 53 | Roll the map (in degrees) For example, a roll of 180 makes the |
| 54 | map appear upside down. |
| 55 | |
| 56 | The 'roll' property is a number and may be specified as: |
| 57 | - An int or float |
| 58 | |
| 59 | Returns |
| 60 | ------- |
| 61 | int|float |
| 62 | """ |
| 63 | return self["roll"] |
| 64 | |
| 65 | @roll.setter |
| 66 | def roll(self, val): |