Skip to content
Snippets Groups Projects
Select Git revision
  • 2b2e585fd9a5075836a5be2cc36c17cfd66a5599
  • master default
  • cgnsUnstructured
  • partitioning
  • poppler
  • HighOrderBLCurving
  • gmsh_3_0_4
  • gmsh_3_0_3
  • gmsh_3_0_2
  • gmsh_3_0_1
  • gmsh_3_0_0
  • gmsh_2_16_0
  • gmsh_2_15_0
  • gmsh_2_14_1
  • gmsh_2_14_0
  • gmsh_2_13_2
  • gmsh_2_13_1
  • gmsh_2_12_0
  • gmsh_2_11_0
  • gmsh_2_10_1
  • gmsh_2_10_0
  • gmsh_2_9_3
  • gmsh_2_9_2
  • gmsh_2_9_1
  • gmsh_2_9_0
  • gmsh_2_8_6
26 results

CMakeLists.txt

Blame
  • Forked from gmsh / gmsh
    Source project has a limited visibility.
    discreteEdge.h 919 B
    // Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
    //
    // See the LICENSE.txt file for license information. Please report all
    // bugs and problems to <gmsh@geuz.org>.
    
    #ifndef _DISCRETE_EDGE_H_
    #define _DISCRETE_EDGE_H_
    
    #include "GModel.h"
    #include "GEdge.h"
    #include "discreteVertex.h"
    
    class discreteEdge : public GEdge {
     protected:
      std::vector<double> _pars;
      std::vector<int> _orientation;
      std::map<MVertex*,MLine*> boundv;
     public:
      discreteEdge(GModel *model, int num, GVertex *_v0, GVertex *_v1);
      virtual ~discreteEdge() {}
      void getLocalParameter ( const double &t,
    			   int &iEdge,
    			   double & tLoc) const;
      virtual GeomType geomType() const { return DiscreteCurve; }
      virtual GPoint point(double p) const;
      virtual SVector3 firstDer(double par) const;
      virtual Range<double> parBounds(int) const;
      void parametrize() ;
      void orderMLines() ;
      void setBoundVertices();
    };
    
    #endif