QGIS API Documentation  3.4.15-Madeira (e83d02e274)
NormVecDecorator.h
Go to the documentation of this file.
1 /***************************************************************************
2  NormVecDecorator.h - description
3  -------------------
4  copyright : (C) 2004 by Marco Hugentobler
5  email : [email protected]
6  ***************************************************************************/
7 
8 /***************************************************************************
9  * *
10  * This program is free software; you can redistribute it and/or modify *
11  * it under the terms of the GNU General Public License as published by *
12  * the Free Software Foundation; either version 2 of the License, or *
13  * (at your option) any later version. *
14  * *
15  ***************************************************************************/
16 
17 #ifndef NORMVECDECORATOR_H
18 #define NORMVECDECORATOR_H
19 
20 #include "TriDecorator.h"
21 #include "qgis_sip.h"
22 #include "qgis.h"
23 #include "TriangleInterpolator.h"
24 #include "MathUtils.h"
25 #include "qgslogger.h"
26 #include "qgis_analysis.h"
27 
28 #define SIP_NO_FILE
29 
30 class QgsFeedback;
31 
37 class ANALYSIS_EXPORT NormVecDecorator: public TriDecorator
38 {
39  public:
41  enum PointState {Normal, BreakLine, EndPoint};
44  ~NormVecDecorator() override;
45  int addPoint( const QgsPoint &p ) override;
47  bool calcNormal( double x, double y, Vector3D *result SIP_OUT ) override;
49  bool calcNormalForPoint( double x, double y, int point, Vector3D *result SIP_OUT );
50  bool calcPoint( double x, double y, QgsPoint &result SIP_OUT ) override;
52  void eliminateHorizontalTriangles() override;
54  bool estimateFirstDerivative( int pointno );
56  bool estimateFirstDerivatives( QgsFeedback *feedback = nullptr );
58  Vector3D *getNormal( int n ) const;
60  bool getTriangle( double x, double y, QgsPoint &p1 SIP_OUT, Vector3D *v1 SIP_OUT, QgsPoint &p2 SIP_OUT, Vector3D *v2 SIP_OUT, QgsPoint &p3 SIP_OUT, Vector3D *v3 SIP_OUT ) SIP_PYNAME( getTriangleVertices );
62  bool getTriangle( double x, double y, QgsPoint &p1 SIP_OUT, int &ptn1 SIP_OUT, Vector3D *v1 SIP_OUT, PointState *state1 SIP_OUT, QgsPoint &p2 SIP_OUT, int &ptn2 SIP_OUT, Vector3D *v2 SIP_OUT, PointState *state2 SIP_OUT, QgsPoint &p3 SIP_OUT, int &ptn3 SIP_OUT, Vector3D *v3 SIP_OUT, PointState *state3 SIP_OUT );
64  PointState getState( int pointno ) const;
66  void setTriangleInterpolator( TriangleInterpolator *inter ) override;
68  bool swapEdge( double x, double y ) override;
69 
70  bool saveTriangulation( QgsFeatureSink *sink, QgsFeedback *feedback = nullptr ) const override;
71 
72  protected:
75  static const unsigned int DEFAULT_STORAGE_FOR_NORMALS = 100000;
77  TriangleInterpolator *mInterpolator = nullptr;
79  QVector<Vector3D *> *mNormVec;
81  QVector<PointState> *mPointState;
83  void setState( int pointno, PointState s );
84 };
85 
86 #ifndef SIP_RUN
87 
89  : mNormVec( new QVector<Vector3D*>( DEFAULT_STORAGE_FOR_NORMALS ) )
90  , mPointState( new QVector<PointState>( DEFAULT_STORAGE_FOR_NORMALS ) )
91 {
92  alreadyestimated = false;
93 }
94 
96  : TriDecorator( tin )
97  , mNormVec( new QVector<Vector3D*>( DEFAULT_STORAGE_FOR_NORMALS ) )
99 {
100  alreadyestimated = false;
101 }
102 
104 {
105  mInterpolator = inter;
106 }
107 
108 inline Vector3D *NormVecDecorator::getNormal( int n ) const
109 {
110  if ( mNormVec )
111  {
112  return mNormVec->at( n );
113  }
114  else
115  {
116  QgsDebugMsg( QStringLiteral( "warning, null pointer" ) );
117  return nullptr;
118  }
119 }
120 
121 #endif
122 
123 #endif
TriangleInterpolator * mInterpolator
Association with an interpolator object.
Decorator class which adds the functionality of estimating normals at the data points.
void setTriangleInterpolator(TriangleInterpolator *interpolator) override
Sets an interpolator object.
Vector3D * getNormal(int n) const
Returns a pointer to the normal vector for the point with the number n.
#define QgsDebugMsg(str)
Definition: qgslogger.h:38
An interface for objects which accept features via addFeature(s) methods.
bool swapEdge(double x, double y) override
Reads the content of a taff-file.
void eliminateHorizontalTriangles() override
Eliminates the horizontal triangles by swapping.
Base class for feedback objects to be used for cancellation of something running in a worker thread...
Definition: qgsfeedback.h:44
Class Vector3D represents a 3D-Vector, capable to store x-,y- and z-coordinates in double values...
Definition: Vector3D.h:33
virtual bool saveTriangulation(QgsFeatureSink *sink, QgsFeedback *feedback=nullptr) const =0
Saves the triangulation features to a feature sink.
This is an interface for interpolator classes for triangulations.
bool getTriangle(double x, double y, QgsPoint &p1, int &n1, QgsPoint &p2, int &n2, QgsPoint &p3, int &n3) override
Finds out in which triangle the point with coordinates x and y is and assigns the numbers of the vert...
QVector< Vector3D * > * mNormVec
Vector that stores the normals for the points. If &#39;estimateFirstDerivatives()&#39; was called and there i...
bool calcNormal(double x, double y, Vector3D *result) override
Calculates the normal at a point on the surface and assigns it to &#39;result&#39;.
static const unsigned int DEFAULT_STORAGE_FOR_NORMALS
Interface for Triangulation classes.
Definition: Triangulation.h:38
void setTriangleInterpolator(TriangleInterpolator *inter) override
Sets an interpolator.
Point geometry type, with support for z-dimension and m-values.
Definition: qgspoint.h:37
QVector< PointState > * mPointState
Vector who stores, it a point is not on a breakline, if it is a normal point of the breakline or if i...
PointState
Enumeration for the state of a point. Normal means, that the point is not on a BreakLine, BreakLine means that the point is on a breakline (but not an end point of it) and EndPoint means, that it is an endpoint of a breakline.
Decorator class for Triangulations (s.
Definition: TriDecorator.h:31
bool alreadyestimated
Is true, if the normals already have been estimated.
#define SIP_OUT
Definition: qgis_sip.h:51
int addPoint(const QgsPoint &p) override
Adds a point to the triangulation.
bool calcPoint(double x, double y, QgsPoint &result) override
Calculates x-, y and z-value of the point on the surface and assigns it to &#39;result&#39;.
#define SIP_PYNAME(name)
Definition: qgis_sip.h:74