/************************************************************************ ** ** @file vgeometrydef.h ** @author Roman Telezhynskyi ** @date 7 5, 2015 ** ** @brief ** @copyright ** This source code is part of the Valentina project, a pattern making ** program, whose allow create and modeling patterns of clothing. ** Copyright (C) 2015 Valentina project ** All Rights Reserved. ** ** Valentina is free software: you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Foundation, either version 3 of the License, or ** (at your option) any later version. ** ** Valentina is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with Valentina. If not, see . ** *************************************************************************/ #ifndef VGEOMETRYDEF_H #define VGEOMETRYDEF_H #include #include #include #include "../ifc/ifcdef.h" enum class GOType : qint8 { Point, Arc, EllipticalArc, Spline, SplinePath, CubicBezier, CubicBezierPath, PlaceLabel, Unknown }; enum class SplinePointPosition : qint8 { FirstPoint, LastPoint }; // Keep synchronized with XSD schema enum class PlaceLabelType : quint8 { Segment= 0, Rectangle = 1, Cross = 2, Tshaped = 3, Doubletree = 4, Corner = 5, Triangle = 6, Hshaped = 7, Button = 8, Circle = 9 }; typedef QVector PlaceLabelImg; struct VLayoutPlaceLabel { QPointF center{}; PlaceLabelType type{PlaceLabelType::Button}; PlaceLabelImg shape{}; QTransform rotationMatrix{}; QRectF box{}; friend QDataStream& operator<<(QDataStream& dataStream, const VLayoutPlaceLabel& data); friend QDataStream& operator>>(QDataStream& dataStream, VLayoutPlaceLabel& data); private: static const quint32 streamHeader; static const quint16 classVersion; }; Q_DECLARE_METATYPE(VLayoutPlaceLabel) struct VLayoutPassmark { QVector lines{}; PassmarkLineType type{PassmarkLineType::OneLine}; QLineF baseLine{}; bool isBuiltIn{false}; friend QDataStream& operator<<(QDataStream& dataStream, const VLayoutPassmark& data); friend QDataStream& operator>>(QDataStream& dataStream, VLayoutPassmark& data); private: static const quint32 streamHeader; static const quint16 classVersion; }; Q_DECLARE_METATYPE(VLayoutPassmark) constexpr qreal accuracyPointOnLine = (0.117/*mm*/ / 25.4) * PrintDPI; Q_REQUIRED_RESULT static inline bool VFuzzyComparePoints(const QPointF &p1, const QPointF &p2); static inline bool VFuzzyComparePoints(const QPointF &p1, const QPointF &p2) { return QLineF(p1, p2).length() <= accuracyPointOnLine; } Q_REQUIRED_RESULT static inline bool VFuzzyOnAxis(qreal v1, qreal v2); static inline bool VFuzzyOnAxis(qreal v1, qreal v2) { return qAbs(v1 - v2) <= accuracyPointOnLine; } #endif // VGEOMETRYDEF_H