| 6 | |
| 7 | |
| 8 | class Up(_BaseLayoutHierarchyType): |
| 9 | _parent_path_str = "layout.scene.camera" |
| 10 | _path_str = "layout.scene.camera.up" |
| 11 | _valid_props = {"x", "y", "z"} |
| 12 | |
| 13 | @property |
| 14 | def x(self): |
| 15 | """ |
| 16 | The 'x' property is a number and may be specified as: |
| 17 | - An int or float |
| 18 | |
| 19 | Returns |
| 20 | ------- |
| 21 | int|float |
| 22 | """ |
| 23 | return self["x"] |
| 24 | |
| 25 | @x.setter |
| 26 | def x(self, val): |
| 27 | self["x"] = val |
| 28 | |
| 29 | @property |
| 30 | def y(self): |
| 31 | """ |
| 32 | The 'y' property is a number and may be specified as: |
| 33 | - An int or float |
| 34 | |
| 35 | Returns |
| 36 | ------- |
| 37 | int|float |
| 38 | """ |
| 39 | return self["y"] |
| 40 | |
| 41 | @y.setter |
| 42 | def y(self, val): |
| 43 | self["y"] = val |
| 44 | |
| 45 | @property |
| 46 | def z(self): |
| 47 | """ |
| 48 | The 'z' property is a number and may be specified as: |
| 49 | - An int or float |
| 50 | |
| 51 | Returns |
| 52 | ------- |
| 53 | int|float |
| 54 | """ |
| 55 | return self["z"] |
| 56 | |
| 57 | @z.setter |
| 58 | def z(self, val): |
| 59 | self["z"] = val |
| 60 | |
| 61 | @property |
| 62 | def _prop_descriptions(self): |
| 63 | return """\ |
| 64 | x |
| 65 |
no outgoing calls
no test coverage detected