├── .gitignore ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── Data ├── rygg1.dat └── scat.dat ├── Doxyfile ├── INSTALL ├── README ├── TODO.txt ├── app ├── .cvsignore ├── filterRestrictTest.cpp └── mainSimplest.C ├── doc ├── .cvsignore ├── MBA.pdf └── images │ ├── SINTEFlogo.gif │ └── spockAndTerrain.jpg ├── include ├── GenMatrix.h ├── MBA.h ├── MBAclock.h ├── MBAdata.h ├── MBAtypedef.h ├── MyClock.h ├── PointAccessUtils.h ├── UCBsplineSurface.h ├── UCBsplines.h ├── UCBtypedef.h ├── UCButils.h ├── UnifBsplines.h ├── checkWIN32andSGI.h ├── doxymain.h └── filterRestrict2D.h └── src ├── MBA.cpp ├── MBAdata.cpp ├── PointAccessUtils.cpp ├── UCBsplineSurface.cpp ├── UCBsplines.cpp ├── UCButils.cpp └── filterRestrict2D.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | doc/html 2 | *~ 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/ChangeLog -------------------------------------------------------------------------------- /Data/rygg1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/Data/rygg1.dat -------------------------------------------------------------------------------- /Data/scat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/Data/scat.dat -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/Doxyfile -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/INSTALL -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/README -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/TODO.txt -------------------------------------------------------------------------------- /app/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/app/.cvsignore -------------------------------------------------------------------------------- /app/filterRestrictTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/app/filterRestrictTest.cpp -------------------------------------------------------------------------------- /app/mainSimplest.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/app/mainSimplest.C -------------------------------------------------------------------------------- /doc/.cvsignore: -------------------------------------------------------------------------------- 1 | html 2 | latex 3 | -------------------------------------------------------------------------------- /doc/MBA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/doc/MBA.pdf -------------------------------------------------------------------------------- /doc/images/SINTEFlogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/doc/images/SINTEFlogo.gif -------------------------------------------------------------------------------- /doc/images/spockAndTerrain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/doc/images/spockAndTerrain.jpg -------------------------------------------------------------------------------- /include/GenMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/include/GenMatrix.h -------------------------------------------------------------------------------- /include/MBA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/include/MBA.h -------------------------------------------------------------------------------- /include/MBAclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/include/MBAclock.h -------------------------------------------------------------------------------- /include/MBAdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/include/MBAdata.h -------------------------------------------------------------------------------- /include/MBAtypedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/include/MBAtypedef.h -------------------------------------------------------------------------------- /include/MyClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/include/MyClock.h -------------------------------------------------------------------------------- /include/PointAccessUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/include/PointAccessUtils.h -------------------------------------------------------------------------------- /include/UCBsplineSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/include/UCBsplineSurface.h -------------------------------------------------------------------------------- /include/UCBsplines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/include/UCBsplines.h -------------------------------------------------------------------------------- /include/UCBtypedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/include/UCBtypedef.h -------------------------------------------------------------------------------- /include/UCButils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/include/UCButils.h -------------------------------------------------------------------------------- /include/UnifBsplines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/include/UnifBsplines.h -------------------------------------------------------------------------------- /include/checkWIN32andSGI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/include/checkWIN32andSGI.h -------------------------------------------------------------------------------- /include/doxymain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/include/doxymain.h -------------------------------------------------------------------------------- /include/filterRestrict2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/include/filterRestrict2D.h -------------------------------------------------------------------------------- /src/MBA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/src/MBA.cpp -------------------------------------------------------------------------------- /src/MBAdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/src/MBAdata.cpp -------------------------------------------------------------------------------- /src/PointAccessUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/src/PointAccessUtils.cpp -------------------------------------------------------------------------------- /src/UCBsplineSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/src/UCBsplineSurface.cpp -------------------------------------------------------------------------------- /src/UCBsplines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/src/UCBsplines.cpp -------------------------------------------------------------------------------- /src/UCButils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/src/UCButils.cpp -------------------------------------------------------------------------------- /src/filterRestrict2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/MBA/HEAD/src/filterRestrict2D.cpp --------------------------------------------------------------------------------