~ubuntu-branches/debian/squeeze/gmsh/squeeze

« back to all changes in this revision

Viewing changes to contrib/Netgen/libsrc/meshing/boundarylayer.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme
  • Date: 2009-01-07 16:02:08 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090107160208-vklhtj69br5yw5bh
Tags: 2.2.6.dfsg-2
* debian/control: fixed lintian warning "debhelper-but-no-misc-depends"
* debian/watch: fixed lintian warning
  "debian-watch-file-should-mangle-version"

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
          int p4 = mapto.Get (p2);
74
74
          if (!p4) p4 = p2;
75
75
          
76
 
          Element2d el(4);
 
76
          Element2d el(QUAD);
77
77
          el.PNum(1) = p1;
78
78
          el.PNum(2) = p2;
79
79
          el.PNum(3) = p3;
89
89
}
90
90
 
91
91
}
 
92