~ubuntu-branches/ubuntu/karmic/gmsh/karmic

« back to all changes in this revision

Viewing changes to Geo/discreteFace.h

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme, Daniel Leidert
  • Date: 2008-05-18 12:46:05 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20080518124605-716xqbqeo07o497k
Tags: 2.2.0-2
[Christophe Prud'homme]
* Bug fix: "gmsh ships no .desktop", thanks to Vassilis Pandis (Closes:
  #375770). Applied the Ubuntu patch.

[Daniel Leidert]
* debian/control (Vcs-Svn): Fixed.
  (Build-Depends): Use texlive instead of tetex-bin.
* debian/gmsh.doc-base (Section): Fixed accordingly to doc-base (>= 0.8.10).
* debian/rules: Removed some variable declarations, that lead to double
  configuration and seem to be useless.
  (build/gmsh): Try to avoid multiple runs by using a stamp.
  (orig-tarball): Renamed to get-orig-source and changed to use uscan.
* debian/watch: Added.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _DISCRETE_FACE_H_
 
2
#define _DISCRETE_FACE_H_
 
3
 
 
4
// Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
 
5
//
 
6
// This program is free software; you can redistribute it and/or modify
 
7
// it under the terms of the GNU General Public License as published by
 
8
// the Free Software Foundation; either version 2 of the License, or
 
9
// (at your option) any later version.
 
10
//
 
11
// This program is distributed in the hope that it will be useful,
 
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
// GNU General Public License for more details.
 
15
//
 
16
// You should have received a copy of the GNU General Public License
 
17
// along with this program; if not, write to the Free Software
 
18
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 
19
// USA.
 
20
// 
 
21
// Please report all bugs and problems to <gmsh@geuz.org>.
 
22
 
 
23
#include "GModel.h"
 
24
#include "GFace.h"
 
25
 
 
26
#if !defined(HAVE_GMSH_EMBEDDED)
 
27
#include "Geo.h"
 
28
#endif
 
29
 
 
30
class discreteFace : public GFace {
 
31
 public:
 
32
  discreteFace(GModel *model, int num) : GFace(model, num)
 
33
  {
 
34
#if !defined(HAVE_GMSH_EMBEDDED)
 
35
    Surface *s = Create_Surface(num, MSH_SURF_DISCRETE);
 
36
    Tree_Add(model->getGEOInternals()->Surfaces, &s);
 
37
#endif
 
38
    meshStatistics.status = GFace::DONE;    
 
39
  }
 
40
  virtual ~discreteFace() {}
 
41
  virtual GPoint point(double par1, double par2) const { throw; }
 
42
  virtual SPoint2 parFromPoint(const SPoint3 &p) const { throw; }
 
43
  virtual SVector3 normal(const SPoint2 &param) const { throw; }
 
44
  virtual GEntity::GeomType geomType() const { return DiscreteSurface; }
 
45
  virtual Pair<SVector3,SVector3> firstDer(const SPoint2 &param) const { throw; }
 
46
};
 
47
 
 
48
#endif
 
49