dear-implot 0.12.0

High-level Rust bindings to ImPlot with dear-imgui-rs integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
//! Error bars plot implementation

use super::{
    Plot, PlotError, PlotItemStyle, plot_spec_with_style, validate_data_lengths,
    with_plot_str_or_empty,
};
use crate::{ErrorBarsFlags, ItemFlags, sys};

/// Builder for error bars plots
pub struct ErrorBarsPlot<'a> {
    label: &'a str,
    x_data: &'a [f64],
    y_data: &'a [f64],
    err_data: &'a [f64],
    style: PlotItemStyle,
    flags: ErrorBarsFlags,
    item_flags: ItemFlags,
    offset: i32,
    stride: i32,
}

impl<'a> super::PlotItemStyled for ErrorBarsPlot<'a> {
    fn style_mut(&mut self) -> &mut PlotItemStyle {
        &mut self.style
    }
}

impl<'a> ErrorBarsPlot<'a> {
    /// Create a new error bars plot with symmetric errors
    ///
    /// # Arguments
    /// * `label` - The label for the error bars
    /// * `x_data` - X coordinates of the data points
    /// * `y_data` - Y coordinates of the data points
    /// * `err_data` - Error values (symmetric, ±err)
    pub fn new(label: &'a str, x_data: &'a [f64], y_data: &'a [f64], err_data: &'a [f64]) -> Self {
        Self {
            label,
            x_data,
            y_data,
            err_data,
            style: PlotItemStyle::default(),
            flags: ErrorBarsFlags::NONE,
            item_flags: ItemFlags::NONE,
            offset: 0,
            stride: std::mem::size_of::<f64>() as i32,
        }
    }

    /// Set error bar flags for customization
    pub fn with_flags(mut self, flags: ErrorBarsFlags) -> Self {
        self.flags = flags;
        self
    }

    /// Set common item flags for this plot item (applies to all plot types)
    pub fn with_item_flags(mut self, flags: ItemFlags) -> Self {
        self.item_flags = flags;
        self
    }

    /// Set data offset for partial plotting
    pub fn with_offset(mut self, offset: i32) -> Self {
        self.offset = offset;
        self
    }

    /// Set data stride for non-contiguous data
    pub fn with_stride(mut self, stride: i32) -> Self {
        self.stride = stride;
        self
    }

    /// Make error bars horizontal instead of vertical
    pub fn horizontal(mut self) -> Self {
        self.flags |= ErrorBarsFlags::HORIZONTAL;
        self
    }

    /// Validate the plot data
    pub fn validate(&self) -> Result<(), PlotError> {
        validate_data_lengths(self.x_data, self.y_data)?;
        validate_data_lengths(self.x_data, self.err_data)?;

        // Check for negative error values
        if self.err_data.iter().any(|&err| err < 0.0) {
            return Err(PlotError::InvalidData(
                "Error values cannot be negative".to_string(),
            ));
        }

        Ok(())
    }
}

impl<'a> Plot for ErrorBarsPlot<'a> {
    fn plot(&self) {
        if self.validate().is_err() {
            return;
        }
        let Ok(count) = i32::try_from(self.x_data.len()) else {
            return;
        };
        with_plot_str_or_empty(self.label, |label_ptr| unsafe {
            let spec = plot_spec_with_style(
                self.style,
                self.flags.bits() | self.item_flags.bits(),
                self.offset,
                self.stride,
            );
            sys::ImPlot_PlotErrorBars_doublePtrdoublePtrdoublePtrInt(
                label_ptr,
                self.x_data.as_ptr(),
                self.y_data.as_ptr(),
                self.err_data.as_ptr(),
                count,
                spec,
            );
        })
    }

    fn label(&self) -> &str {
        self.label
    }
}

/// Builder for asymmetric error bars plots
pub struct AsymmetricErrorBarsPlot<'a> {
    label: &'a str,
    x_data: &'a [f64],
    y_data: &'a [f64],
    err_neg: &'a [f64],
    err_pos: &'a [f64],
    style: PlotItemStyle,
    flags: ErrorBarsFlags,
    item_flags: ItemFlags,
    offset: i32,
    stride: i32,
}

impl<'a> super::PlotItemStyled for AsymmetricErrorBarsPlot<'a> {
    fn style_mut(&mut self) -> &mut PlotItemStyle {
        &mut self.style
    }
}

impl<'a> AsymmetricErrorBarsPlot<'a> {
    /// Create a new asymmetric error bars plot
    ///
    /// # Arguments
    /// * `label` - The label for the error bars
    /// * `x_data` - X coordinates of the data points
    /// * `y_data` - Y coordinates of the data points
    /// * `err_neg` - Negative error values (downward/leftward)
    /// * `err_pos` - Positive error values (upward/rightward)
    pub fn new(
        label: &'a str,
        x_data: &'a [f64],
        y_data: &'a [f64],
        err_neg: &'a [f64],
        err_pos: &'a [f64],
    ) -> Self {
        Self {
            label,
            x_data,
            y_data,
            err_neg,
            err_pos,
            style: PlotItemStyle::default(),
            flags: ErrorBarsFlags::NONE,
            item_flags: ItemFlags::NONE,
            offset: 0,
            stride: std::mem::size_of::<f64>() as i32,
        }
    }

    /// Set error bar flags for customization
    pub fn with_flags(mut self, flags: ErrorBarsFlags) -> Self {
        self.flags = flags;
        self
    }

    /// Set common item flags for this plot item (applies to all plot types)
    pub fn with_item_flags(mut self, flags: ItemFlags) -> Self {
        self.item_flags = flags;
        self
    }

    /// Set data offset for partial plotting
    pub fn with_offset(mut self, offset: i32) -> Self {
        self.offset = offset;
        self
    }

    /// Set data stride for non-contiguous data
    pub fn with_stride(mut self, stride: i32) -> Self {
        self.stride = stride;
        self
    }

    /// Make error bars horizontal instead of vertical
    pub fn horizontal(mut self) -> Self {
        self.flags |= ErrorBarsFlags::HORIZONTAL;
        self
    }

    /// Validate the plot data
    pub fn validate(&self) -> Result<(), PlotError> {
        validate_data_lengths(self.x_data, self.y_data)?;
        validate_data_lengths(self.x_data, self.err_neg)?;
        validate_data_lengths(self.x_data, self.err_pos)?;

        // Check for negative error values
        if self.err_neg.iter().any(|&err| err < 0.0) || self.err_pos.iter().any(|&err| err < 0.0) {
            return Err(PlotError::InvalidData(
                "Error values cannot be negative".to_string(),
            ));
        }

        Ok(())
    }
}

impl<'a> Plot for AsymmetricErrorBarsPlot<'a> {
    fn plot(&self) {
        if self.validate().is_err() {
            return;
        }
        let Ok(count) = i32::try_from(self.x_data.len()) else {
            return;
        };
        with_plot_str_or_empty(self.label, |label_ptr| unsafe {
            let spec = plot_spec_with_style(
                self.style,
                self.flags.bits() | self.item_flags.bits(),
                self.offset,
                self.stride,
            );
            sys::ImPlot_PlotErrorBars_doublePtrdoublePtrdoublePtrdoublePtr(
                label_ptr,
                self.x_data.as_ptr(),
                self.y_data.as_ptr(),
                self.err_neg.as_ptr(),
                self.err_pos.as_ptr(),
                count,
                spec,
            );
        })
    }

    fn label(&self) -> &str {
        self.label
    }
}

/// Simple error bars plot for quick plotting
pub struct SimpleErrorBarsPlot<'a> {
    label: &'a str,
    values: &'a [f64],
    errors: &'a [f64],
    style: PlotItemStyle,
    flags: ErrorBarsFlags,
    item_flags: ItemFlags,
    x_scale: f64,
    x_start: f64,
}

impl<'a> super::PlotItemStyled for SimpleErrorBarsPlot<'a> {
    fn style_mut(&mut self) -> &mut PlotItemStyle {
        &mut self.style
    }
}

impl<'a> SimpleErrorBarsPlot<'a> {
    /// Create a simple error bars plot with Y values only (X will be indices)
    pub fn new(label: &'a str, values: &'a [f64], errors: &'a [f64]) -> Self {
        Self {
            label,
            values,
            errors,
            style: PlotItemStyle::default(),
            flags: ErrorBarsFlags::NONE,
            item_flags: ItemFlags::NONE,
            x_scale: 1.0,
            x_start: 0.0,
        }
    }

    /// Set error bar flags for customization
    pub fn with_flags(mut self, flags: ErrorBarsFlags) -> Self {
        self.flags = flags;
        self
    }

    /// Set common item flags for this plot item (applies to all plot types)
    pub fn with_item_flags(mut self, flags: ItemFlags) -> Self {
        self.item_flags = flags;
        self
    }

    /// Make error bars horizontal instead of vertical
    pub fn horizontal(mut self) -> Self {
        self.flags |= ErrorBarsFlags::HORIZONTAL;
        self
    }

    /// Set X scale factor
    pub fn with_x_scale(mut self, scale: f64) -> Self {
        self.x_scale = scale;
        self
    }

    /// Set X start value
    pub fn with_x_start(mut self, start: f64) -> Self {
        self.x_start = start;
        self
    }

    /// Validate the plot data
    pub fn validate(&self) -> Result<(), PlotError> {
        validate_data_lengths(self.values, self.errors)?;

        if self.errors.iter().any(|&err| err < 0.0) {
            return Err(PlotError::InvalidData(
                "Error values cannot be negative".to_string(),
            ));
        }

        Ok(())
    }
}

impl<'a> Plot for SimpleErrorBarsPlot<'a> {
    fn plot(&self) {
        if self.validate().is_err() {
            return;
        }
        let Ok(count) = i32::try_from(self.values.len()) else {
            return;
        };

        // Create temporary X data
        let x_data: Vec<f64> = (0..self.values.len())
            .map(|i| self.x_start + i as f64 * self.x_scale)
            .collect();

        with_plot_str_or_empty(self.label, |label_ptr| unsafe {
            let spec = plot_spec_with_style(
                self.style,
                self.flags.bits() | self.item_flags.bits(),
                0,
                std::mem::size_of::<f64>() as i32,
            );
            sys::ImPlot_PlotErrorBars_doublePtrdoublePtrdoublePtrInt(
                label_ptr,
                x_data.as_ptr(),
                self.values.as_ptr(),
                self.errors.as_ptr(),
                count,
                spec,
            );
        })
    }

    fn label(&self) -> &str {
        self.label
    }
}

/// Convenience functions for quick error bars plotting
impl<'ui> crate::PlotUi<'ui> {
    /// Plot error bars with symmetric errors
    pub fn error_bars_plot(
        &self,
        label: &str,
        x_data: &[f64],
        y_data: &[f64],
        err_data: &[f64],
    ) -> Result<(), PlotError> {
        let plot = ErrorBarsPlot::new(label, x_data, y_data, err_data);
        plot.validate()?;
        plot.plot();
        Ok(())
    }

    /// Plot error bars with asymmetric errors
    pub fn asymmetric_error_bars_plot(
        &self,
        label: &str,
        x_data: &[f64],
        y_data: &[f64],
        err_neg: &[f64],
        err_pos: &[f64],
    ) -> Result<(), PlotError> {
        let plot = AsymmetricErrorBarsPlot::new(label, x_data, y_data, err_neg, err_pos);
        plot.validate()?;
        plot.plot();
        Ok(())
    }

    /// Plot simple error bars with Y values only (X will be indices)
    pub fn simple_error_bars_plot(
        &self,
        label: &str,
        values: &[f64],
        errors: &[f64],
    ) -> Result<(), PlotError> {
        let plot = SimpleErrorBarsPlot::new(label, values, errors);
        plot.validate()?;
        plot.plot();
        Ok(())
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_simple_error_bars_plot_flags() {
        let values = [1.0, 2.0, 3.0, 4.0];
        let errors = [0.1, 0.2, 0.3, 0.4];
        let plot = SimpleErrorBarsPlot::new("test", &values, &errors)
            .horizontal()
            .with_item_flags(ItemFlags::NO_LEGEND);
        assert_eq!(plot.label(), "test");
        assert_eq!(plot.flags.bits(), ErrorBarsFlags::HORIZONTAL.bits());
        assert_eq!(plot.item_flags, ItemFlags::NO_LEGEND);
    }
}