File indexing completed on 2024-06-09 04:20:53

0001 /* This file is part of the KDE project
0002  * SPDX-FileCopyrightText: 2008 Jan Hambrecht <jaham@gmx.net>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 #ifndef TESTPATHSEGMENT_H
0008 #define TESTPATHSEGMENT_H
0009 
0010 #include <QObject>
0011 
0012 class TestPathSegment : public QObject
0013 {
0014     Q_OBJECT
0015 private Q_SLOTS:
0016     void segmentAssign();
0017     void segmentCopy();
0018     void segmentDegree();
0019     void segmentConvexHull();
0020     void segmentPointAt();
0021     void segmentSplitAt();
0022     void segmentIntersections();
0023     void segmentLength();
0024     void segmentFlatness();
0025     void nearestPoint();
0026     void paramAtLength();
0027 };
0028 
0029 #endif // TESTPATHSEGMENT_H