~ubuntu-branches/ubuntu/wily/qgis/wily

« back to all changes in this revision

Viewing changes to src/analysis/interpolation/NormVecDecorator.h

  • Committer: Bazaar Package Importer
  • Author(s): Johan Van de Wauw
  • Date: 2010-07-11 20:23:24 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100711202324-5ktghxa7hracohmr
Tags: 1.4.0+12730-3ubuntu1
* Merge from Debian unstable (LP: #540941).
* Fix compilation issues with QT 4.7
* Add build-depends on libqt4-webkit-dev 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
                          NormVecDecorator.h  -  description
 
3
                             -------------------
 
4
    copyright            : (C) 2004 by Marco Hugentobler
 
5
    email                : mhugent@geo.unizh.ch
 
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 <TriangleInterpolator.h>
 
22
#include <MathUtils.h>
 
23
#include "qgslogger.h"
 
24
class QProgressDialog;
 
25
 
 
26
/**Decorator class which adds the functionality of estimating normals at the data points*/
 
27
class ANALYSIS_EXPORT NormVecDecorator: public TriDecorator
 
28
{
 
29
  public:
 
30
    /**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 endpoint of it) and ENDPOINT means, that it is an endpoint of a breakline*/
 
31
    enum pointState {NORMAL, BREAKLINE, ENDPOINT};
 
32
    NormVecDecorator();
 
33
    NormVecDecorator( Triangulation* tin );
 
34
    virtual ~NormVecDecorator();
 
35
    /**Adds a point to the triangulation*/
 
36
    int addPoint( Point3D* p );
 
37
    /**Calculates the normal at a point on the surface and assigns it to 'result'. Returns true in case of success and false in case of failure*/
 
38
    bool calcNormal( double x, double y, Vector3D* result );
 
39
    /**Calculates the normal of a triangle-point for the point with coordinates x and y. This is needed, if a point is on a break line and there is no unique normal stored in 'mNormVec'. Returns false, it something went wrong and true otherwise*/
 
40
    bool calcNormalForPoint( double x, double y, int point, Vector3D* result );
 
41
    /**Calculates x-, y and z-value of the point on the surface and assigns it to 'result'. Returns true in case of success and flase in case of failure*/
 
42
    bool calcPoint( double x, double y, Point3D* result );
 
43
    /**Eliminates the horizontal triangles by swapping or by insertion of new points. If alreadyestimated is true, a re-estimation of the normals will be done*/
 
44
    virtual void eliminateHorizontalTriangles();
 
45
    /**Estimates the first derivative a point. Return true in case of succes and false otherwise*/
 
46
    bool estimateFirstDerivative( int pointno );
 
47
    /**This method adds the functionality of estimating normals at the data points. Return true in the case of success and false otherwise*/
 
48
    bool estimateFirstDerivatives( QProgressDialog* d = 0 );
 
49
    /**Returns a pointer to the normal vector for the point with the number n*/
 
50
    Vector3D* getNormal( int n ) const;
 
51
    /**Finds out, in which triangle a point with coordinates x and y is and assigns the triangle points to p1, p2, p3 and the estimated normals to v1, v2, v3. The vectors are normaly taken from 'mNormVec', exept if p1, p2 or p3 is a point on a breakline. In this case, the normal is calculated on-the-fly. Returns false, if something went wrong and true otherwise*/
 
52
    bool getTriangle( double x, double y, Point3D* p1, Vector3D* v1, Point3D* p2, Vector3D* v2, Point3D* p3, Vector3D* v3 );
 
53
    /**This function behaves similar to the one above. Additionally, the numbers of the points are returned (ptn1, ptn2, ptn3) as well as the pointStates of the triangle points (state1, state2, state3)*/
 
54
    bool getTriangle( double x, double y, Point3D* p1, int* ptn1, Vector3D* v1, pointState* state1, Point3D* p2, int* ptn2, Vector3D* v2, pointState* state2, Point3D* p3, int* ptn3, Vector3D* v3, pointState* state3 );
 
55
    /**Returns the state of the point with the number 'pointno'*/
 
56
    pointState getState( int pointno ) const;
 
57
    /**Sets an interpolator*/
 
58
    void setTriangleInterpolator( TriangleInterpolator* inter );
 
59
    /**Swaps the edge which is closest to the point with x and y coordinates (if this is possible) and forces recalculation of the concerned normals (if alreadyestimated is true)*/
 
60
    virtual bool swapEdge( double x, double y );
 
61
    /**Saves the triangulation as a (line) shapefile
 
62
      @return true in case of success*/
 
63
    virtual bool saveAsShapefile( const QString& fileName ) const;
 
64
 
 
65
  protected:
 
66
    /**Is true, if the normals already have been estimated*/
 
67
    bool alreadyestimated;
 
68
    const static unsigned int mDefaultStorageForNormals = 100000;
 
69
    /**Association with an interpolator object*/
 
70
    TriangleInterpolator* mInterpolator;
 
71
    /**Vector that stores the normals for the points. If 'estimateFirstDerivatives()' was called and there is a null pointer, this means, that the triangle point is on a breakline*/
 
72
    QVector<Vector3D*>* mNormVec;
 
73
    /**Vector who stores, it a point is not on a breakline, if it is a normal point of the breakline or if it is an endpoint of a breakline*/
 
74
    QVector<pointState>* mPointState;
 
75
    /**Sets the state (BREAKLINE, NORMAL, ENDPOINT) of a point*/
 
76
    void setState( int pointno, pointState s );
 
77
};
 
78
 
 
79
inline NormVecDecorator::NormVecDecorator(): TriDecorator(), mInterpolator( 0 ), mNormVec( new QVector<Vector3D*>( mDefaultStorageForNormals ) ), mPointState( new QVector<pointState>( mDefaultStorageForNormals ) )
 
80
{
 
81
  alreadyestimated = false;
 
82
}
 
83
 
 
84
inline NormVecDecorator::NormVecDecorator( Triangulation* tin ): TriDecorator( tin ), mInterpolator( 0 ), mNormVec( new QVector<Vector3D*>( mDefaultStorageForNormals ) ), mPointState( new QVector<pointState>( mDefaultStorageForNormals ) )
 
85
{
 
86
  alreadyestimated = false;
 
87
}
 
88
 
 
89
inline void NormVecDecorator::setTriangleInterpolator( TriangleInterpolator* inter )
 
90
{
 
91
  mInterpolator = inter;
 
92
}
 
93
 
 
94
inline Vector3D* NormVecDecorator::getNormal( int n ) const
 
95
{
 
96
  if ( mNormVec )
 
97
  {
 
98
    return mNormVec->at( n );
 
99
  }
 
100
  else
 
101
  {
 
102
    QgsDebugMsg( "warning, null pointer" );
 
103
    return 0;
 
104
  }
 
105
}
 
106
 
 
107
#endif