Removed unnecessary enum
This commit is contained in:
parent
023d9a8f41
commit
2efc464cb1
1 changed files with 0 additions and 9 deletions
|
@ -172,15 +172,6 @@ pub enum StyleVar {
|
||||||
}
|
}
|
||||||
|
|
||||||
// --- Main plot structure -----------------------------------------------------------------------
|
// --- Main plot structure -----------------------------------------------------------------------
|
||||||
/// Different plot tick types
|
|
||||||
enum PlotTicks {
|
|
||||||
/// Every tick comes with a label
|
|
||||||
Labelled(Vec<(f64, String)>),
|
|
||||||
|
|
||||||
/// No labels, ticks are simply used to say which numbers get shown
|
|
||||||
Unlabelled(Vec<f64>),
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Struct to represent an ImPlot. This is the main construct used to contain all kinds of plots in ImPlot.
|
/// Struct to represent an ImPlot. This is the main construct used to contain all kinds of plots in ImPlot.
|
||||||
///
|
///
|
||||||
/// `Plot` is to be used (within an imgui window) with the following pattern:
|
/// `Plot` is to be used (within an imgui window) with the following pattern:
|
||||||
|
|
Loading…
Reference in a new issue