Skip to content
Snippets Groups Projects
Commit e3c87d92 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

0.998

parent 6d8d56bc
No related branches found
No related tags found
No related merge requests found
/* $Id: Views.cpp,v 1.17 2000-12-17 21:17:29 remacle Exp $ */ /* $Id: Views.cpp,v 1.18 2000-12-18 09:03:51 geuzaine Exp $ */
#include "Gmsh.h" #include "Gmsh.h"
#include "Views.h" #include "Views.h"
...@@ -268,7 +268,7 @@ void EndView(int AddInUI, int Number, char *FileName, char *Name, ...@@ -268,7 +268,7 @@ void EndView(int AddInUI, int Number, char *FileName, char *Name,
bool FreeView(int num){ bool FreeView(int num){
Post_View *v; Post_View *v;
printf("trying to free view %d\n",num); Msg(DEBUG, "Trying to free view %d",num);
if(num < 0 || num >= List_Nbr(Post_ViewList)){ if(num < 0 || num >= List_Nbr(Post_ViewList)){
return false ; return false ;
...@@ -276,7 +276,8 @@ bool FreeView(int num){ ...@@ -276,7 +276,8 @@ bool FreeView(int num){
v = (Post_View*)List_Pointer(Post_ViewList, num); v = (Post_View*)List_Pointer(Post_ViewList, num);
FreeView(v); FreeView(v);
List_Suppress(Post_ViewList, v, fcmpPostViewNum); List_Suppress(Post_ViewList, v, fcmpPostViewNum);
printf("view deleted, %d views left %d\n",num,List_Nbr(Post_ViewList));
Msg(INFOS, "View %d deleted (%d views left)",num, List_Nbr(Post_ViewList));
return true; return true;
} }
......
# $Id: Makefile,v 1.24 2000-12-17 21:17:29 remacle Exp $ # $Id: Makefile,v 1.25 2000-12-18 09:03:47 geuzaine Exp $
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
# Makefile for Gmsh # Makefile for Gmsh
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
GMSH_RELEASE = 0.997 GMSH_RELEASE = 0.998
MAKE = make MAKE = make
CC = g++ CC = g++
...@@ -21,8 +21,8 @@ ...@@ -21,8 +21,8 @@
MESA_STATIC_LIB = $(HOME)/SOURCES/Mesa-3.0-static/lib/libGLw.a\ MESA_STATIC_LIB = $(HOME)/SOURCES/Mesa-3.0-static/lib/libGLw.a\
$(HOME)/SOURCES/Mesa-3.0-static/lib/libGLU.a\ $(HOME)/SOURCES/Mesa-3.0-static/lib/libGLU.a\
$(HOME)/SOURCES/Mesa-3.0-static/lib/libGL.a $(HOME)/SOURCES/Mesa-3.0-static/lib/libGL.a
MOTIF_LIB = /usr/local/lib/libXm.so.2 // MOTIF_LIB = /usr/local/lib/libXm.so.2
// MOTIF_LIB = -L/usr/local/lib -L/usr/X11R6/LessTif/Motif1.2/lib -lXm MOTIF_LIB = -L/usr/local/lib -L/usr/X11R6/LessTif/Motif1.2/lib -lXm
X_LIB = -L/usr/X11R6/lib -lXt -lX11 -lXext X_LIB = -L/usr/X11R6/lib -lXt -lX11 -lXext
THREAD_LIB = -L/usr/lib -lpthread THREAD_LIB = -L/usr/lib -lpthread
......
/* $Id: Numeric.cpp,v 1.10 2000-12-18 08:31:58 geuzaine Exp $ */ /* $Id: Numeric.cpp,v 1.11 2000-12-18 09:03:53 geuzaine Exp $ */
#include "Gmsh.h" #include "Gmsh.h"
#include "Const.h" #include "Const.h"
...@@ -94,13 +94,6 @@ int sys3x3 (double mat[3][3], double b[3], double res[3], double *det){ ...@@ -94,13 +94,6 @@ int sys3x3 (double mat[3][3], double b[3], double res[3], double *det){
return (0); return (0);
} }
// WARNING, WARNING
if (fabs(*det) < 1.e-12){
Msg(INFOS, "Assuming 3x3 Matrix is Singular (Is this OK?)");
res[0] = res[1] = res[2] = 0.0 ;
return (0);
}
ud = 1. / (*det); ud = 1. / (*det);
res[0] = b[0] * (mat[1][1] * mat[2][2] - mat[1][2] * mat[2][1]) - res[0] = b[0] * (mat[1][1] * mat[2][2] - mat[1][2] * mat[2][1]) -
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
.\" Copyright (c) 2000 J.-F. Remacle, C. Geuzaine .\" Copyright (c) 2000 J.-F. Remacle, C. Geuzaine
.\" .\"
.\" ====================================================================== .\" ======================================================================
.TH Gmsh 0.997 "12 December 2000" .TH Gmsh 0.998 "18 December 2000"
.UC 4 .UC 4
.\" ====================================================================== .\" ======================================================================
.SH NAME .SH NAME
...@@ -209,7 +209,7 @@ Remacle (Remacle@scorec.rpi.edu). ...@@ -209,7 +209,7 @@ Remacle (Remacle@scorec.rpi.edu).
.SH SEE ALSO .SH SEE ALSO
Gmsh homepage at \fIhttp://www.geuz.org/gmsh/\fR Gmsh homepage at \fIhttp://www.geuz.org/gmsh/\fR
.PP .PP
Gmsh example files in \fI/usr/doc/gmsh-0.997/\fR Gmsh example files in \fI/usr/doc/gmsh-0.998/\fR
.PP .PP
GetDP (a scientific computation software for the numerical solution of GetDP (a scientific computation software for the numerical solution of
integro-differential equations, using finite element and integral type integro-differential equations, using finite element and integral type
......
Summary: A 3D mesh generator with pre- and post-processing facilities Summary: A 3D mesh generator with pre- and post-processing facilities
Name: gmsh Name: gmsh
Version: 0.997 Version: 0.998
Source: gmsh-0.997.tar.gz Source: gmsh-0.998.tar.gz
Release: 1 Release: 1
Copyright: distributable Copyright: distributable
Group: Applications/Engineering Group: Applications/Engineering
......
...@@ -261,11 +261,11 @@ files. ...@@ -261,11 +261,11 @@ files.
under Linux) or modify the LD_LIBRARY_PATH (or SHLIB_PATH on HP) under Linux) or modify the LD_LIBRARY_PATH (or SHLIB_PATH on HP)
in order for Gmsh to find these libraries. in order for Gmsh to find these libraries.
<p> <p>
Version 0.997 (14 December 2000): Version 0.998 (18 December 2000):
<ul> <ul>
<li>Red Hat package with man page and examples <li>Red Hat package with man page and examples
<ul> <ul>
<li><A href="/gmsh/latest/gmsh-0.997-1.i386.rpm">Linux (i386, glibc 2.1) RPM</A> <li><A href="/gmsh/latest/gmsh-0.998-1.i386.rpm">Linux (i386, glibc 2.1) RPM</A>
</ul> </ul>
<li>Tarballs <li>Tarballs
<ul> <ul>
...@@ -299,6 +299,9 @@ files. ...@@ -299,6 +299,9 @@ files.
<td><font face="Helvetica, Arial" size=-1> <td><font face="Helvetica, Arial" size=-1>
New in 0.998: Corrected bug introduced in 0.997 in the generation of
the initial 3D mesh;
<p>
New in 0.997: Corrected bug in interactive surface/volume selection; New in 0.997: Corrected bug in interactive surface/volume selection;
Added interactive symmetry; Corrected geometrical extrusion with Added interactive symmetry; Corrected geometrical extrusion with
rotation in degenerated or partially degenerated cases; Corrected bug rotation in degenerated or partially degenerated cases; Corrected bug
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment