Blender Git Loki

Git Commits -> Revision 8c3aedc

July 8, 2014, 19:31 (GMT)
Big commit. Manta included in Blender Python. NOT ALL modules imported

Commit Details:

Full Hash: 8c3aedcec5df97d7b46270dd89cc9d77c17ac77e
Parent Commit: f809240
Lines Changed: +25387, -25296

176 Added Paths:

/source/blender/python/manta_pp/CMakeLists.txt (+229, -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 (+181, -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/cuda/buoyancy.cu (+421, -0) (View)
/source/blender/python/manta_pp/cuda/cudatools.h (+176, -0) (View)
/source/blender/python/manta_pp/cuda/curlnoise.cu (+110, -0) (View)
/source/blender/python/manta_pp/cuda/curlnoise.h (+196, -0) (View)
/source/blender/python/manta_pp/cuda/meshtools.cu (+165, -0) (View)
/source/blender/python/manta_pp/cuda/particle.cu (+172, -0) (View)
/source/blender/python/manta_pp/cuda/turbulence.cu (+164, -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/fluidsolver.h.reg.cpp (+25, -0) (View)
/source/blender/python/manta_pp/general.cpp (+141, -0) (View)
/source/blender/python/manta_pp/general.h (+151, -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 (+484, -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 (+4, -0) (View)
/source/blender/python/manta_pp/gui/moc_glwidget.cxx (+132, -0) (View)
/source/blender/python/manta_pp/gui/moc_glwidget.cxx_parameters (+4, -0) (View)
/source/blender/python/manta_pp/gui/moc_mainwindow.cxx (+154, -0) (View)
/source/blender/python/manta_pp/gui/moc_mainwindow.cxx_parameters (+4, -0) (View)
/source/blender/python/manta_pp/gui/moc_meshpainter.cxx (+93, -0) (View)
/source/blender/python/manta_pp/gui/moc_meshpainter.cxx_parameters (+4, -0) (View)
/source/blender/python/manta_pp/gui/moc_painter.cxx (+170, -0) (View)
/source/blender/python/manta_pp/gui/moc_painter.cxx_parameters (+4, -0) (View)
/source/blender/python/manta_pp/gui/moc_particlepainter.cxx (+80, -0) (View)
/source/blender/python/manta_pp/gui/moc_particlepainter.cxx_parameters (+4, -0) (View)
/source/blender/python/manta_pp/gui/moc_qtmain.cxx (+182, -0) (View)
/source/blender/python/manta_pp/gui/moc_qtmain.cxx_parameters (+4, -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/manta.h (+33, -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/preprocessor/code.cpp (+92, -0) (View)
/source/blender/python/manta_pp/preprocessor/code.h (+134, -0) (View)
/source/blender/python/manta_pp/preprocessor/codegen_kernel.cpp (+365, -0) (View)
/source/blender/python/manta_pp/preprocessor/codegen_python.cpp (+505, -0) (View)
/source/blender/python/manta_pp/preprocessor/main.cpp (+124, -0) (View)
/source/blender/python/manta_pp/preprocessor/main.h (+4, -0) (View)
/source/blender/python/manta_pp/preprocessor/merge.cpp (+179, -0) (View)
/source/blender/python/manta_pp/preprocessor/parse.cpp (+356, -0) (View)
/source/blender/python/manta_pp/preprocessor/prep.h (+45, -0) (View)
/source/blender/python/manta_pp/preprocessor/tokenize.cpp (+348, -0) (View)
/source/blender/python/manta_pp/preprocessor/tokenize.h (+69, -0) (View)
/source/blender/python/manta_pp/preprocessor/util.cpp (+217, -0) (View)
/source/blender/python/manta_pp/preprocessor/util.h (+63, -0) (View)
/source/blender/python/manta_pp/pwrapper/manta.h (+33, -0) (View)
/source/blender/python/manta_pp/pwrapper/manta_api.h (+4, -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 (+423, -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 (+120, -0) (View)
/source/blender/python/manta_pp/pwrapper/pymain.h (+5, -0) (View)
/source/blender/python/manta_pp/pwrapper/pythonInclude.h (+41, -0) (View)
/source/blender/python/manta_pp/pwrapper/registry.cpp (+756, -0) (View)
/source/blender/python/manta_pp/pwrapper/registry.h (+83, -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/SConscript (+18, -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/vortexfilament.cpp (+340, -0) (View)
/source/blender/python/manta_pp/vortexfilament.h (+72, -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)

175 Deleted Paths:

/extern/manta_pp/CMakeLists.txt (+0, -228)
/extern/manta_pp/commonkernels.h (+0, -140)
/extern/manta_pp/commonkernels.h.reg (+0, -1)
/extern/manta_pp/commonkernels.h.reg.cpp (+0, -0)
/extern/manta_pp/conjugategrad.cpp (+0, -316)
/extern/manta_pp/conjugategrad.h (+0, -181)
/extern/manta_pp/conjugategrad.h.reg (+0, -1)
/extern/manta_pp/conjugategrad.h.reg.cpp (+0, -0)
/extern/manta_pp/cuda/buoyancy.cu (+0, -421)
/extern/manta_pp/cuda/cudatools.h (+0, -176)
/extern/manta_pp/cuda/curlnoise.cu (+0, -110)
/extern/manta_pp/cuda/curlnoise.h (+0, -196)
/extern/manta_pp/cuda/meshtools.cu (+0, -165)
/extern/manta_pp/cuda/particle.cu (+0, -172)
/extern/manta_pp/cuda/turbulence.cu (+0, -164)
/extern/manta_pp/edgecollapse.cpp (+0, -678)
/extern/manta_pp/edgecollapse.h (+0, -48)
/extern/manta_pp/edgecollapse.h.reg (+0, -1)
/extern/manta_pp/edgecollapse.h.reg.cpp (+0, -0)
/extern/manta_pp/fastmarch.cpp (+0, -437)
/extern/manta_pp/fastmarch.h (+0, -209)
/extern/manta_pp/fastmarch.h.reg (+0, -1)
/extern/manta_pp/fastmarch.h.reg.cpp (+0, -0)
/extern/manta_pp/fileio.cpp (+0, -713)
/extern/manta_pp/fileio.h (+0, -61)
/extern/manta_pp/fileio.h.reg (+0, -1)
/extern/manta_pp/fileio.h.reg.cpp (+0, -0)
/extern/manta_pp/flip.cpp (+0, -500)
/extern/manta_pp/flip.h (+0, -36)
/extern/manta_pp/flip.h.reg (+0, -1)
/extern/manta_pp/flip.h.reg.cpp (+0, -0)
/extern/manta_pp/fluidsolver.cpp (+0, -185)
/extern/manta_pp/fluidsolver.h (+0, -104)
/extern/manta_pp/fluidsolver.h.reg (+0, -11)
/extern/manta_pp/fluidsolver.h.reg.cpp (+0, -25)
/extern/manta_pp/general.cpp (+0, -141)
/extern/manta_pp/general.h (+0, -151)
/extern/manta_pp/general.h.reg (+0, -1)
/extern/manta_pp/general.h.reg.cpp (+0, -0)
/extern/manta_pp/grid.cpp (+0, -458)
/extern/manta_pp/grid.h (+0, -482)
/extern/manta_pp/grid.h.reg (+0, -41)
/extern/manta_pp/grid.h.reg.cpp (+0, -92)
/extern/manta_pp/gui/customctrl.cpp (+0, -185)
/extern/manta_pp/gui/customctrl.h (+0, -138)
/extern/manta_pp/gui/customctrl.h.reg (+0, -23)
/extern/manta_pp/gui/customctrl.h.reg.cpp (+0, -40)
/extern/manta_pp/gui/glwidget.cpp (+0, -305)
/extern/manta_pp/gui/glwidget.h (+0, -85)
/extern/manta_pp/gui/glwidget.h.reg (+0, -1)
/extern/manta_pp/gui/glwidget.h.reg.cpp (+0, -0)
/extern/manta_pp/gui/mainwindow.cpp (+0, -256)
/extern/manta_pp/gui/mainwindow.h (+0, -86)
/extern/manta_pp/gui/mainwindow.h.reg (+0, -1)
/extern/manta_pp/gui/mainwindow.h.reg.cpp (+0, -0)
/extern/manta_pp/gui/meshpainter.cpp (+0, -313)
/extern/manta_pp/gui/meshpainter.h (+0, -71)
/extern/manta_pp/gui/meshpainter.h.reg (+0, -1)
/extern/manta_pp/gui/meshpainter.h.reg.cpp (+0, -0)
/extern/manta_pp/gui/moc_customctrl.cxx (+0, -165)
/extern/manta_pp/gui/moc_customctrl.cxx_parameters (+0, -4)
/extern/manta_pp/gui/moc_glwidget.cxx (+0, -132)
/extern/manta_pp/gui/moc_glwidget.cxx_parameters (+0, -4)
/extern/manta_pp/gui/moc_mainwindow.cxx (+0, -154)
/extern/manta_pp/gui/moc_mainwindow.cxx_parameters (+0, -4)
/extern/manta_pp/gui/moc_meshpainter.cxx (+0, -93)
/extern/manta_pp/gui/moc_meshpainter.cxx_parameters (+0, -4)
/extern/manta_pp/gui/moc_painter.cxx (+0, -170)
/extern/manta_pp/gui/moc_painter.cxx_parameters (+0, -4)
/extern/manta_pp/gui/moc_particlepainter.cxx (+0, -80)
/extern/manta_pp/gui/moc_particlepainter.cxx_parameters (+0, -4)
/extern/manta_pp/gui/moc_qtmain.cxx (+0, -182)
/extern/manta_pp/gui/moc_qtmain.cxx_parameters (+0, -4)
/extern/manta_pp/gui/painter.cpp (+0, -552)
/extern/manta_pp/gui/painter.h (+0, -124)
/extern/manta_pp/gui/painter.h.reg (+0, -1)
/extern/manta_pp/gui/painter.h.reg.cpp (+0, -0)
/extern/manta_pp/gui/particlepainter.cpp (+0, -469)
/extern/manta_pp/gui/particlepainter.h (+0, -74)
/extern/manta_pp/gui/particlepainter.h.reg (+0, -1)
/extern/manta_pp/gui/particlepainter.h.reg.cpp (+0, -0)
/extern/manta_pp/gui/qtmain.cpp (+0, -163)
/extern/manta_pp/gui/qtmain.h (+0, -89)
/extern/manta_pp/gui/qtmain.h.reg (+0, -1)
/extern/manta_pp/gui/qtmain.h.reg.cpp (+0, -0)
/extern/manta_pp/hginfo.h (+0, -4)
/extern/manta_pp/kernel.cpp (+0, -49)
/extern/manta_pp/kernel.h (+0, -93)
/extern/manta_pp/kernel.h.reg (+0, -1)
/extern/manta_pp/kernel.h.reg.cpp (+0, -0)
/extern/manta_pp/levelset.cpp (+0, -347)
/extern/manta_pp/levelset.h (+0, -56)
/extern/manta_pp/levelset.h.reg (+0, -9)
/extern/manta_pp/levelset.h.reg.cpp (+0, -22)
/extern/manta_pp/manta.h (+0, -33)
/extern/manta_pp/mesh.cpp (+0, -788)
/extern/manta_pp/mesh.h (+0, -269)
/extern/manta_pp/mesh.h.reg (+0, -12)
/extern/manta_pp/mesh.h.reg.cpp (+0, -26)
/extern/manta_pp/movingobs.cpp (+0, -105)
/extern/manta_pp/movingobs.h (+0, -54)
/extern/manta_pp/movingobs.h.reg (+0, -7)
/extern/manta_pp/movingobs.h.reg.cpp (+0, -21)
/extern/manta_pp/noisefield.cpp (+0, -309)
/extern/manta_pp/noisefield.h (+0, -405)
/extern/manta_pp/noisefield.h.reg (+0, -12)
/extern/manta_pp/noisefield.h.reg.cpp (+0, -26)
/extern/manta_pp/particle.cpp (+0, -371)
/extern/manta_pp/particle.h (+0, -614)
/extern/manta_pp/particle.h.reg (+0, -44)
/extern/manta_pp/particle.h.reg.cpp (+0, -79)
/extern/manta_pp/plugin/advection.cpp (+0, -337)
/extern/manta_pp/plugin/extforces.cpp (+0, -157)
/extern/manta_pp/plugin/initplugins.cpp (+0, -118)
/extern/manta_pp/plugin/kepsilon.cpp (+0, -195)
/extern/manta_pp/plugin/meshplugins.cpp (+0, -636)
/extern/manta_pp/plugin/pressure.cpp (+0, -323)
/extern/manta_pp/plugin/vortexplugins.cpp (+0, -324)
/extern/manta_pp/plugin/waveletturbulence.cpp (+0, -309)
/extern/manta_pp/preprocessor/code.cpp (+0, -92)
/extern/manta_pp/preprocessor/code.h (+0, -134)
/extern/manta_pp/preprocessor/codegen_kernel.cpp (+0, -365)
/extern/manta_pp/preprocessor/codegen_python.cpp (+0, -505)
/extern/manta_pp/preprocessor/main.cpp (+0, -124)
/extern/manta_pp/preprocessor/main.h (+0, -4)
/extern/manta_pp/preprocessor/merge.cpp (+0, -179)
/extern/manta_pp/preprocessor/parse.cpp (+0, -356)
/extern/manta_pp/preprocessor/prep.h (+0, -45)
/extern/manta_pp/preprocessor/tokenize.cpp (+0, -348)
/extern/manta_pp/preprocessor/tokenize.h (+0, -69)
/extern/manta_pp/preprocessor/util.cpp (+0, -217)
/extern/manta_pp/preprocessor/util.h (+0, -63)
/extern/manta_pp/pwrapper/manta.h (+0, -33)
/extern/manta_pp/pwrapper/pclass.cpp (+0, -178)
/extern/manta_pp/pwrapper/pclass.h (+0, -106)
/extern/manta_pp/pwrapper/pconvert.cpp (+0, -423)
/extern/manta_pp/pwrapper/pconvert.h (+0, -204)
/extern/manta_pp/pwrapper/pvec3.cpp (+0, -286)
/extern/manta_pp/pwrapper/pymain.cpp (+0, -116)
/extern/manta_pp/pwrapper/pymain.h (+0, -5)
/extern/manta_pp/pwrapper/pythonInclude.h (+0, -41)
/extern/manta_pp/pwrapper/registry.cpp (+0, -683)
/extern/manta_pp/pwrapper/registry.h (+0, -86)
/extern/manta_pp/python/defines.py (+0, -11)
/extern/manta_pp/python/defines.py.reg (+0, -2)
/extern/manta_pp/python/defines.py.reg.cpp (+0, -2)
/extern/manta_pp/SConscript (+0, -18)
/extern/manta_pp/shapes.cpp (+0, -394)
/extern/manta_pp/shapes.h (+0, -142)
/extern/manta_pp/shapes.h.reg (+0, -25)
/extern/manta_pp/shapes.h.reg.cpp (+0, -43)
/extern/manta_pp/test.cpp (+0, -164)
/extern/manta_pp/turbulencepart.cpp (+0, -154)
/extern/manta_pp/turbulencepart.h (+0, -64)
/extern/manta_pp/turbulencepart.h.reg (+0, -9)
/extern/manta_pp/turbulencepart.h.reg.cpp (+0, -34)
/extern/manta_pp/util/integrator.h (+0, -75)
/extern/manta_pp/util/interpol.h (+0, -209)
/extern/manta_pp/util/interpolHigh.h (+0, -58)
/extern/manta_pp/util/mcubes.h (+0, -323)
/extern/manta_pp/util/quaternion.h (+0, -89)
/extern/manta_pp/util/randomstream.h (+0, -377)
/extern/manta_pp/util/solvana.h (+0, -176)
/extern/manta_pp/util/vectorbase.cpp (+0, -35)
/extern/manta_pp/util/vectorbase.h (+0, -585)
/extern/manta_pp/vortexfilament.cpp (+0, -340)
/extern/manta_pp/vortexfilament.h (+0, -72)
/extern/manta_pp/vortexpart.cpp (+0, -109)
/extern/manta_pp/vortexpart.h (+0, -56)
/extern/manta_pp/vortexpart.h.reg (+0, -7)
/extern/manta_pp/vortexpart.h.reg.cpp (+0, -32)
/extern/manta_pp/vortexsheet.cpp (+0, -105)
/extern/manta_pp/vortexsheet.h (+0, -98)
/extern/manta_pp/vortexsheet.h.reg (+0, -7)
/extern/manta_pp/vortexsheet.h.reg.cpp (+0, -21)

10 Modified Paths:

/extern/CMakeLists.txt (+1, -1) (Diff)
/extern/SConscript (+1, -1) (Diff)
/intern/cycles/CMakeLists.txt (+2, -2) (Diff)
/intern/smoke/intern/MANTA.h (+4, -4) (Diff)
/intern/smoke/intern/smoke_API.cpp (+1, -2) (Diff)
/source/blender/python/CMakeLists.txt (+1, -0) (Diff)
/source/blender/python/intern/bpy_interface.c (+3, -0) (Diff)
/source/blender/python/SConscript (+6, -1) (Diff)
/source/blenderplayer/CMakeLists.txt (+1, -0) (Diff)
/source/creator/CMakeLists.txt (+2, -1) (Diff)
Tehnyt: Miika HämäläinenViimeksi päivitetty: 07.11.2014 14:18MiikaH:n Sivut a.k.a. MiikaHweb | 2003-2021