1
0
Fork 0
mirror of https://github.com/gwm17/implot.git synced 2024-11-13 14:38:51 -05:00

rev up to v0.10

This commit is contained in:
epezent 2021-03-20 20:45:31 -06:00
parent eea12d6b4c
commit ccd29a646f
5 changed files with 6 additions and 6 deletions

View File

@ -20,7 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// ImPlot v0.9 WIP
// ImPlot v0.10 WIP
/*

View File

@ -20,7 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// ImPlot v0.9 WIP
// ImPlot v0.10 WIP
#pragma once
#include "imgui.h"

View File

@ -20,7 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// ImPlot v0.9 WIP
// ImPlot v0.10 WIP
#include "implot.h"
#include <math.h>

View File

@ -20,7 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// ImPlot v0.9 WIP
// ImPlot v0.10 WIP
// You may use this file to debug, understand or extend ImPlot features but we
// don't provide any guarantee of forward compatibility!

View File

@ -20,7 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// ImPlot v0.9 WIP
// ImPlot v0.10 WIP
#include "implot.h"
#include "implot_internal.h"
@ -32,7 +32,7 @@
#define SQRT_1_2 0.70710678118f
#define SQRT_3_2 0.86602540378f
#define IMPLOT_NORMALIZE2F_OVER_ZERO(VX, VY) \
#define IMPLOT_NORMALIZE2F_OVER_ZERO(VX, VY) \
{ \
float d2 = VX * VX + VY * VY; \
if (d2 > 0.0f) { \