MCPcopy Create free account
hub / github.com/cpmech/plotpy / set_streamplot_extra

Method set_streamplot_extra

src/stream.rs:195–198  ·  view source on GitHub ↗

Sets extra matplotlib commands (comma separated) for the streamplot Important:** The extra commands must be comma separated. For example: ```text param1=123,param2='hello' ``` [See Matplotlib's documentation](https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.streamplot.html)

(&mut self, extra: &str)

Source from the content-addressed store, hash-verified

193 ///
194 /// [See Matplotlib's documentation](https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.streamplot.html)
195 pub fn set_streamplot_extra(&mut self, extra: &str) -> &mut Self {
196 self.streamplot_extra = extra.to_string();
197 self
198 }
199
200 /// Sets the quiver scale factor (larger values produce smaller arrows)
201 ///

Callers 1

test_stream_arrows_1Function · 0.80

Calls

no outgoing calls

Tested by 1

test_stream_arrows_1Function · 0.64