pub struct Init3D {
pub opts: Vec<Opt>,
}Expand description
Initialize to a figure with a single set of 3D axes.
The type of the axes object is mpl_toolkits.mplot3d.axes3d.Axes3D.
Requires DefPrelude.
fig = plt.figure()
ax = axes3d.Axes3D(fig, auto_add_to_figure=False, **{opts})
fig.add_axes(ax)Prelude: No
JSON data: None
Fields§
§opts: Vec<Opt>Optional keyword arguments.
Implementations§
Trait Implementations§
Source§impl Matplotlib for Init3D
impl Matplotlib for Init3D
Source§fn is_prelude(&self) -> bool
fn is_prelude(&self) -> bool
Return
true if self should be considered as a prelude item, which
are execute in the order seen but before any non-prelude items.Source§impl MatplotlibOpts for Init3D
impl MatplotlibOpts for Init3D
impl StructuralPartialEq for Init3D
Auto Trait Implementations§
impl Freeze for Init3D
impl RefUnwindSafe for Init3D
impl Send for Init3D
impl Sync for Init3D
impl Unpin for Init3D
impl UnwindSafe for Init3D
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more