pub struct Trisurf {
pub x: Vec<f64>,
pub y: Vec<f64>,
pub z: Vec<f64>,
pub opts: Vec<Opt>,
}
Expand description
A 3D surface plot using triangulation.
ax.plot_trisurf({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 Trisurf
impl Matplotlib for Trisurf
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 Trisurf
impl MatplotlibOpts for Trisurf
impl StructuralPartialEq for Trisurf
Auto Trait Implementations§
impl Freeze for Trisurf
impl RefUnwindSafe for Trisurf
impl Send for Trisurf
impl Sync for Trisurf
impl Unpin for Trisurf
impl UnwindSafe for Trisurf
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