├── .gitattributes ├── .gitignore ├── AUTHORS ├── ChangeLog ├── INSTALL ├── LICENSE ├── NEWS ├── README ├── README.md ├── aclocal.m4 ├── config.guess ├── config.sub ├── configure ├── configure.ac ├── demo_src ├── C │ ├── 2D │ │ ├── Ellipse │ │ │ ├── ellipse.c │ │ │ ├── ellipse.h │ │ │ └── main_ellipse.c │ │ ├── Gaussian │ │ │ ├── gaussian.c │ │ │ ├── gaussian.h │ │ │ └── main_gaussian.c │ │ ├── Rectangle │ │ │ ├── main_rectangle.c │ │ │ ├── rectangle.c │ │ │ └── rectangle.h │ │ └── Sine_line │ │ │ ├── main_sine_line.c │ │ │ ├── sine_line.c │ │ │ └── sine_line.h │ ├── 3D │ │ ├── Cap1 │ │ │ ├── cap1.c │ │ │ ├── cap1.h │ │ │ └── main_cap1.c │ │ ├── Cap2 │ │ │ ├── cap2.c │ │ │ ├── cap2.h │ │ │ └── main_cap2.c │ │ ├── Cap3 │ │ │ ├── cap3.c │ │ │ ├── cap3.h │ │ │ └── main_cap3.c │ │ ├── Sine_surface │ │ │ ├── main_sine_surf.c │ │ │ ├── sine_surf.c │ │ │ └── sine_surf.h │ │ └── Sphere │ │ │ ├── main_sphere.c │ │ │ ├── sphere.c │ │ │ └── sphere.h │ ├── makefile.am │ └── makefile.in ├── CPP │ ├── 2D │ │ ├── Ellipse │ │ │ ├── ellipse.cpp │ │ │ ├── ellipse.h │ │ │ └── main_ellipse.cpp │ │ ├── Gaussian │ │ │ ├── gaussian.cpp │ │ │ ├── gaussian.h │ │ │ └── main_gaussian.cpp │ │ ├── Rectangle │ │ │ ├── main_rectangle.cpp │ │ │ ├── rectangle.cpp │ │ │ └── rectangle.h │ │ └── Sine_line │ │ │ ├── main_sine_line.cpp │ │ │ ├── sine_line.cpp │ │ │ └── sine_line.h │ ├── 3D │ │ ├── Cap1 │ │ │ ├── cap1.cpp │ │ │ ├── cap1.h │ │ │ └── main_cap1.cpp │ │ ├── Cap2 │ │ │ ├── cap2.cpp │ │ │ ├── cap2.h │ │ │ └── main_cap2.cpp │ │ ├── Cap3 │ │ │ ├── cap3.cpp │ │ │ ├── cap3.h │ │ │ └── main_cap3.cpp │ │ ├── Sine_surface │ │ │ ├── main_sine_surf.cpp │ │ │ ├── sine_surf.cpp │ │ │ └── sine_surf.h │ │ └── Sphere │ │ │ ├── main_sphere.cpp │ │ │ ├── sphere.cpp │ │ │ └── sphere.h │ ├── makefile.am │ └── makefile.in ├── Fortran │ ├── 2D │ │ ├── Ellipse │ │ │ ├── ellipse.f90 │ │ │ └── main_ellipse.f90 │ │ ├── Gaussian │ │ │ ├── gaussian.f90 │ │ │ └── main_gaussian.f90 │ │ ├── Rectangle │ │ │ ├── main_rectangle.f90 │ │ │ └── rectangle.f90 │ │ └── Sine_line │ │ │ ├── main_sine_line.f90 │ │ │ └── sine_line.f90 │ ├── 3D │ │ ├── Cap1 │ │ │ ├── cap1.f90 │ │ │ └── main_cap1.f90 │ │ ├── Cap2 │ │ │ ├── cap2.f90 │ │ │ └── main_cap2.f90 │ │ ├── Cap3 │ │ │ ├── cap3.f90 │ │ │ └── main_cap3.f90 │ │ ├── Sine_surface │ │ │ ├── main_sine_surf.f90 │ │ │ └── sine_surf.f90 │ │ └── Sphere │ │ │ ├── main_sphere.f90 │ │ │ └── sphere.f90 │ ├── makefile.am │ └── makefile.in ├── makefile.am └── makefile.in ├── depcomp ├── doc └── Doxyfile ├── include ├── vofi.h ├── vofi_GL.h └── vofi_stddecl.h ├── install-sh ├── ltmain.sh ├── m4 ├── libtool.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 └── lt~obsolete.m4 ├── makefile.am ├── makefile.in ├── missing ├── src ├── checkconsistency.c ├── getcc.c ├── getdirs.c ├── getfh.c ├── getintersections.c ├── getlimits.c ├── getmin.c ├── getzero.c ├── integrate.c ├── interface.c ├── makefile.am └── makefile.in └── test-driver /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/AUTHORS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | To see recent changes, run 2 | 3 | $ git log 4 | 5 | 6 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/README.md -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/config.guess -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/configure.ac -------------------------------------------------------------------------------- /demo_src/C/2D/Ellipse/ellipse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/2D/Ellipse/ellipse.c -------------------------------------------------------------------------------- /demo_src/C/2D/Ellipse/ellipse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/2D/Ellipse/ellipse.h -------------------------------------------------------------------------------- /demo_src/C/2D/Ellipse/main_ellipse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/2D/Ellipse/main_ellipse.c -------------------------------------------------------------------------------- /demo_src/C/2D/Gaussian/gaussian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/2D/Gaussian/gaussian.c -------------------------------------------------------------------------------- /demo_src/C/2D/Gaussian/gaussian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/2D/Gaussian/gaussian.h -------------------------------------------------------------------------------- /demo_src/C/2D/Gaussian/main_gaussian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/2D/Gaussian/main_gaussian.c -------------------------------------------------------------------------------- /demo_src/C/2D/Rectangle/main_rectangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/2D/Rectangle/main_rectangle.c -------------------------------------------------------------------------------- /demo_src/C/2D/Rectangle/rectangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/2D/Rectangle/rectangle.c -------------------------------------------------------------------------------- /demo_src/C/2D/Rectangle/rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/2D/Rectangle/rectangle.h -------------------------------------------------------------------------------- /demo_src/C/2D/Sine_line/main_sine_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/2D/Sine_line/main_sine_line.c -------------------------------------------------------------------------------- /demo_src/C/2D/Sine_line/sine_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/2D/Sine_line/sine_line.c -------------------------------------------------------------------------------- /demo_src/C/2D/Sine_line/sine_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/2D/Sine_line/sine_line.h -------------------------------------------------------------------------------- /demo_src/C/3D/Cap1/cap1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/3D/Cap1/cap1.c -------------------------------------------------------------------------------- /demo_src/C/3D/Cap1/cap1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/3D/Cap1/cap1.h -------------------------------------------------------------------------------- /demo_src/C/3D/Cap1/main_cap1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/3D/Cap1/main_cap1.c -------------------------------------------------------------------------------- /demo_src/C/3D/Cap2/cap2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/3D/Cap2/cap2.c -------------------------------------------------------------------------------- /demo_src/C/3D/Cap2/cap2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/3D/Cap2/cap2.h -------------------------------------------------------------------------------- /demo_src/C/3D/Cap2/main_cap2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/3D/Cap2/main_cap2.c -------------------------------------------------------------------------------- /demo_src/C/3D/Cap3/cap3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/3D/Cap3/cap3.c -------------------------------------------------------------------------------- /demo_src/C/3D/Cap3/cap3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/3D/Cap3/cap3.h -------------------------------------------------------------------------------- /demo_src/C/3D/Cap3/main_cap3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/3D/Cap3/main_cap3.c -------------------------------------------------------------------------------- /demo_src/C/3D/Sine_surface/main_sine_surf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/3D/Sine_surface/main_sine_surf.c -------------------------------------------------------------------------------- /demo_src/C/3D/Sine_surface/sine_surf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/3D/Sine_surface/sine_surf.c -------------------------------------------------------------------------------- /demo_src/C/3D/Sine_surface/sine_surf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/3D/Sine_surface/sine_surf.h -------------------------------------------------------------------------------- /demo_src/C/3D/Sphere/main_sphere.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/3D/Sphere/main_sphere.c -------------------------------------------------------------------------------- /demo_src/C/3D/Sphere/sphere.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/3D/Sphere/sphere.c -------------------------------------------------------------------------------- /demo_src/C/3D/Sphere/sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/3D/Sphere/sphere.h -------------------------------------------------------------------------------- /demo_src/C/makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/makefile.am -------------------------------------------------------------------------------- /demo_src/C/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/C/makefile.in -------------------------------------------------------------------------------- /demo_src/CPP/2D/Ellipse/ellipse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/2D/Ellipse/ellipse.cpp -------------------------------------------------------------------------------- /demo_src/CPP/2D/Ellipse/ellipse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/2D/Ellipse/ellipse.h -------------------------------------------------------------------------------- /demo_src/CPP/2D/Ellipse/main_ellipse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/2D/Ellipse/main_ellipse.cpp -------------------------------------------------------------------------------- /demo_src/CPP/2D/Gaussian/gaussian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/2D/Gaussian/gaussian.cpp -------------------------------------------------------------------------------- /demo_src/CPP/2D/Gaussian/gaussian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/2D/Gaussian/gaussian.h -------------------------------------------------------------------------------- /demo_src/CPP/2D/Gaussian/main_gaussian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/2D/Gaussian/main_gaussian.cpp -------------------------------------------------------------------------------- /demo_src/CPP/2D/Rectangle/main_rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/2D/Rectangle/main_rectangle.cpp -------------------------------------------------------------------------------- /demo_src/CPP/2D/Rectangle/rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/2D/Rectangle/rectangle.cpp -------------------------------------------------------------------------------- /demo_src/CPP/2D/Rectangle/rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/2D/Rectangle/rectangle.h -------------------------------------------------------------------------------- /demo_src/CPP/2D/Sine_line/main_sine_line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/2D/Sine_line/main_sine_line.cpp -------------------------------------------------------------------------------- /demo_src/CPP/2D/Sine_line/sine_line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/2D/Sine_line/sine_line.cpp -------------------------------------------------------------------------------- /demo_src/CPP/2D/Sine_line/sine_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/2D/Sine_line/sine_line.h -------------------------------------------------------------------------------- /demo_src/CPP/3D/Cap1/cap1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/3D/Cap1/cap1.cpp -------------------------------------------------------------------------------- /demo_src/CPP/3D/Cap1/cap1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/3D/Cap1/cap1.h -------------------------------------------------------------------------------- /demo_src/CPP/3D/Cap1/main_cap1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/3D/Cap1/main_cap1.cpp -------------------------------------------------------------------------------- /demo_src/CPP/3D/Cap2/cap2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/3D/Cap2/cap2.cpp -------------------------------------------------------------------------------- /demo_src/CPP/3D/Cap2/cap2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/3D/Cap2/cap2.h -------------------------------------------------------------------------------- /demo_src/CPP/3D/Cap2/main_cap2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/3D/Cap2/main_cap2.cpp -------------------------------------------------------------------------------- /demo_src/CPP/3D/Cap3/cap3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/3D/Cap3/cap3.cpp -------------------------------------------------------------------------------- /demo_src/CPP/3D/Cap3/cap3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/3D/Cap3/cap3.h -------------------------------------------------------------------------------- /demo_src/CPP/3D/Cap3/main_cap3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/3D/Cap3/main_cap3.cpp -------------------------------------------------------------------------------- /demo_src/CPP/3D/Sine_surface/main_sine_surf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/3D/Sine_surface/main_sine_surf.cpp -------------------------------------------------------------------------------- /demo_src/CPP/3D/Sine_surface/sine_surf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/3D/Sine_surface/sine_surf.cpp -------------------------------------------------------------------------------- /demo_src/CPP/3D/Sine_surface/sine_surf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/3D/Sine_surface/sine_surf.h -------------------------------------------------------------------------------- /demo_src/CPP/3D/Sphere/main_sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/3D/Sphere/main_sphere.cpp -------------------------------------------------------------------------------- /demo_src/CPP/3D/Sphere/sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/3D/Sphere/sphere.cpp -------------------------------------------------------------------------------- /demo_src/CPP/3D/Sphere/sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/3D/Sphere/sphere.h -------------------------------------------------------------------------------- /demo_src/CPP/makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/makefile.am -------------------------------------------------------------------------------- /demo_src/CPP/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/CPP/makefile.in -------------------------------------------------------------------------------- /demo_src/Fortran/2D/Ellipse/ellipse.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/2D/Ellipse/ellipse.f90 -------------------------------------------------------------------------------- /demo_src/Fortran/2D/Ellipse/main_ellipse.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/2D/Ellipse/main_ellipse.f90 -------------------------------------------------------------------------------- /demo_src/Fortran/2D/Gaussian/gaussian.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/2D/Gaussian/gaussian.f90 -------------------------------------------------------------------------------- /demo_src/Fortran/2D/Gaussian/main_gaussian.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/2D/Gaussian/main_gaussian.f90 -------------------------------------------------------------------------------- /demo_src/Fortran/2D/Rectangle/main_rectangle.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/2D/Rectangle/main_rectangle.f90 -------------------------------------------------------------------------------- /demo_src/Fortran/2D/Rectangle/rectangle.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/2D/Rectangle/rectangle.f90 -------------------------------------------------------------------------------- /demo_src/Fortran/2D/Sine_line/main_sine_line.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/2D/Sine_line/main_sine_line.f90 -------------------------------------------------------------------------------- /demo_src/Fortran/2D/Sine_line/sine_line.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/2D/Sine_line/sine_line.f90 -------------------------------------------------------------------------------- /demo_src/Fortran/3D/Cap1/cap1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/3D/Cap1/cap1.f90 -------------------------------------------------------------------------------- /demo_src/Fortran/3D/Cap1/main_cap1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/3D/Cap1/main_cap1.f90 -------------------------------------------------------------------------------- /demo_src/Fortran/3D/Cap2/cap2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/3D/Cap2/cap2.f90 -------------------------------------------------------------------------------- /demo_src/Fortran/3D/Cap2/main_cap2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/3D/Cap2/main_cap2.f90 -------------------------------------------------------------------------------- /demo_src/Fortran/3D/Cap3/cap3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/3D/Cap3/cap3.f90 -------------------------------------------------------------------------------- /demo_src/Fortran/3D/Cap3/main_cap3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/3D/Cap3/main_cap3.f90 -------------------------------------------------------------------------------- /demo_src/Fortran/3D/Sine_surface/main_sine_surf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/3D/Sine_surface/main_sine_surf.f90 -------------------------------------------------------------------------------- /demo_src/Fortran/3D/Sine_surface/sine_surf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/3D/Sine_surface/sine_surf.f90 -------------------------------------------------------------------------------- /demo_src/Fortran/3D/Sphere/main_sphere.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/3D/Sphere/main_sphere.f90 -------------------------------------------------------------------------------- /demo_src/Fortran/3D/Sphere/sphere.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/3D/Sphere/sphere.f90 -------------------------------------------------------------------------------- /demo_src/Fortran/makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/makefile.am -------------------------------------------------------------------------------- /demo_src/Fortran/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/Fortran/makefile.in -------------------------------------------------------------------------------- /demo_src/makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/makefile.am -------------------------------------------------------------------------------- /demo_src/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/demo_src/makefile.in -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/depcomp -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /include/vofi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/include/vofi.h -------------------------------------------------------------------------------- /include/vofi_GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/include/vofi_GL.h -------------------------------------------------------------------------------- /include/vofi_stddecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/include/vofi_stddecl.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/install-sh -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/ltmain.sh -------------------------------------------------------------------------------- /m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/m4/libtool.m4 -------------------------------------------------------------------------------- /m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/m4/ltoptions.m4 -------------------------------------------------------------------------------- /m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/m4/ltsugar.m4 -------------------------------------------------------------------------------- /m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/m4/ltversion.m4 -------------------------------------------------------------------------------- /m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /makefile.am: -------------------------------------------------------------------------------- 1 | # Project makefile 2 | 3 | SUBDIRS = src demo_src 4 | 5 | -------------------------------------------------------------------------------- /makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/makefile.in -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/missing -------------------------------------------------------------------------------- /src/checkconsistency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/src/checkconsistency.c -------------------------------------------------------------------------------- /src/getcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/src/getcc.c -------------------------------------------------------------------------------- /src/getdirs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/src/getdirs.c -------------------------------------------------------------------------------- /src/getfh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/src/getfh.c -------------------------------------------------------------------------------- /src/getintersections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/src/getintersections.c -------------------------------------------------------------------------------- /src/getlimits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/src/getlimits.c -------------------------------------------------------------------------------- /src/getmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/src/getmin.c -------------------------------------------------------------------------------- /src/getzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/src/getzero.c -------------------------------------------------------------------------------- /src/integrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/src/integrate.c -------------------------------------------------------------------------------- /src/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/src/interface.c -------------------------------------------------------------------------------- /src/makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/src/makefile.am -------------------------------------------------------------------------------- /src/makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/src/makefile.in -------------------------------------------------------------------------------- /test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VOFTracking/Vofi/HEAD/test-driver --------------------------------------------------------------------------------