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

*** empty log message ***

parent f16a76b4
No related branches found
No related tags found
No related merge requests found
......@@ -76,7 +76,7 @@ OCCFace::OCCFace(GModel *m, TopoDS_Face _s, int num, TopTools_IndexedMapOfShape
ShapeAnalysis::GetFaceUVBounds(_s, umin, umax, vmin, vmax);
Msg::Debug("OCC Face %d with %d edges bounds (%g,%g)(%g,%g)",
num, l_edges.size(), umin, umax, vmin, vmax);
num, l_edges.size(), umin, umax, vmin, vmax);
// we do that for the projections to converge on the borders of the
// surface
const double du = umax - umin;
......
{
printf("%s \n", $0);
}
#!/bin/bash -
for A in $*
do
echo modifying $A
awk -f unix2dos.awk $A > $A.XXX
/bin/rm -f $A
mv $A.XXX $A
done
......@@ -10,14 +10,15 @@
# Define this is you use the native Windows shell
#
MAKE=C:/src/gmsh/utils/misc/gmake.exe
MAKE=E:/src/gmsh/utils/misc/gmake.exe
UNAME=WIN32MSVC
RM=erase
MV=move
# Define this if you use the bash shell in cygwin
#
# Launch compilation with:
# If you don't have all MSVC variables defined you can use this to compile:
#
# cmd.exe /c "vcvars32.bat && make"
#
MAKE=make
......@@ -37,17 +38,17 @@ ENABLE_OCC=1
ENABLE_MED=1
# If you selected ENABLE_GSL, specify where the GSL is installed
GSL_PREFIX=C:/src/gsl-1.8
GSL_PREFIX=E:/src/gsl-1.8
# If you selected ENABLE_GUI, specify where FLTK is installed
FLTK_PREFIX=C:/src/fltk-1.1.9
FLTK_PREFIX=E:/src/fltk-1.1.9
# If you selected ENABLE_OCC, specify where OpenCASCADE is insalled
OCC_PREFIX=C:/src/OpenCASCADE6.3.0/ros
OCC_PREFIX=E:/src/OpenCASCADE6.3.0/ros
# If you selected ENABLE_MED, specify where MED and HDF5 are installed
MED_PREFIX=C:/src/med-2.3.4
HDF5_PREFIX=C:/src/hdf5-1.6.6
MED_PREFIX=E:/src/med-2.3.4
HDF5_PREFIX=E:/src/hdf5-1.6.6
##################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment