1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-17 14:11:13 +01:00

Moved ValueOfPixel into global namespace, it wants to live next to its inverse

This commit is contained in:
Paul Licameli
2015-06-02 19:11:09 -04:00
parent 1df1effb71
commit 437e28db1a
4 changed files with 35 additions and 24 deletions

View File

@@ -249,5 +249,8 @@ class AUDACITY_DLL_API TrackArtist {
extern int GetWaveYPos(float value, float min, float max,
int height, bool dB, bool outer, float dBr,
bool clip);
extern float FromDB(float value, double dBRange);
extern float ValueOfPixel(int y, int height, bool offset,
bool dB, double dBRange, float zoomMin, float zoomMax);
#endif // define __AUDACITY_TRACKARTIST__