X-Git-Url: http://rtime.felk.cvut.cz/gitweb/hubacji1/bcar.git/blobdiff_plain/e6084377f2af4bdfdc314a500c0f26ceafb43344..ab9c047bc236bee5e8298490c6e931548a880a7d:/incl/bcar.hh diff --git a/incl/bcar.hh b/incl/bcar.hh index d6b764c..018415d 100644 --- a/incl/bcar.hh +++ b/incl/bcar.hh @@ -480,22 +480,29 @@ public: /*! Options for generating output for gnuplot. */ class GenPlotOpts { public: - static bool LEFT; - static bool RIGHT; - static bool REAR; - static bool FRONT; - static bool FRAME; - static bool ARROW; - static bool CROSS; - static bool CAR; - static bool LEFT_MIRROR; - static bool RIGHT_MIRROR; - static bool MIRRORS; - static bool ALL; + bool LF_POINT = false; + bool LR_POINT = false; + bool RR_POINT = false; + bool RF_POINT = false; + bool LFM_POINT = false; + bool RFM_POINT = false; + + bool LEFT = false; + bool RIGHT = false; + bool REAR = false; + bool FRONT = false; + bool FRAME = false; // LEFT, RIGHT, REAR, FRONT + bool ARROW = false; + bool CROSS = false; + bool CAR = false; // CROSS, ARROW, FRAME + bool LEFT_MIRROR = false; + bool RIGHT_MIRROR = false; + bool MIRRORS = false; // RIGHT_MIRROR, LEFT_MIRROR + bool ALL = true; // MIRRORS, CAR }; /*! Generate output for plotting with gnuplot. */ - void gen_gnuplot_to(std::ostream& out, GenPlotOpts const& opts); + void gen_gnuplot_to(std::ostream& out, GenPlotOpts opts); }; } // namespace bcar