-
- def show_axes(self):
- """Show the axes orientation widget."""
- if hasattr(self, 'axes_widget'):
- self.axes_widget.EnabledOn()
- self.axes_widget.SetCurrentRenderer(self)
- else:
- self.add_axes()
- self.Modified()
-
- def show_bounds(self, mesh=None, bounds=None, show_xaxis=True,
- show_yaxis=True, show_zaxis=True, show_xlabels=True,
- show_ylabels=True, show_zlabels=True, italic=False,
- bold=True, shadow=False, font_size=None,
- font_family=None, color=None,
- xlabel='X Axis', ylabel='Y Axis', zlabel='Z Axis',
- use_2d=False, grid=None, location='closest', ticks=None,
- all_edges=False, corner_factor=0.5, fmt=None,
- minor_ticks=False, padding=0.0):
- """Add bounds axes.
-