Skip to content

Commit 2b7d3d3

Browse files
committedJun 10, 2015
sort includes
1 parent 4bb90e3 commit 2b7d3d3

File tree

1,244 files changed

+3993
-4033
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,244 files changed

+3993
-4033
lines changed
 

‎src/analysis/interpolation/Bezier3D.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
#ifndef BEZIER3D_H
1818
#define BEZIER3D_H
1919

20-
#include "ParametricLine.h"
21-
#include "Vector3D.h"
2220
#include "MathUtils.h"
21+
#include "ParametricLine.h"
2322
#include "qgslogger.h"
23+
#include "Vector3D.h"
2424

2525
/**Class Bezier3D represents a bezier curve, represented by control points. Parameter t is running from 0 to 1. The class is capable to calculate the curve point and the first two derivatives belonging to t.*/
2626
class ANALYSIS_EXPORT Bezier3D: public ParametricLine

‎src/analysis/interpolation/CloughTocherInterpolator.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
#ifndef CLOUGHTOCHERINTERPOLATOR_H
1818
#define CLOUGHTOCHERINTERPOLATOR_H
1919

20+
#include "Bezier3D.h"
21+
#include "MathUtils.h"
2022
#include "NormVecDecorator.h"
21-
#include "TriangleInterpolator.h"
2223
#include "Point3D.h"
24+
#include "TriangleInterpolator.h"
2325
#include "Vector3D.h"
24-
#include "MathUtils.h"
25-
#include "Bezier3D.h"
2626

2727
/**This is an implementation of a Clough-Tocher interpolator based on a triangular tessellation. The derivatives orthogonal to the boundary curves are interpolated linearly along a triangle edge.*/
2828
class ANALYSIS_EXPORT CloughTocherInterpolator : public TriangleInterpolator

0 commit comments

Comments
 (0)