Displays all properties and current values of a `GeometricObject`, indented by `indent_by` spaces (default is 0).
(self, indent_by=0)
| 1130 | return c |
| 1131 | |
| 1132 | def info(self, indent_by=0): |
| 1133 | """ |
| 1134 | Displays all properties and current values of a `GeometricObject`, indented by |
| 1135 | `indent_by` spaces (default is 0). |
| 1136 | """ |
| 1137 | mp.display_geometric_object_info(indent_by, self) |
| 1138 | |
| 1139 | |
| 1140 | class Sphere(GeometricObject): |