File indexing completed on 2024-12-15 04:02:37
0001 /* 0002 * SPDX-FileCopyrightText: 2001-2015 Klaralvdalens Datakonsult AB. All rights reserved. 0003 * 0004 * This file is part of the KD Chart library. 0005 * 0006 * SPDX-License-Identifier: GPL-2.0-or-later 0007 */ 0008 0009 #ifndef TERNARYCONSTANTS_H 0010 #define TERNARYCONSTANTS_H 0011 0012 #include <QPointF> 0013 0014 extern const qreal Sqrt3; 0015 extern const qreal TriangleWidth; 0016 extern const qreal TriangleHeight; 0017 extern const QPointF TriangleTop; 0018 extern const QPointF TriangleBottomLeft; 0019 extern const QPointF TriangleBottomRight; 0020 extern const QPointF AxisVector_C_A; 0021 extern const QPointF Norm_C_A; 0022 extern const QPointF AxisVector_B_A; 0023 extern const QPointF Norm_B_A; 0024 extern const QPointF AxisVector_B_C; 0025 extern const QPointF Norm_B_C; 0026 extern const qreal RelMarkerLength; 0027 extern const QPointF FullMarkerDistanceBC; 0028 extern const QPointF FullMarkerDistanceAC; 0029 extern const QPointF FullMarkerDistanceBA; 0030 0031 #endif