1
0
Fork 0
mirror of https://github.com/gwm17/implot.git synced 2024-10-09 23:57:26 -04:00
Commit Graph

64 Commits

Author SHA1 Message Date
Evan Pezent 09ef003a81 clean up primitive rendering work, test new offset/stride and improve demo 2020-06-07 13:13:11 -05:00
Evan Pezent 523ae3aef4 fixed dragging issue where plots that were not mouse-clicked would be dragged 2020-06-06 17:54:46 -05:00
Evan Pezent 4be885bf57 Merge branch 'master' of https://github.com/epezent/implot 2020-06-04 09:57:02 -05:00
Evan Pezent 2a5a78565b internal refactors and misc improvements 2020-06-04 09:56:50 -05:00
Evan Pezent 97c2f06eda
Fix trivial mistake in demo. 2020-06-04 00:17:38 -05:00
Evan Pezent a70bbe5cff internal refactors and demo improvements 2020-06-04 00:11:43 -05:00
Evan Pezent 43f78f62b9 add formats to PieChart and Heatmap, fix compiler warnings 2020-06-03 22:18:47 -05:00
Evan Pezent f59913b8e0 finish custom ticks 2020-06-03 14:37:01 -05:00
Evan Pezent ea51c41b4a finish heatmaps 2020-06-02 22:07:27 -05:00
Evan Pezent 663738452f colormaps 2020-06-02 12:35:20 -05:00
Evan Pezent 356e604bd2 colormaps 2020-06-02 12:34:14 -05:00
Evan Pezent 468ffe9ead initial heatmap prototype working 2020-06-01 22:14:22 -05:00
Evan Pezent 3faaa5d25d add ability to render filled lines 2020-05-31 16:32:32 -05:00
Evan Pezent a4d1d03456 reorganize header 2020-05-31 09:17:07 -05:00
Evan Pezent aa23d95e21 Merge branch 'double' 2020-05-29 12:43:51 -05:00
Evan Pezent 43625257b0 double precision work complete 2020-05-29 12:39:30 -05:00
Evan Pezent aa13f3c335 fix bug in dnd demo 2020-05-22 07:42:07 -05:00
Evan Pezent 2fd9d3f756 checkpoint 2020-05-16 21:53:59 -05:00
Evan Pezent 226ae4c10b checkpoint 2020-05-16 21:09:36 -05:00
Evan Pezent 3421c26270 change PlotBar to PlotBars 2020-05-16 09:14:48 -05:00
Evan Pezent 95aeba415e make default size arguments work 2020-05-16 09:11:29 -05:00
Evan Pezent c4e9d64600 rename plotting functions, add PlotScatter 2020-05-16 08:43:24 -05:00
Evan Pezent b783185acc rename plotting functions, add PlotScatter 2020-05-16 08:39:43 -05:00
Evan Pezent f383f8a914 merge pr 2020-05-15 08:01:00 -05:00
SergeyN 7d550d350e warning fixes, removed conversions from float to double and back. removed static text buffers, use of secure sprintf functions on windows 2020-05-13 23:33:36 +02:00
SergeyN c6cc4082ab warning fixes, removed conversions from float to double and back. removed static text buffers, use of secure sprintf functions on windows 2020-05-13 23:33:35 +02:00
ozlb c71f893aeb
Merge branch 'master' into master 2020-05-13 17:25:26 +02:00
ozlb 595d04c0c6
C++11 extensions update after enums with ImPlot 2020-05-13 17:24:11 +02:00
Evan Pezent a0c9dc120c trim trailing whitespace 2020-05-13 09:11:25 -05:00
Evan Pezent 8e25aec9f5 prefix all public facing structs and enums with ImPlot 2020-05-13 09:08:12 -05:00
Evan Pezent b11fb62f55 test negative offset, add to demo 2020-05-13 08:43:33 -05:00
ozlb 280cbf5cd4
Removed all C++11 extensions
src/implot.cpp:1270:25: warning: range-based for loop is a C++11 extension [-Wc++11-extensions]
        for (ImTick& xt : gp.XTicks)
2020-05-13 06:57:27 +02:00
ozlb 1ea1a2664e
C++11 extension fixes
warning: range-based for loop is a C++11 extension [-Wc++11-extensions]
for (ImTick &xt : gp.XTicks) {
for (ImTick &yt : gp.YTicks[i]) {
2020-05-13 06:45:34 +02:00
ozlb 69021f884d
namespace ImPlot 2020-05-12 11:20:23 +02:00
ozlb 435440c7da
QueryX removed for PR merge 2020-05-11 16:00:05 +02:00
ozlb 825198495e
Merge branch 'master' into master 2020-05-11 14:33:31 +02:00
ozlb 676906afae
PlotDigital updates on ImPlot v0.2 WIP 2020-05-11 13:13:43 +02:00
Evan Pezent 4e9b265c14
Merge pull request #27 from sayan1an/master
Add stdlib.h - fixes rand(), srand() and RAND_MAX on VC
2020-05-11 00:58:20 -05:00
Evan Pezent 329ad9dd80 tidy up multi y axis support 2020-05-11 00:45:46 -05:00
Sayantan Datta 7c0121dae2 Add stdlib.h - fixes rand(), srand() and RAND_MAX on VC 2020-05-10 23:35:34 -04:00
Josh Pieper 5eb4b71384 Support multiple Y axes simultaneously
This allows up to 3 Y axes to be used, one on the left side, and up to
2 on the right.  To use multiple axes, one of the `ImPlotFlags_Y2Axis`
or `ImPlotFlags_Y3Axis` must be passed to `BeginPlot`.  Then, before
each Plot call, SetPlotYAxis may be used to set that plot on an
alternate axis.

An extra line and ticks are rendered off to the right if all 3 axes
are configured (although those ticks are always only 5 long,
regardless of major status).  Each of the axes, when present, has a
(possibly invisible if ticks and labels are disabled) hit target that
can be used to scroll and scale that axis independently.

Some other changes were required to make this happen:
 * Queries are now only in pixel coordinates
 * ImPlotRange has been renamed to ImPlotBounds (and correspondingly
   GetPlotRange is now GetPlotBounds)
 * All APIs which allow querying values in plot coordinates now have
   an optional "y_axis" argument, which can be -1 to use the currently
   selected axis, or non-negative to pick a specific axes.
 * BeginPlot used to lock all flags on the first call.  Now it only
   locks the axis flags, and not the primary plot flags.
 * The mouseover text now renders the 2nd and 3rd axis in parenthesis.
2020-05-10 21:27:26 -04:00
Evan Pezent 9c19c20aae
Update implot_demo.cpp 2020-05-09 09:09:30 -05:00
Evan Pezent e7d0b182be
Update implot_demo.cpp 2020-05-09 09:08:38 -05:00
ozlb 494b9eb61d
PlotDigital multi level
Plot digital channels as float (only positive values)
2020-05-09 06:54:16 +02:00
Evan Pezent 762660ddcc digital signals cleanup 2020-05-05 14:24:19 -05:00
ozlb f98cda45bd
Update implot_demo.cpp 2020-05-05 06:25:47 +02:00
ozlb 9b157783c7
Merge branch 'master' into master 2020-05-04 11:14:44 +02:00
ozlb 33ffd8e5c6
Cleanup and pixel density optimization 2020-05-04 09:26:52 +02:00
ozlb 2338c9b4c9
Curors
Cursors query handling
2020-05-04 09:09:33 +02:00
Evan Pezent ad01a01331 optimizations, add pie plot 2020-05-03 00:24:10 -05:00