Blender Git Loki

Git Commits -> Revision 5bd23ad

July 22, 2014, 13:18 (GMT)
division on manta_pp and manta_full to switch between full module and pp files

Commit Details:

Full Hash: 5bd23adb6264e16f1f9c789cf1501c49469a6a9a
Parent Commit: 7752cfb
Lines Changed: +59667, -38750

291 Added Paths:

/source/blender/python/manta_full/CMakeLists.txt (+597, -0) (View)
/source/blender/python/manta_full/COPYING (+674, -0)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/adler32.c (+179, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/compress.c (+80, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/crc32.c (+425, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/crc32.h (+441, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/deflate.c (+1967, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/deflate.h (+346, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/gzclose.c (+25, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/gzguts.h (+209, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/gzlib.c (+634, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/gzread.c (+594, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/gzwrite.c (+577, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/infback.c (+640, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/inffast.c (+340, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/inffast.h (+11, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/inffixed.h (+94, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/inflate.c (+1512, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/inflate.h (+122, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/inftrees.c (+306, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/inftrees.h (+62, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/trees.c (+1226, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/trees.h (+128, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/uncompr.c (+59, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/zconf.h (+511, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/zlib.h (+1768, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/zutil.c (+324, -0) (View)
/source/blender/python/manta_full/dependencies/zlib-1.2.8/zutil.h (+253, -0) (View)
/source/blender/python/manta_full/Doxyfile.in (+1719, -0) (View)
/source/blender/python/manta_full/fluidsolver.h.reg.cpp (+26, -0) (View)
/source/blender/python/manta_full/general.h (+151, -0) (View)
/source/blender/python/manta_full/INSTALLING (+2, -0)
/source/blender/python/manta_full/resources/pause.png (+0, -0) (View)
/source/blender/python/manta_full/resources/play.png (+0, -0) (View)
/source/blender/python/manta_full/resources/res.qrc (+7, -0) (View)
/source/blender/python/manta_full/resources/stop.png (+0, -0) (View)
/source/blender/python/manta_full/scenes/simpleplume.py (+61, -0) (View)
/source/blender/python/manta_full/source/cmake/FindTBB.cmake (+267, -0) (View)
/source/blender/python/manta_full/source/commonkernels.h (+128, -0) (View)
/source/blender/python/manta_full/source/conjugategrad.cpp (+303, -0) (View)
/source/blender/python/manta_full/source/conjugategrad.h (+169, -0) (View)
/source/blender/python/manta_full/source/cuda/buoyancy.cu (+421, -0) (View)
/source/blender/python/manta_full/source/cuda/cudatools.h (+176, -0) (View)
/source/blender/python/manta_full/source/cuda/curlnoise.cu (+110, -0) (View)
/source/blender/python/manta_full/source/cuda/curlnoise.h (+196, -0) (View)
/source/blender/python/manta_full/source/cuda/meshtools.cu (+165, -0) (View)
/source/blender/python/manta_full/source/cuda/particle.cu (+172, -0) (View)
/source/blender/python/manta_full/source/cuda/turbulence.cu (+164, -0) (View)
/source/blender/python/manta_full/source/edgecollapse.cpp (+666, -0) (View)
/source/blender/python/manta_full/source/edgecollapse.h (+36, -0) (View)
/source/blender/python/manta_full/source/fastmarch.cpp (+424, -0) (View)
/source/blender/python/manta_full/source/fastmarch.h (+196, -0) (View)
/source/blender/python/manta_full/source/fileio.cpp (+700, -0) (View)
/source/blender/python/manta_full/source/fileio.h (+48, -0) (View)
/source/blender/python/manta_full/source/flip.cpp (+487, -0) (View)
/source/blender/python/manta_full/source/flip.h (+23, -0) (View)
/source/blender/python/manta_full/source/fluidsolver.cpp (+172, -0) (View)
/source/blender/python/manta_full/source/fluidsolver.h (+92, -0) (View)
/source/blender/python/manta_full/source/general.cpp (+128, -0) (View)
/source/blender/python/manta_full/source/general.h (+138, -0) (View)
/source/blender/python/manta_full/source/grid.cpp (+445, -0) (View)
/source/blender/python/manta_full/source/grid.h (+473, -0) (View)
/source/blender/python/manta_full/source/gui/customctrl.cpp (+172, -0) (View)
/source/blender/python/manta_full/source/gui/customctrl.h (+129, -0) (View)
/source/blender/python/manta_full/source/gui/glwidget.cpp (+292, -0) (View)
/source/blender/python/manta_full/source/gui/glwidget.h (+72, -0) (View)
/source/blender/python/manta_full/source/gui/mainwindow.cpp (+243, -0) (View)
/source/blender/python/manta_full/source/gui/mainwindow.h (+73, -0) (View)
/source/blender/python/manta_full/source/gui/meshpainter.cpp (+300, -0) (View)
/source/blender/python/manta_full/source/gui/meshpainter.h (+59, -0) (View)
/source/blender/python/manta_full/source/gui/painter.cpp (+539, -0) (View)
/source/blender/python/manta_full/source/gui/painter.h (+111, -0) (View)
/source/blender/python/manta_full/source/gui/particlepainter.cpp (+456, -0) (View)
/source/blender/python/manta_full/source/gui/particlepainter.h (+61, -0) (View)
/source/blender/python/manta_full/source/gui/qtmain.cpp (+150, -0) (View)
/source/blender/python/manta_full/source/gui/qtmain.h (+77, -0) (View)
/source/blender/python/manta_full/source/kernel.cpp (+36, -0) (View)
/source/blender/python/manta_full/source/kernel.h (+80, -0) (View)
/source/blender/python/manta_full/source/levelset.cpp (+334, -0) (View)
/source/blender/python/manta_full/source/levelset.h (+44, -0) (View)
/source/blender/python/manta_full/source/mesh.cpp (+775, -0) (View)
/source/blender/python/manta_full/source/mesh.h (+257, -0) (View)
/source/blender/python/manta_full/source/movingobs.cpp (+92, -0) (View)
/source/blender/python/manta_full/source/movingobs.h (+42, -0) (View)
/source/blender/python/manta_full/source/noisefield.cpp (+296, -0) (View)
/source/blender/python/manta_full/source/noisefield.h (+393, -0) (View)
/source/blender/python/manta_full/source/particle.cpp (+358, -0) (View)
/source/blender/python/manta_full/source/particle.h (+608, -0) (View)
/source/blender/python/manta_full/source/plugin/advection.cpp (+324, -0) (View)
/source/blender/python/manta_full/source/plugin/extforces.cpp (+144, -0) (View)
/source/blender/python/manta_full/source/plugin/initplugins.cpp (+105, -0) (View)
/source/blender/python/manta_full/source/plugin/kepsilon.cpp (+183, -0) (View)
/source/blender/python/manta_full/source/plugin/meshplugins.cpp (+623, -0) (View)
/source/blender/python/manta_full/source/plugin/pressure.cpp (+310, -0) (View)
/source/blender/python/manta_full/source/plugin/vortexplugins.cpp (+312, -0) (View)
/source/blender/python/manta_full/source/plugin/waveletturbulence.cpp (+296, -0) (View)
/source/blender/python/manta_full/source/preprocessor/code.cpp (+92, -0) (View)
/source/blender/python/manta_full/source/preprocessor/code.h (+134, -0) (View)
/source/blender/python/manta_full/source/preprocessor/codegen_kernel.cpp (+365, -0) (View)
/source/blender/python/manta_full/source/preprocessor/codegen_python.cpp (+505, -0) (View)
/source/blender/python/manta_full/source/preprocessor/main.cpp (+120, -0) (View)
/source/blender/python/manta_full/source/preprocessor/merge.cpp (+179, -0) (View)
/source/blender/python/manta_full/source/preprocessor/parse.cpp (+356, -0) (View)
/source/blender/python/manta_full/source/preprocessor/prep.h (+46, -0) (View)
/source/blender/python/manta_full/source/preprocessor/tokenize.cpp (+348, -0) (View)
/source/blender/python/manta_full/source/preprocessor/tokenize.h (+69, -0) (View)
/source/blender/python/manta_full/source/preprocessor/util.cpp (+217, -0) (View)
/source/blender/python/manta_full/source/preprocessor/util.h (+63, -0) (View)
/source/blender/python/manta_full/source/pwrapper/manta.h (+33, -0) (View)
/source/blender/python/manta_full/source/pwrapper/manta_api.cpp (+27, -0) (View)
/source/blender/python/manta_full/source/pwrapper/manta_api.h (+6, -0) (View)
/source/blender/python/manta_full/source/pwrapper/pclass.cpp (+178, -0) (View)
/source/blender/python/manta_full/source/pwrapper/pclass.h (+106, -0) (View)
/source/blender/python/manta_full/source/pwrapper/pconvert.cpp (+422, -0) (View)
/source/blender/python/manta_full/source/pwrapper/pconvert.h (+204, -0) (View)
/source/blender/python/manta_full/source/pwrapper/pvec3.cpp (+286, -0) (View)
/source/blender/python/manta_full/source/pwrapper/pymain.cpp (+112, -0) (View)
/source/blender/python/manta_full/source/pwrapper/pymain.h (+8, -0) (View)
/source/blender/python/manta_full/source/pwrapper/pythonInclude.h (+41, -0) (View)
/source/blender/python/manta_full/source/pwrapper/registry.cpp (+682, -0) (View)
/source/blender/python/manta_full/source/pwrapper/registry.h (+87, -0) (View)
/source/blender/python/manta_full/source/python/defines.py (+27, -0) (View)
/source/blender/python/manta_full/source/shapes.cpp (+381, -0) (View)
/source/blender/python/manta_full/source/shapes.h (+130, -0) (View)
/source/blender/python/manta_full/source/test.cpp (+151, -0) (View)
/source/blender/python/manta_full/source/turbulencepart.cpp (+141, -0) (View)
/source/blender/python/manta_full/source/turbulencepart.h (+53, -0) (View)
/source/blender/python/manta_full/source/util/integrator.h (+75, -0) (View)
/source/blender/python/manta_full/source/util/interpol.h (+209, -0) (View)
/source/blender/python/manta_full/source/util/interpolHigh.h (+58, -0) (View)
/source/blender/python/manta_full/source/util/mcubes.h (+323, -0) (View)
/source/blender/python/manta_full/source/util/quaternion.h (+89, -0) (View)
/source/blender/python/manta_full/source/util/randomstream.h (+377, -0) (View)
/source/blender/python/manta_full/source/util/solvana.h (+176, -0) (View)
/source/blender/python/manta_full/source/util/vectorbase.cpp (+35, -0) (View)
/source/blender/python/manta_full/source/util/vectorbase.h (+585, -0) (View)
/source/blender/python/manta_full/source/vortexfilament.cpp (+340, -0) (View)
/source/blender/python/manta_full/source/vortexfilament.h (+72, -0) (View)
/source/blender/python/manta_full/source/vortexpart.cpp (+96, -0) (View)
/source/blender/python/manta_full/source/vortexpart.h (+45, -0) (View)
/source/blender/python/manta_full/source/vortexsheet.cpp (+92, -0) (View)
/source/blender/python/manta_full/source/vortexsheet.h (+87, -0) (View)
/source/blender/python/manta_pp/commonkernels.h (+140, -0) (View)
/source/blender/python/manta_pp/commonkernels.h.reg (+1, -0) (View)
/source/blender/python/manta_pp/commonkernels.h.reg.cpp (+0, -0) (View)
/source/blender/python/manta_pp/conjugategrad.cpp (+316, -0) (View)
/source/blender/python/manta_pp/conjugategrad.h (+182, -0) (View)
/source/blender/python/manta_pp/conjugategrad.h.reg (+1, -0) (View)
/source/blender/python/manta_pp/conjugategrad.h.reg.cpp (+0, -0) (View)
/source/blender/python/manta_pp/edgecollapse.cpp (+678, -0) (View)
/source/blender/python/manta_pp/edgecollapse.h (+48, -0) (View)
/source/blender/python/manta_pp/edgecollapse.h.reg (+1, -0) (View)
/source/blender/python/manta_pp/edgecollapse.h.reg.cpp (+0, -0) (View)
/source/blender/python/manta_pp/fastmarch.cpp (+437, -0) (View)
/source/blender/python/manta_pp/fastmarch.h (+209, -0) (View)
/source/blender/python/manta_pp/fastmarch.h.reg (+1, -0) (View)
/source/blender/python/manta_pp/fastmarch.h.reg.cpp (+0, -0) (View)
/source/blender/python/manta_pp/fileio.cpp (+713, -0) (View)
/source/blender/python/manta_pp/fileio.h (+61, -0) (View)
/source/blender/python/manta_pp/fileio.h.reg (+1, -0) (View)
/source/blender/python/manta_pp/fileio.h.reg.cpp (+0, -0) (View)
/source/blender/python/manta_pp/flip.cpp (+500, -0) (View)
/source/blender/python/manta_pp/flip.h (+36, -0) (View)
/source/blender/python/manta_pp/flip.h.reg (+1, -0) (View)
/source/blender/python/manta_pp/flip.h.reg.cpp (+0, -0) (View)
/source/blender/python/manta_pp/fluidsolver.cpp (+185, -0) (View)
/source/blender/python/manta_pp/fluidsolver.h (+104, -0) (View)
/source/blender/python/manta_pp/fluidsolver.h.reg (+11, -0) (View)
/source/blender/python/manta_pp/general.cpp (+141, -0) (View)
/source/blender/python/manta_pp/general.h.reg (+1, -0) (View)
/source/blender/python/manta_pp/general.h.reg.cpp (+0, -0) (View)
/source/blender/python/manta_pp/grid.cpp (+458, -0) (View)
/source/blender/python/manta_pp/grid.h (+482, -0) (View)
/source/blender/python/manta_pp/grid.h.reg (+41, -0) (View)
/source/blender/python/manta_pp/grid.h.reg.cpp (+92, -0) (View)
/source/blender/python/manta_pp/gui/customctrl.cpp (+185, -0) (View)
/source/blender/python/manta_pp/gui/customctrl.h (+138, -0) (View)
/source/blender/python/manta_pp/gui/customctrl.h.reg (+23, -0) (View)
/source/blender/python/manta_pp/gui/customctrl.h.reg.cpp (+40, -0) (View)
/source/blender/python/manta_pp/gui/glwidget.cpp (+305, -0) (View)
/source/blender/python/manta_pp/gui/glwidget.h (+85, -0) (View)
/source/blender/python/manta_pp/gui/glwidget.h.reg (+1, -0) (View)
/source/blender/python/manta_pp/gui/glwidget.h.reg.cpp (+0, -0) (View)
/source/blender/python/manta_pp/gui/mainwindow.cpp (+256, -0) (View)
/source/blender/python/manta_pp/gui/mainwindow.h (+86, -0) (View)
/source/blender/python/manta_pp/gui/mainwindow.h.reg (+1, -0) (View)
/source/blender/python/manta_pp/gui/mainwindow.h.reg.cpp (+0, -0) (View)
/source/blender/python/manta_pp/gui/meshpainter.cpp (+313, -0) (View)
/source/blender/python/manta_pp/gui/meshpainter.h (+71, -0) (View)
/source/blender/python/manta_pp/gui/meshpainter.h.reg (+1, -0) (View)
/source/blender/python/manta_pp/gui/meshpainter.h.reg.cpp (+0, -0) (View)
/source/blender/python/manta_pp/gui/moc_customctrl.cxx (+165, -0) (View)
/source/blender/python/manta_pp/gui/moc_customctrl.cxx_parameters (+5, -0) (View)
/source/blender/python/manta_pp/gui/moc_glwidget.cxx (+132, -0) (View)
/source/blender/python/manta_pp/gui/moc_glwidget.cxx_parameters (+5, -0) (View)
/source/blender/python/manta_pp/gui/moc_mainwindow.cxx (+154, -0) (View)
/source/blender/python/manta_pp/gui/moc_mainwindow.cxx_parameters (+5, -0) (View)
/source/blender/python/manta_pp/gui/moc_meshpainter.cxx (+93, -0) (View)
/source/blender/python/manta_pp/gui/moc_meshpainter.cxx_parameters (+5, -0) (View)
/source/blender/python/manta_pp/gui/moc_painter.cxx (+170, -0) (View)
/source/blender/python/manta_pp/gui/moc_painter.cxx_parameters (+5, -0) (View)
/source/blender/python/manta_pp/gui/moc_particlepainter.cxx (+80, -0) (View)
/source/blender/python/manta_pp/gui/moc_particlepainter.cxx_parameters (+5, -0) (View)
/source/blender/python/manta_pp/gui/moc_qtmain.cxx (+182, -0) (View)
/source/blender/python/manta_pp/gui/moc_qtmain.cxx_parameters (+5, -0) (View)
/source/blender/python/manta_pp/gui/painter.cpp (+552, -0) (View)
/source/blender/python/manta_pp/gui/painter.h (+124, -0) (View)
/source/blender/python/manta_pp/gui/painter.h.reg (+1, -0) (View)
/source/blender/python/manta_pp/gui/painter.h.reg.cpp (+0, -0) (View)
/source/blender/python/manta_pp/gui/particlepainter.cpp (+469, -0) (View)
/source/blender/python/manta_pp/gui/particlepainter.h (+74, -0) (View)
/source/blender/python/manta_pp/gui/particlepainter.h.reg (+1, -0) (View)
/source/blender/python/manta_pp/gui/particlepainter.h.reg.cpp (+0, -0) (View)
/source/blender/python/manta_pp/gui/qtmain.cpp (+163, -0) (View)
/source/blender/python/manta_pp/gui/qtmain.h (+89, -0) (View)
/source/blender/python/manta_pp/gui/qtmain.h.reg (+1, -0) (View)
/source/blender/python/manta_pp/gui/qtmain.h.reg.cpp (+0, -0) (View)
/source/blender/python/manta_pp/hginfo.h (+4, -0) (View)
/source/blender/python/manta_pp/kernel.cpp (+49, -0) (View)
/source/blender/python/manta_pp/kernel.h (+93, -0) (View)
/source/blender/python/manta_pp/kernel.h.reg (+1, -0) (View)
/source/blender/python/manta_pp/kernel.h.reg.cpp (+0, -0) (View)
/source/blender/python/manta_pp/levelset.cpp (+347, -0) (View)
/source/blender/python/manta_pp/levelset.h (+56, -0) (View)
/source/blender/python/manta_pp/levelset.h.reg (+9, -0) (View)
/source/blender/python/manta_pp/levelset.h.reg.cpp (+22, -0) (View)
/source/blender/python/manta_pp/mesh.cpp (+788, -0) (View)
/source/blender/python/manta_pp/mesh.h (+269, -0) (View)
/source/blender/python/manta_pp/mesh.h.reg (+12, -0) (View)
/source/blender/python/manta_pp/mesh.h.reg.cpp (+26, -0) (View)
/source/blender/python/manta_pp/movingobs.cpp (+105, -0) (View)
/source/blender/python/manta_pp/movingobs.h (+54, -0) (View)
/source/blender/python/manta_pp/movingobs.h.reg (+7, -0) (View)
/source/blender/python/manta_pp/movingobs.h.reg.cpp (+21, -0) (View)
/source/blender/python/manta_pp/noisefield.cpp (+309, -0) (View)
/source/blender/python/manta_pp/noisefield.h (+405, -0) (View)
/source/blender/python/manta_pp/noisefield.h.reg (+12, -0) (View)
/source/blender/python/manta_pp/noisefield.h.reg.cpp (+26, -0) (View)
/source/blender/python/manta_pp/particle.cpp (+371, -0) (View)
/source/blender/python/manta_pp/particle.h (+614, -0) (View)
/source/blender/python/manta_pp/particle.h.reg (+44, -0) (View)
/source/blender/python/manta_pp/particle.h.reg.cpp (+79, -0) (View)
/source/blender/python/manta_pp/plugin/advection.cpp (+337, -0) (View)
/source/blender/python/manta_pp/plugin/extforces.cpp (+157, -0) (View)
/source/blender/python/manta_pp/plugin/initplugins.cpp (+118, -0) (View)
/source/blender/python/manta_pp/plugin/kepsilon.cpp (+195, -0) (View)
/source/blender/python/manta_pp/plugin/meshplugins.cpp (+636, -0) (View)
/source/blender/python/manta_pp/plugin/pressure.cpp (+323, -0) (View)
/source/blender/python/manta_pp/plugin/vortexplugins.cpp (+324, -0) (View)
/source/blender/python/manta_pp/plugin/waveletturbulence.cpp (+309, -0) (View)
/source/blender/python/manta_pp/pwrapper/manta.h (+33, -0) (View)
/source/blender/python/manta_pp/pwrapper/manta_api.cpp (+27, -0) (View)
/source/blender/python/manta_pp/pwrapper/manta_api.h (+6, -0) (View)
/source/blender/python/manta_pp/pwrapper/pclass.cpp (+178, -0) (View)
/source/blender/python/manta_pp/pwrapper/pclass.h (+106, -0) (View)
/source/blender/python/manta_pp/pwrapper/pconvert.cpp (+422, -0) (View)
/source/blender/python/manta_pp/pwrapper/pconvert.h (+204, -0) (View)
/source/blender/python/manta_pp/pwrapper/pvec3.cpp (+286, -0) (View)
/source/blender/python/manta_pp/pwrapper/pymain.cpp (+111, -0) (View)
/source/blender/python/manta_pp/pwrapper/pythonInclude.h (+41, -0) (View)
/source/blender/python/manta_pp/pwrapper/registry.cpp (+682, -0) (View)
/source/blender/python/manta_pp/pwrapper/registry.h (+87, -0) (View)
/source/blender/python/manta_pp/python/defines.py (+11, -0) (View)
/source/blender/python/manta_pp/python/defines.py.reg (+2, -0) (View)
/source/blender/python/manta_pp/python/defines.py.reg.cpp (+2, -0) (View)
/source/blender/python/manta_pp/shapes.cpp (+394, -0) (View)
/source/blender/python/manta_pp/shapes.h (+142, -0) (View)
/source/blender/python/manta_pp/shapes.h.reg (+25, -0) (View)
/source/blender/python/manta_pp/shapes.h.reg.cpp (+43, -0) (View)
/source/blender/python/manta_pp/test.cpp (+164, -0) (View)
/source/blender/python/manta_pp/turbulencepart.cpp (+154, -0) (View)
/source/blender/python/manta_pp/turbulencepart.h (+64, -0) (View)
/source/blender/python/manta_pp/turbulencepart.h.reg (+9, -0) (View)
/source/blender/python/manta_pp/turbulencepart.h.reg.cpp (+34, -0) (View)
/source/blender/python/manta_pp/util/integrator.h (+75, -0) (View)
/source/blender/python/manta_pp/util/interpol.h (+209, -0) (View)
/source/blender/python/manta_pp/util/interpolHigh.h (+58, -0) (View)
/source/blender/python/manta_pp/util/mcubes.h (+323, -0) (View)
/source/blender/python/manta_pp/util/quaternion.h (+89, -0) (View)
/source/blender/python/manta_pp/util/randomstream.h (+377, -0) (View)
/source/blender/python/manta_pp/util/solvana.h (+176, -0) (View)
/source/blender/python/manta_pp/util/vectorbase.cpp (+35, -0) (View)
/source/blender/python/manta_pp/util/vectorbase.h (+585, -0) (View)
/source/blender/python/manta_pp/vortexpart.cpp (+109, -0) (View)
/source/blender/python/manta_pp/vortexpart.h (+56, -0) (View)
/source/blender/python/manta_pp/vortexpart.h.reg (+7, -0) (View)
/source/blender/python/manta_pp/vortexpart.h.reg.cpp (+32, -0) (View)
/source/blender/python/manta_pp/vortexsheet.cpp (+105, -0) (View)
/source/blender/python/manta_pp/vortexsheet.h (+98, -0) (View)
/source/blender/python/manta_pp/vortexsheet.h.reg (+7, -0) (View)
/source/blender/python/manta_pp/vortexsheet.h.reg.cpp (+21, -0) (View)

139 Deleted Paths:

/source/blender/python/manta_pp/COPYING (+0, -674)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/adler32.c (+0, -179)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/compress.c (+0, -80)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/crc32.c (+0, -425)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/crc32.h (+0, -441)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/deflate.c (+0, -1967)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/deflate.h (+0, -346)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/gzclose.c (+0, -25)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/gzguts.h (+0, -209)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/gzlib.c (+0, -634)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/gzread.c (+0, -594)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/gzwrite.c (+0, -577)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/infback.c (+0, -640)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/inffast.c (+0, -340)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/inffast.h (+0, -11)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/inffixed.h (+0, -94)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/inflate.c (+0, -1512)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/inflate.h (+0, -122)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/inftrees.c (+0, -306)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/inftrees.h (+0, -62)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/trees.c (+0, -1226)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/trees.h (+0, -128)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/uncompr.c (+0, -59)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/zconf.h (+0, -511)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/zlib.h (+0, -1768)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/zutil.c (+0, -324)
/source/blender/python/manta_pp/dependencies/zlib-1.2.8/zutil.h (+0, -253)
/source/blender/python/manta_pp/Doxyfile.in (+0, -1719)
/source/blender/python/manta_pp/INSTALLING (+0, -2)
/source/blender/python/manta_pp/resources/pause.png (+0, -0)
/source/blender/python/manta_pp/resources/play.png (+0, -0)
/source/blender/python/manta_pp/resources/res.qrc (+0, -7)
/source/blender/python/manta_pp/resources/stop.png (+0, -0)
/source/blender/python/manta_pp/scenes/simpleplume.py (+0, -61)
/source/blender/python/manta_pp/source/cmake/FindTBB.cmake (+0, -267)
/source/blender/python/manta_pp/source/commonkernels.h (+0, -128)
/source/blender/python/manta_pp/source/conjugategrad.cpp (+0, -303)
/source/blender/python/manta_pp/source/conjugategrad.h (+0, -169)
/source/blender/python/manta_pp/source/cuda/buoyancy.cu (+0, -421)
/source/blender/python/manta_pp/source/cuda/cudatools.h (+0, -176)
/source/blender/python/manta_pp/source/cuda/curlnoise.cu (+0, -110)
/source/blender/python/manta_pp/source/cuda/curlnoise.h (+0, -196)
/source/blender/python/manta_pp/source/cuda/meshtools.cu (+0, -165)
/source/blender/python/manta_pp/source/cuda/particle.cu (+0, -172)
/source/blender/python/manta_pp/source/cuda/turbulence.cu (+0, -164)
/source/blender/python/manta_pp/source/edgecollapse.cpp (+0, -666)
/source/blender/python/manta_pp/source/edgecollapse.h (+0, -36)
/source/blender/python/manta_pp/source/fastmarch.cpp (+0, -424)
/source/blender/python/manta_pp/source/fastmarch.h (+0, -196)
/source/blender/python/manta_pp/source/fileio.cpp (+0, -700)
/source/blender/python/manta_pp/source/fileio.h (+0, -48)
/source/blender/python/manta_pp/source/flip.cpp (+0, -487)
/source/blender/python/manta_pp/source/flip.h (+0, -23)
/source/blender/python/manta_pp/source/fluidsolver.cpp (+0, -172)
/source/blender/python/manta_pp/source/fluidsolver.h (+0, -92)
/source/blender/python/manta_pp/source/general.cpp (+0, -128)
/source/blender/python/manta_pp/source/general.h (+0, -138)
/source/blender/python/manta_pp/source/grid.cpp (+0, -445)
/source/blender/python/manta_pp/source/grid.h (+0, -473)
/source/blender/python/manta_pp/source/gui/customctrl.cpp (+0, -172)
/source/blender/python/manta_pp/source/gui/customctrl.h (+0, -129)
/source/blender/python/manta_pp/source/gui/glwidget.cpp (+0, -292)
/source/blender/python/manta_pp/source/gui/glwidget.h (+0, -72)
/source/blender/python/manta_pp/source/gui/mainwindow.cpp (+0, -243)
/source/blender/python/manta_pp/source/gui/mainwindow.h (+0, -73)
/source/blender/python/manta_pp/source/gui/meshpainter.cpp (+0, -300)
/source/blender/python/manta_pp/source/gui/meshpainter.h (+0, -59)
/source/blender/python/manta_pp/source/gui/painter.cpp (+0, -539)
/source/blender/python/manta_pp/source/gui/painter.h (+0, -111)
/source/blender/python/manta_pp/source/gui/particlepainter.cpp (+0, -456)
/source/blender/python/manta_pp/source/gui/particlepainter.h (+0, -61)
/source/blender/python/manta_pp/source/gui/qtmain.cpp (+0, -150)
/source/blender/python/manta_pp/source/gui/qtmain.h (+0, -77)
/source/blender/python/manta_pp/source/kernel.cpp (+0, -36)
/source/blender/python/manta_pp/source/kernel.h (+0, -80)
/source/blender/python/manta_pp/source/levelset.cpp (+0, -334)
/source/blender/python/manta_pp/source/levelset.h (+0, -44)
/source/blender/python/manta_pp/source/mesh.cpp (+0, -775)
/source/blender/python/manta_pp/source/mesh.h (+0, -257)
/source/blender/python/manta_pp/source/movingobs.cpp (+0, -92)
/source/blender/python/manta_pp/source/movingobs.h (+0, -42)
/source/blender/python/manta_pp/source/noisefield.cpp (+0, -296)
/source/blender/python/manta_pp/source/noisefield.h (+0, -393)
/source/blender/python/manta_pp/source/particle.cpp (+0, -358)
/source/blender/python/manta_pp/source/particle.h (+0, -608)
/source/blender/python/manta_pp/source/plugin/advection.cpp (+0, -324)
/source/blender/python/manta_pp/source/plugin/extforces.cpp (+0, -144)
/source/blender/python/manta_pp/source/plugin/initplugins.cpp (+0, -105)
/source/blender/python/manta_pp/source/plugin/kepsilon.cpp (+0, -183)
/source/blender/python/manta_pp/source/plugin/meshplugins.cpp (+0, -623)
/source/blender/python/manta_pp/source/plugin/pressure.cpp (+0, -310)
/source/blender/python/manta_pp/source/plugin/vortexplugins.cpp (+0, -312)
/source/blender/python/manta_pp/source/plugin/waveletturbulence.cpp (+0, -296)
/source/blender/python/manta_pp/source/preprocessor/code.cpp (+0, -92)
/source/blender/python/manta_pp/source/preprocessor/code.h (+0, -134)
/source/blender/python/manta_pp/source/preprocessor/codegen_kernel.cpp (+0, -365)
/source/blender/python/manta_pp/source/preprocessor/codegen_python.cpp (+0, -505)
/source/blender/python/manta_pp/source/preprocessor/main.cpp (+0, -120)
/source/blender/python/manta_pp/source/preprocessor/merge.cpp (+0, -179)
/source/blender/python/manta_pp/source/preprocessor/parse.cpp (+0, -356)
/source/blender/python/manta_pp/source/preprocessor/prep.h (+0, -46)
/source/blender/python/manta_pp/source/preprocessor/tokenize.cpp (+0, -348)
/source/blender/python/manta_pp/source/preprocessor/tokenize.h (+0, -69)
/source/blender/python/manta_pp/source/preprocessor/util.cpp (+0, -217)
/source/blender/python/manta_pp/source/preprocessor/util.h (+0, -63)
/source/blender/python/manta_pp/source/pwrapper/manta.h (+0, -33)
/source/blender/python/manta_pp/source/pwrapper/manta_api.cpp (+0, -27)
/source/blender/python/manta_pp/source/pwrapper/manta_api.h (+0, -6)
/source/blender/python/manta_pp/source/pwrapper/pclass.cpp (+0, -178)
/source/blender/python/manta_pp/source/pwrapper/pclass.h (+0, -106)
/source/blender/python/manta_pp/source/pwrapper/pconvert.cpp (+0, -422)
/source/blender/python/manta_pp/source/pwrapper/pconvert.h (+0, -204)
/source/blender/python/manta_pp/source/pwrapper/pvec3.cpp (+0, -286)
/source/blender/python/manta_pp/source/pwrapper/pymain.cpp (+0, -112)
/source/blender/python/manta_pp/source/pwrapper/pymain.h (+0, -8)
/source/blender/python/manta_pp/source/pwrapper/pythonInclude.h (+0, -41)
/source/blender/python/manta_pp/source/pwrapper/registry.cpp (+0, -682)
/source/blender/python/manta_pp/source/pwrapper/registry.h (+0, -87)
/source/blender/python/manta_pp/source/python/defines.py (+0, -27)
/source/blender/python/manta_pp/source/shapes.cpp (+0, -381)
/source/blender/python/manta_pp/source/shapes.h (+0, -130)
/source/blender/python/manta_pp/source/test.cpp (+0, -151)
/source/blender/python/manta_pp/source/turbulencepart.cpp (+0, -141)
/source/blender/python/manta_pp/source/turbulencepart.h (+0, -53)
/source/blender/python/manta_pp/source/util/integrator.h (+0, -75)
/source/blender/python/manta_pp/source/util/interpol.h (+0, -209)
/source/blender/python/manta_pp/source/util/interpolHigh.h (+0, -58)
/source/blender/python/manta_pp/source/util/mcubes.h (+0, -323)
/source/blender/python/manta_pp/source/util/quaternion.h (+0, -89)
/source/blender/python/manta_pp/source/util/randomstream.h (+0, -377)
/source/blender/python/manta_pp/source/util/solvana.h (+0, -176)
/source/blender/python/manta_pp/source/util/vectorbase.cpp (+0, -35)
/source/blender/python/manta_pp/source/util/vectorbase.h (+0, -585)
/source/blender/python/manta_pp/source/vortexfilament.cpp (+0, -340)
/source/blender/python/manta_pp/source/vortexfilament.h (+0, -72)
/source/blender/python/manta_pp/source/vortexpart.cpp (+0, -96)
/source/blender/python/manta_pp/source/vortexpart.h (+0, -45)
/source/blender/python/manta_pp/source/vortexsheet.cpp (+0, -92)
/source/blender/python/manta_pp/source/vortexsheet.h (+0, -87)

4 Modified Paths:

/source/blender/python/CMakeLists.txt (+1, -0) (Diff)
/source/blender/python/intern/bpy_interface.c (+1, -1) (Diff)
/source/blender/python/manta_pp/CMakeLists.txt (+179, -578) (Diff)
/source/blender/python/manta_pp/fluidsolver.h.reg.cpp (+1, -2) (Diff)
Tehnyt: Miika HämäläinenViimeksi päivitetty: 07.11.2014 14:18MiikaH:n Sivut a.k.a. MiikaHweb | 2003-2021