The number each triplet should sum to, and the maximum range of each axis The 'sum' property is a number and may be specified as: - An int or float in the interval [0, inf] Returns ------- int|float
(self)
| 110 | |
| 111 | @property |
| 112 | def sum(self): |
| 113 | """ |
| 114 | The number each triplet should sum to, and the maximum range of |
| 115 | each axis |
| 116 | |
| 117 | The 'sum' property is a number and may be specified as: |
| 118 | - An int or float in the interval [0, inf] |
| 119 | |
| 120 | Returns |
| 121 | ------- |
| 122 | int|float |
| 123 | """ |
| 124 | return self["sum"] |
| 125 | |
| 126 | @sum.setter |
| 127 | def sum(self, val): |
no outgoing calls