From 81abea0c7468736e0e488da392a0ce120381de7e Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Fri, 22 Feb 2008 07:19:26 +0000 Subject: [PATCH] *** empty log message *** --- Geo/MEdge.h | 2 +- Geo/MElement.cpp | 8 ++++---- Geo/MFace.h | 2 +- doc/VERSIONS | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Geo/MEdge.h b/Geo/MEdge.h index 585f19a2d4..49eb1c9968 100644 --- a/Geo/MEdge.h +++ b/Geo/MEdge.h @@ -28,7 +28,7 @@ class MEdge { private: MVertex *_v[2]; - char _si[2]; // sorted indices + char _si[2]; // sorted indices public: MEdge(MVertex *v0, MVertex *v1) diff --git a/Geo/MElement.cpp b/Geo/MElement.cpp index 499e038967..ce7f8fecb9 100644 --- a/Geo/MElement.cpp +++ b/Geo/MElement.cpp @@ -1,4 +1,4 @@ -// $Id: MElement.cpp,v 1.57 2008-02-21 15:08:22 geuzaine Exp $ +// $Id: MElement.cpp,v 1.58 2008-02-22 07:19:07 geuzaine Exp $ // // Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle // @@ -755,7 +755,7 @@ void MTriangle::pnt(double uu, double vv, SPoint3 &p) MTriangle::pnt(1, 0, uu, vv, p); } -int MTriangle6::getNumEdgesRep(){ return 3 * 9; } +int MTriangle6::getNumEdgesRep(){ return 3 * 6; } void MTriangle6::getEdgeRep(int num, double *x, double *y, double *z, SVector3 *n) { @@ -791,9 +791,9 @@ void MTriangle6::getEdgeRep(int num, double *x, double *y, double *z, SVector3 * } } -int MTriangleN::getNumEdgesRep(){ return 3 * 9; } +int MTriangleN::getNumEdgesRep(){ return 3 * 12; } -void MTriangleN::getEdgeRep (int num, double *x, double *y, double *z, SVector3 *n) +void MTriangleN::getEdgeRep(int num, double *x, double *y, double *z, SVector3 *n) { n[0] = n[1] = getFace(0).normal(); int N = getNumEdgesRep() / 3; diff --git a/Geo/MFace.h b/Geo/MFace.h index 15956639d3..7131893451 100644 --- a/Geo/MFace.h +++ b/Geo/MFace.h @@ -29,7 +29,7 @@ class MFace { private: MVertex *_v[4]; - char _si[4]; // sorted indices + char _si[4]; // sorted indices public: MFace(MVertex *v0, MVertex *v1, MVertex *v2, MVertex *v3=0); diff --git a/doc/VERSIONS b/doc/VERSIONS index 8f3c37869a..43b00132e1 100644 --- a/doc/VERSIONS +++ b/doc/VERSIONS @@ -1,6 +1,6 @@ -$Id: VERSIONS,v 1.396 2008-02-21 20:09:33 geuzaine Exp $ +$Id: VERSIONS,v 1.397 2008-02-22 07:19:26 geuzaine Exp $ -2.1.0 (Feb 21, 2008): new post-processing database; complete rewrite +2.1.0 (Feb 23, 2008): new post-processing database; complete rewrite of post-processing drawing code; improved surface mesh algorithms; improved STEP/IGES/BREP support; new 3D mesh optimization algorithm; new default native file choosers; fixed 'could not find extruded -- GitLab