forked from qt-creator/qt-creator
13 lines
323 B
C
13 lines
323 B
C
|
|
// Copyright (C) 2022 The Qt Company Ltd.
|
||
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "utils_global.h"
|
||
|
|
|
||
|
|
namespace Utils::MathUtils {
|
||
|
|
|
||
|
|
QTCREATOR_UTILS_EXPORT int interpolate(int x, int x1, int x2, int y1, int y2);
|
||
|
|
|
||
|
|
} // namespace Utils::Math
|