Skip to content
Snippets Groups Projects
Commit f2cde3ab authored by Jean-François Remacle's avatar Jean-François Remacle
Browse files

*** empty log message ***

parent c6376f6c
No related branches found
No related tags found
No related merge requests found
# $Id: Makefile,v 1.82 2005-04-15 14:32:40 remacle Exp $
# $Id: Makefile,v 1.83 2005-04-15 14:33:50 remacle Exp $
#
# Copyright (C) 1997-2005 C. Geuzaine, J.-F. Remacle
#
......@@ -83,7 +83,7 @@ ${LIB}: ${OBJ}
${RANLIB} ${LIB}
.cpp.o:
${CXX} ${CFLAGS} -c -pg $<
${CXX} ${CFLAGS} -c $<
# Don't optimize 3D_Mesh: it sometimes mysteriously crashes on Linux
3D_Mesh.o:
......
......@@ -489,6 +489,7 @@ void ActionLiss(void *data, void *dummy);
void ActionLissSurf(void *data, void *dummy);
int Recombine(Tree_T *TreeAllVert, Tree_T *TreeAllSimp, Tree_T *TreeAllQuad,
double a);
int Recombine_All(Mesh *M);
void ApplyLcFactor(Mesh *M);
void ExportLcField(Mesh *M, char *filename, int volume=1, int surface=1);
......
// $Id: Vertex.cpp,v 1.26 2005-01-01 19:35:31 geuzaine Exp $
// $Id: Vertex.cpp,v 1.27 2005-04-15 14:32:40 remacle Exp $
//
// Copyright (C) 1997-2005 C. Geuzaine, J.-F. Remacle
//
......@@ -159,7 +159,7 @@ int comparePosition(const void *a, const void *b)
int i, j;
Vertex **q, **w;
// TOLERANCE ! WARNING WARNING
double eps = 1.e-10 * CTX.lc;
double eps = 1.e-6 * CTX.lc;
q = (Vertex **) a;
w = (Vertex **) b;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment