From 2efc464cb1a2195a4cf2876d65ce925b04a546ee Mon Sep 17 00:00:00 2001 From: 4bb4 <67376761+4bb4@users.noreply.github.com> Date: Sun, 20 Sep 2020 21:49:12 +0200 Subject: [PATCH] Removed unnecessary enum --- src/lib.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 91ef4e9..6ec468c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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), -} - /// 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: