qDebug() << "radius" << m_GaugeWidthHeight.value() / 2;
auto radius = m_GaugeWidthHeight.value() / 2;
auto xPoint = m_GaugeWidthHeight.value() + radius * qCos((M_PI * angle) / m_GaugeWidthHeight.value());
auto yPoint = m_GaugeWidthHeight.value() + radius * qSin((M_PI * angle) / m_GaugeWidthHeight.value());
tmpList.append({xPoint, yPoint});
qDebug() << "points" << m_GaugeWidthHeight.value() << angle << radius << xPoint << yPoint;
for (const auto &angle : initTickMark(data))
{
qDebug() << "size" << m_GaugeWidthHeight.value() / 2;
auto radius = m_GaugeWidthHeight.value() / 2;
auto xPoint = m_Width + radius * qCos(angle);
auto yPoint = m_Height + radius * qSin(angle);
tmpList.append({xPoint, yPoint});
qDebug() << "points" << m_GaugeWidthHeight.value() << angle << radius << xPoint << yPoint;
}