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

Update implot.h

This commit is contained in:
Evan Pezent 2020-06-12 20:00:22 -05:00 committed by GitHub
parent a16b509d84
commit b95b23fec8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -303,7 +303,7 @@ void SetColormap(ImPlotColormap colormap, int samples = 0);
void SetColormap(const ImVec4* colors, int num_colors);
// Returns the size of the current colormap
int GetColormapSize();
// Returns a color from the Color map given an index > 0 (modulo will be performed)
// Returns a color from the Color map given an index >= 0 (modulo will be performed)
ImVec4 GetColormapColor(int index);
// Linearly interpolates a color from the current colormap given t between 0 and 1.
ImVec4 LerpColormap(float t);