| 306 | |
| 307 | inline const ImU32* GetTable(ImPlot3DColormap cmap) const { return &Tables[TableOffsets[cmap]]; } |
| 308 | inline int GetTableSize(ImPlot3DColormap cmap) const { return TableSizes[cmap]; } |
| 309 | inline ImU32 GetTableColor(ImPlot3DColormap cmap, int idx) const { return Tables[TableOffsets[cmap] + idx]; } |
| 310 | |
| 311 | inline ImU32 LerpTable(ImPlot3DColormap cmap, float t) const { |