pub struct Plot3 {
pub x: Vec<f64>,
pub y: Vec<f64>,
pub z: Vec<f64>,
pub opts: Vec<Opt>,
}
Expand description
A (x, y, z) plot.
ax.plot({x}, {y}, {z}, **{opts})
Prelude: No
JSON data: [list[float], list[float], list[float]]
Fields§
§x: Vec<f64>
X-coordinates.
y: Vec<f64>
Y-coordinates.
z: Vec<f64>
Z-coordinates.
opts: Vec<Opt>
Optional keyword arguments.
Implementations§
Trait Implementations§
Source§impl Matplotlib for Plot3
impl Matplotlib for Plot3
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 Plot3
impl MatplotlibOpts for Plot3
impl StructuralPartialEq for Plot3
Auto Trait Implementations§
impl Freeze for Plot3
impl RefUnwindSafe for Plot3
impl Send for Plot3
impl Sync for Plot3
impl Unpin for Plot3
impl UnwindSafe for Plot3
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