()
| 251 | |
| 252 | impl Default for BezierData { |
| 253 | fn default() -> Self { |
| 254 | BezierData { |
| 255 | function: |x: f32, _t: f32| x, |
| 256 | color: Color::srgb(0.2, 0.3, 0.8), |
| 257 | size: 1.0, |
| 258 | line_style: LineStyle::Solid, |
| 259 | mech: false, |
| 260 | num_points: 256, |
| 261 | show_animation: false, |
| 262 | } |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | /// Struct containing the data to be plotted and metaparameters of a marker (or scatter) plot. |
nothing calls this directly
no test coverage detected