Display color scale

This commit is contained in:
Jakub Melka
2021-04-03 18:28:34 +02:00
parent 4921b61cf9
commit 9aba0608c3
4 changed files with 132 additions and 2 deletions

View File

@ -518,6 +518,13 @@ QString PDFSysUtils::getUserName()
return userName;
}
PDFColorScale::PDFColorScale() :
m_min(0.0),
m_max(0.0)
{
}
PDFColorScale::PDFColorScale(PDFReal min, PDFReal max) :
m_min(min),
m_max(max)