Removed unnecessary enum

This commit is contained in:
4bb4 2020-09-20 21:49:12 +02:00
parent 023d9a8f41
commit 2efc464cb1

View file

@ -172,15 +172,6 @@ pub enum StyleVar {
}
// --- 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.
///
/// `Plot` is to be used (within an imgui window) with the following pattern: