├── BoundaryElement └── BoundaryElementProgramming │ ├── Cont │ ├── exefiles │ │ ├── prog111 │ │ │ └── prog111.exe │ │ ├── prog31 │ │ │ └── prog31.exe │ │ ├── prog51 │ │ │ └── prog51.exe │ │ ├── prog52 │ │ │ └── prog52.exe │ │ ├── prog71 │ │ │ └── prog71.exe │ │ └── prog91 │ │ │ └── prog91.exe │ ├── inputfiles │ │ ├── prog111 │ │ │ └── Cantilever │ │ │ │ └── INPUT │ │ ├── prog31 │ │ │ └── Area │ │ │ │ └── input.dat │ │ ├── prog51 │ │ │ └── Trefftz │ │ │ │ └── input.dat │ │ ├── prog52 │ │ │ └── Isolator │ │ │ │ └── INPUT.dat │ │ ├── prog71 │ │ │ ├── Cantilever │ │ │ │ └── INPUT │ │ │ └── Isolator │ │ │ │ └── INPUT │ │ └── prog91 │ │ │ ├── Cantilever │ │ │ ├── INPUT │ │ │ └── INPUT2 │ │ │ └── Isolator │ │ │ ├── INPUT │ │ │ └── input2 │ ├── library │ │ ├── Bodyforce.f90 │ │ ├── Elast.f90 │ │ ├── Geometry.f90 │ │ ├── Integ.f90 │ │ ├── Laplace.f90 │ │ ├── Postproc.f90 │ │ ├── Stiffness.f90 │ │ └── Util.f90 │ └── sourcecodes │ │ ├── prog111 │ │ └── prog111.f90 │ │ ├── prog31 │ │ └── prog31.f90 │ │ ├── prog51 │ │ └── prog51.f90 │ │ ├── prog52 │ │ └── prog52.f90 │ │ ├── prog71 │ │ └── prog71.f90 │ │ └── prog91 │ │ └── prog91.f90 │ ├── Disconti │ ├── exefiles │ │ ├── prog111_disc │ │ │ └── prog111_disc.exe │ │ └── prog71_disc │ │ │ └── prog71_disc.exe │ ├── inputfiles │ │ ├── prog111 │ │ │ ├── Cantilever_2_regions_cantilever │ │ │ │ └── INPUT │ │ │ └── Compression_4_regions_compressiontest │ │ │ │ └── INPUT │ │ └── prog71 │ │ │ ├── Cantilever_12_parabolic │ │ │ └── INPUT │ │ │ └── Cantilever_8_parabolic │ │ │ └── INPUT │ ├── library │ │ ├── Elast.f90 │ │ ├── Geometry.f90 │ │ ├── Integ.f90 │ │ ├── Laplace.f90 │ │ ├── Postproc.f90 │ │ ├── Stiffness.f90 │ │ └── Util.f90 │ └── sourcecodes │ │ ├── prog111 │ │ └── prog111_disc.f90 │ │ └── prog71 │ │ └── prog71_disc.f90 │ ├── MyCodes │ ├── DirectMethod.py │ ├── Laplace.py │ ├── Trefftz.py │ └── __pycache__ │ │ └── Laplace.cpython-37.pyc │ └── parallel │ ├── inputfiles │ ├── coord.dat │ ├── job.dat │ ├── load.dat │ ├── plane.dat │ └── prog81.dat │ └── sourcecodes │ ├── bem_lib.f90 │ ├── bem_lib_p.f90 │ ├── coord.f90 │ ├── load.f90 │ ├── plane.f90 │ ├── prog81.f90 │ └── prog83.f90 ├── Bubble ├── AcousticBubbles │ └── bubble.py └── boiling │ ├── Boiling.sln │ ├── Boiling.vcproj │ ├── ExtendedYanagita.h │ ├── Makefile │ ├── OriginalYanagita.h │ └── boiling.cpp ├── Deformation ├── AnalyticEigensystems │ ├── Matlab │ │ ├── 2D │ │ │ ├── ARAP │ │ │ │ ├── ARAP_Hessian.m │ │ │ │ ├── ARAP_Hessian_sym.m │ │ │ │ ├── ARAP_PK1.m │ │ │ │ └── ARAP_Psi.m │ │ │ ├── Corotational │ │ │ │ ├── Corotational_Hessian.m │ │ │ │ ├── Corotational_Hessian_sym.m │ │ │ │ ├── Corotational_PK1.m │ │ │ │ └── Corotational_Psi.m │ │ │ ├── Get_Analytic_Eigensystem.m │ │ │ ├── Symmetric_ARAP │ │ │ │ ├── Symmetric_ARAP_Hessian.m │ │ │ │ ├── Symmetric_ARAP_Hessian_sym.m │ │ │ │ ├── Symmetric_ARAP_PK1.m │ │ │ │ └── Symmetric_ARAP_Psi.m │ │ │ ├── Symmetric_Dirichlet │ │ │ │ ├── Symmetric_Dirichlet_Hessian.m │ │ │ │ ├── Symmetric_Dirichlet_Hessian_sym.m │ │ │ │ ├── Symmetric_Dirichlet_PK1.m │ │ │ │ └── Symmetric_Dirichlet_Psi.m │ │ │ ├── Verify_2D.m │ │ │ ├── Verify_ARAP.m │ │ │ ├── Verify_Corotational.m │ │ │ ├── Verify_Symmetric_ARAP.m │ │ │ ├── Verify_Symmetric_Dirichlet.m │ │ │ └── util │ │ │ │ ├── DJDF.m │ │ │ │ ├── Get_Analytic_Eigensystem.m │ │ │ │ ├── Verify_Eigenpair.m │ │ │ │ ├── Verify_Hessian.m │ │ │ │ ├── Verify_PK1.m │ │ │ │ ├── axisAngle2D.m │ │ │ │ ├── eigenvector_gallery.m │ │ │ │ ├── eigenvector_gallery_sym.m │ │ │ │ ├── svd_rv.m │ │ │ │ └── vec.m │ │ ├── 3D │ │ │ ├── ARAP │ │ │ │ ├── ARAP_Hessian.m │ │ │ │ ├── ARAP_Hessian_sym.m │ │ │ │ ├── ARAP_PK1.m │ │ │ │ └── ARAP_Psi.m │ │ │ ├── Corotational │ │ │ │ ├── Corotational_Hessian.m │ │ │ │ ├── Corotational_Hessian_sym.m │ │ │ │ ├── Corotational_PK1.m │ │ │ │ └── Corotational_Psi.m │ │ │ ├── Symmetric_ARAP │ │ │ │ ├── Symmetric_ARAP_Hessian.m │ │ │ │ ├── Symmetric_ARAP_Hessian_sym.m │ │ │ │ ├── Symmetric_ARAP_PK1.m │ │ │ │ └── Symmetric_ARAP_Psi.m │ │ │ ├── Symmetric_Dirichlet │ │ │ │ ├── Symmetric_Dirichlet_Hessian.m │ │ │ │ ├── Symmetric_Dirichlet_Hessian_sym.m │ │ │ │ ├── Symmetric_Dirichlet_PK1.m │ │ │ │ └── Symmetric_Dirichlet_Psi.m │ │ │ ├── Verify_3D.m │ │ │ ├── Verify_ARAP.m │ │ │ ├── Verify_Corotational.m │ │ │ ├── Verify_Symmetric_ARAP.m │ │ │ ├── Verify_Symmetric_Dirichlet.m │ │ │ └── util │ │ │ │ ├── DFDF.m │ │ │ │ ├── DJDF.m │ │ │ │ ├── DJDF_sym.m │ │ │ │ ├── Get_Analytic_Eigensystem.m │ │ │ │ ├── HessianJ.m │ │ │ │ ├── IIC_Hessian.m │ │ │ │ ├── IIC_Hessian_sym.m │ │ │ │ ├── IIC_Star_Hessian.m │ │ │ │ ├── IIC_Star_Hessian_sym.m │ │ │ │ ├── Verify_Eigenpair.m │ │ │ │ ├── Verify_Hessian.m │ │ │ │ ├── Verify_PK1.m │ │ │ │ ├── axisAngle.m │ │ │ │ ├── eigenvector_gallery_sym.m │ │ │ │ ├── svd_rv.m │ │ │ │ └── vec.m │ │ ├── LICENSE.txt │ │ └── README.txt │ └── __MACOSX │ │ ├── ._Matlab │ │ └── Matlab │ │ ├── ._2D │ │ ├── ._3D │ │ ├── ._LICENSE.txt │ │ ├── ._README.txt │ │ ├── 2D │ │ ├── ._ARAP │ │ ├── ._Corotational │ │ ├── ._Get_Analytic_Eigensystem.m │ │ ├── ._Symmetric_ARAP │ │ ├── ._Symmetric_Dirichlet │ │ ├── ._Verify_2D.m │ │ ├── ._Verify_ARAP.m │ │ ├── ._Verify_Corotational.m │ │ ├── ._Verify_Symmetric_ARAP.m │ │ ├── ._Verify_Symmetric_Dirichlet.m │ │ ├── ._util │ │ ├── ARAP │ │ │ ├── ._ARAP_Hessian.m │ │ │ ├── ._ARAP_Hessian_sym.m │ │ │ ├── ._ARAP_PK1.m │ │ │ └── ._ARAP_Psi.m │ │ ├── Corotational │ │ │ ├── ._Corotational_Hessian.m │ │ │ ├── ._Corotational_Hessian_sym.m │ │ │ ├── ._Corotational_PK1.m │ │ │ └── ._Corotational_Psi.m │ │ ├── Symmetric_ARAP │ │ │ ├── ._Symmetric_ARAP_Hessian.m │ │ │ ├── ._Symmetric_ARAP_Hessian_sym.m │ │ │ ├── ._Symmetric_ARAP_PK1.m │ │ │ └── ._Symmetric_ARAP_Psi.m │ │ ├── Symmetric_Dirichlet │ │ │ ├── ._Symmetric_Dirichlet_Hessian.m │ │ │ ├── ._Symmetric_Dirichlet_Hessian_sym.m │ │ │ ├── ._Symmetric_Dirichlet_PK1.m │ │ │ └── ._Symmetric_Dirichlet_Psi.m │ │ └── util │ │ │ ├── ._DJDF.m │ │ │ ├── ._Get_Analytic_Eigensystem.m │ │ │ ├── ._Verify_Eigenpair.m │ │ │ ├── ._Verify_Hessian.m │ │ │ ├── ._Verify_PK1.m │ │ │ ├── ._axisAngle2D.m │ │ │ ├── ._eigenvector_gallery.m │ │ │ ├── ._eigenvector_gallery_sym.m │ │ │ ├── ._svd_rv.m │ │ │ └── ._vec.m │ │ └── 3D │ │ ├── ._ARAP │ │ ├── ._Corotational │ │ ├── ._Symmetric_ARAP │ │ ├── ._Symmetric_Dirichlet │ │ ├── ._Verify_3D.m │ │ ├── ._Verify_ARAP.m │ │ ├── ._Verify_Corotational.m │ │ ├── ._Verify_Symmetric_ARAP.m │ │ ├── ._Verify_Symmetric_Dirichlet.m │ │ ├── ._util │ │ ├── ARAP │ │ ├── ._ARAP_Hessian.m │ │ ├── ._ARAP_Hessian_sym.m │ │ ├── ._ARAP_PK1.m │ │ └── ._ARAP_Psi.m │ │ ├── Corotational │ │ ├── ._Corotational_Hessian.m │ │ ├── ._Corotational_Hessian_sym.m │ │ ├── ._Corotational_PK1.m │ │ └── ._Corotational_Psi.m │ │ ├── Symmetric_ARAP │ │ ├── ._Symmetric_ARAP_Hessian.m │ │ ├── ._Symmetric_ARAP_Hessian_sym.m │ │ ├── ._Symmetric_ARAP_PK1.m │ │ └── ._Symmetric_ARAP_Psi.m │ │ ├── Symmetric_Dirichlet │ │ ├── ._Symmetric_Dirichlet_Hessian.m │ │ ├── ._Symmetric_Dirichlet_Hessian_sym.m │ │ ├── ._Symmetric_Dirichlet_PK1.m │ │ └── ._Symmetric_Dirichlet_Psi.m │ │ └── util │ │ ├── ._DFDF.m │ │ ├── ._DJDF.m │ │ ├── ._DJDF_sym.m │ │ ├── ._Get_Analytic_Eigensystem.m │ │ ├── ._HessianJ.m │ │ ├── ._IIC_Hessian.m │ │ ├── ._IIC_Hessian_sym.m │ │ ├── ._IIC_Star_Hessian.m │ │ ├── ._IIC_Star_Hessian_sym.m │ │ ├── ._Verify_Eigenpair.m │ │ ├── ._Verify_Hessian.m │ │ ├── ._Verify_PK1.m │ │ ├── ._axisAngle.m │ │ ├── ._eigenvector_gallery_sym.m │ │ ├── ._svd_rv.m │ │ └── ._vec.m ├── Practicalities │ ├── ARAP_Hessian.m │ ├── ARAP_Hessian_Filtered.m │ ├── DRDF_Clean_2D.m │ ├── DRDF_Clean_3D.m │ ├── DRDF_Column.m │ ├── DRDF_Horrible.m │ ├── Get_ARAP_System.m │ ├── Get_Analytic_Anisotropic_Eigenvalues.m │ ├── Get_Analytic_Eigensystem.m │ ├── Get_Analytic_Eigenvalues.m │ ├── Get_Anisotropic_Systems.m │ ├── Get_SNH_System.m │ ├── Get_StVK_System.m │ ├── Get_Stretching_System.m │ ├── HandleContinuousCollisions.m │ ├── I1_Horrible_Hessian.m │ ├── InFaceRegion.m │ ├── PFPx.cpp │ ├── Simplify_Invariants.m │ ├── __MACOSX │ │ ├── ._ARAP_Hessian.m │ │ ├── ._ARAP_Hessian_Filtered.m │ │ ├── ._DRDF_Clean_2D.m │ │ ├── ._DRDF_Clean_3D.m │ │ ├── ._DRDF_Column.m │ │ ├── ._DRDF_Horrible.m │ │ ├── ._Get_ARAP_System.m │ │ ├── ._Get_Analytic_Anisotropic_Eigenvalues.m │ │ ├── ._Get_Analytic_Eigensystem.m │ │ ├── ._Get_Anisotropic_Systems.m │ │ ├── ._Get_SNH_System.m │ │ ├── ._Get_StVK_System.m │ │ ├── ._Get_Stretching_System.m │ │ ├── ._PFPx.cpp │ │ ├── ._eigenvector_gallery_sym.m │ │ ├── ._experimenting.m │ │ ├── ._gradientJ.m │ │ ├── ._svd_rv.m │ │ └── ._vec.m │ ├── cube_cache.cpp │ ├── cube_shape_derivative.cpp │ ├── eigenvector_gallery_sym.m │ ├── experimenting.m │ ├── flatten.cpp │ ├── gradientJ.m │ ├── hessianJ.m │ ├── localPairToArrayIndex.m │ ├── polar_decomposition_rv.m │ ├── svd_rv.m │ └── vec.m ├── anisotropicHyperelasticity │ ├── __MACOSX │ │ ├── ._matlab_verify │ │ └── matlab_verify │ │ │ ├── ._.DS_Store │ │ │ ├── ._.Verify_AStVK.m.un~ │ │ │ ├── ._.Verify_I5.m.un~ │ │ │ ├── ._I5 │ │ │ ├── ._LICENSE.txt │ │ │ ├── ._README.txt │ │ │ ├── ._Verify_I5.m │ │ │ ├── ._util │ │ │ ├── I5 │ │ │ ├── ._.DS_Store │ │ │ ├── ._.I5_Hessian.m.un~ │ │ │ ├── ._.I5_Hessian_sym.m.un~ │ │ │ ├── ._.I5_PK1.m.un~ │ │ │ ├── ._.I5_Psi.m.un~ │ │ │ ├── ._.I5_Sandbox.m.un~ │ │ │ ├── ._.Verify_I5_Hessian.m.un~ │ │ │ ├── ._.Verify_I5_PK1.m.un~ │ │ │ ├── ._I5_Hessian.m │ │ │ ├── ._I5_Hessian_sym.m │ │ │ ├── ._I5_PK1.m │ │ │ └── ._I5_Psi.m │ │ │ └── util │ │ │ ├── ._.DS_Store │ │ │ ├── ._.Verify_Anisotropic_Hessian.m.un~ │ │ │ ├── ._.Verify_Eigenpair.m.un~ │ │ │ ├── ._.svd_rv.m.un~ │ │ │ ├── ._Verify_Anisotropic_Hessian.m │ │ │ ├── ._Verify_Anisotropic_PK1.m │ │ │ ├── ._Verify_Eigenpair.m │ │ │ ├── ._axisAngle.m │ │ │ ├── ._svd_rv.m │ │ │ └── ._vec.m │ ├── matlab_verify │ │ ├── .DS_Store │ │ ├── .Verify_AStVK.m.un~ │ │ ├── .Verify_I5.m.un~ │ │ ├── I5 │ │ │ ├── .DS_Store │ │ │ ├── .I5_Hessian.m.un~ │ │ │ ├── .I5_Hessian_sym.m.un~ │ │ │ ├── .I5_PK1.m.un~ │ │ │ ├── .I5_Psi.m.un~ │ │ │ ├── .I5_Sandbox.m.un~ │ │ │ ├── .Verify_I5_Hessian.m.un~ │ │ │ ├── .Verify_I5_PK1.m.un~ │ │ │ ├── I5_Hessian.m │ │ │ ├── I5_Hessian_sym.m │ │ │ ├── I5_PK1.m │ │ │ └── I5_Psi.m │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── Verify_I5.m │ │ └── util │ │ │ ├── .DS_Store │ │ │ ├── .Verify_Anisotropic_Hessian.m.un~ │ │ │ ├── .Verify_Eigenpair.m.un~ │ │ │ ├── .svd_rv.m.un~ │ │ │ ├── Verify_Anisotropic_Hessian.m │ │ │ ├── Verify_Anisotropic_PK1.m │ │ │ ├── Verify_Eigenpair.m │ │ │ ├── axisAngle.m │ │ │ ├── svd_rv.m │ │ │ └── vec.m │ └── verifyPK1.py ├── boundedBiharmonic │ ├── README │ ├── alligator-skeleton-cage-points.tgf │ ├── alligator.obj │ ├── alligator.png │ ├── alligator_demo.m │ ├── avgedge.m │ ├── axisangle2quat.m │ ├── axisanglebetween.m │ ├── barycenter.m │ ├── bbw_demo.m │ ├── biharmonic_bounded.m │ ├── boundary_conditions.m │ ├── collapse_close_points.m │ ├── cotmatrix.m │ ├── cotmatrix3.m │ ├── doublearea.m │ ├── dualquatlbs.m │ ├── edges.m │ ├── faces_in_polygon.m │ ├── lbs.m │ ├── limit_faces.m │ ├── load_mesh.m │ ├── mask2poly.m │ ├── massmatrix.m │ ├── massmatrix3.m │ ├── massmatrix_intrinsic.m │ ├── normalizerow.m │ ├── normrow.m │ ├── ordered_outline.m │ ├── outline.m │ ├── png2mesh.m │ ├── png2poly.m │ ├── point_inside_polygon.m │ ├── poly2VEH.m │ ├── project_to_lines.m │ ├── pseudoedge_dof.m │ ├── quat2mat.m │ ├── quatmultiply.m │ ├── quattrans2udq.m │ ├── readEDGE.m │ ├── readELE.m │ ├── readNODE.m │ ├── readOBJ.m │ ├── readOBJfast.m │ ├── readOFF.m │ ├── readTGF.m │ ├── remesh_at_handles.m │ ├── sample_edges.m │ ├── simple_deform.m │ ├── skinning_transformations.m │ ├── snap_points_to_close_edges.m │ ├── stacktimes.m │ ├── tempprefix.m │ ├── tilefigs.m │ ├── triangle.m │ ├── tsurf.m │ ├── upsample.m │ ├── woody.obj │ ├── woody.png │ ├── woody.poly │ ├── writeELE.m │ ├── writeNODE.m │ └── writePOLY.m ├── cubica │ └── cubica-1.0 │ │ ├── .DS_Store │ │ ├── Makefile │ │ ├── SETTINGS.h │ │ ├── cfg │ │ ├── .DS_Store │ │ ├── arruda-boyce.stiff.material │ │ ├── bunny.cfg │ │ ├── head.regression.cfg │ │ ├── ode.armadillo.cfg │ │ ├── ode.armadillo.medium.cfg │ │ ├── ode.armadillo.small.cfg │ │ └── stvk.material │ │ ├── data │ │ ├── .DS_Store │ │ ├── armadillo.poses │ │ │ ├── ode.motion.0000.skeleton │ │ │ ├── ode.motion.0001.skeleton │ │ │ ├── ode.motion.0002.skeleton │ │ │ ├── ode.motion.0003.skeleton │ │ │ ├── ode.motion.0004.skeleton │ │ │ ├── ode.motion.0005.skeleton │ │ │ ├── ode.motion.0006.skeleton │ │ │ ├── ode.motion.0007.skeleton │ │ │ ├── ode.motion.0008.skeleton │ │ │ ├── ode.motion.0009.skeleton │ │ │ ├── ode.motion.0010.skeleton │ │ │ ├── ode.motion.0011.skeleton │ │ │ ├── ode.motion.0012.skeleton │ │ │ ├── ode.motion.0013.skeleton │ │ │ ├── ode.motion.0014.skeleton │ │ │ ├── ode.motion.0015.skeleton │ │ │ ├── ode.motion.0016.skeleton │ │ │ ├── ode.motion.0017.skeleton │ │ │ ├── ode.motion.0018.skeleton │ │ │ ├── ode.motion.0019.skeleton │ │ │ ├── ode.motion.0020.skeleton │ │ │ ├── ode.motion.0021.skeleton │ │ │ ├── ode.motion.0022.skeleton │ │ │ ├── ode.motion.0023.skeleton │ │ │ ├── ode.motion.0024.skeleton │ │ │ ├── ode.motion.0025.skeleton │ │ │ ├── ode.motion.0026.skeleton │ │ │ ├── ode.motion.0027.skeleton │ │ │ ├── ode.motion.0028.skeleton │ │ │ ├── ode.motion.0029.skeleton │ │ │ ├── ode.motion.0030.skeleton │ │ │ ├── ode.motion.0031.skeleton │ │ │ ├── ode.motion.0032.skeleton │ │ │ ├── ode.motion.0033.skeleton │ │ │ ├── ode.motion.0034.skeleton │ │ │ ├── ode.motion.0035.skeleton │ │ │ ├── ode.motion.0036.skeleton │ │ │ ├── ode.motion.0037.skeleton │ │ │ ├── ode.motion.0038.skeleton │ │ │ ├── ode.motion.0039.skeleton │ │ │ ├── ode.motion.0040.skeleton │ │ │ ├── ode.motion.0041.skeleton │ │ │ ├── ode.motion.0042.skeleton │ │ │ ├── ode.motion.0043.skeleton │ │ │ ├── ode.motion.0044.skeleton │ │ │ ├── ode.motion.0045.skeleton │ │ │ ├── ode.motion.0046.skeleton │ │ │ ├── ode.motion.0047.skeleton │ │ │ ├── ode.motion.0048.skeleton │ │ │ ├── ode.motion.0049.skeleton │ │ │ ├── ode.motion.0050.skeleton │ │ │ ├── ode.motion.0051.skeleton │ │ │ ├── ode.motion.0052.skeleton │ │ │ ├── ode.motion.0053.skeleton │ │ │ ├── ode.motion.0054.skeleton │ │ │ ├── ode.motion.0055.skeleton │ │ │ ├── ode.motion.0056.skeleton │ │ │ ├── ode.motion.0057.skeleton │ │ │ ├── ode.motion.0058.skeleton │ │ │ ├── ode.motion.0059.skeleton │ │ │ ├── ode.motion.0060.skeleton │ │ │ ├── ode.motion.0061.skeleton │ │ │ ├── ode.motion.0062.skeleton │ │ │ ├── ode.motion.0063.skeleton │ │ │ ├── ode.motion.0064.skeleton │ │ │ ├── ode.motion.0065.skeleton │ │ │ ├── ode.motion.0066.skeleton │ │ │ ├── ode.motion.0067.skeleton │ │ │ ├── ode.motion.0068.skeleton │ │ │ ├── ode.motion.0069.skeleton │ │ │ ├── ode.motion.0070.skeleton │ │ │ ├── ode.motion.0071.skeleton │ │ │ ├── ode.motion.0072.skeleton │ │ │ ├── ode.motion.0073.skeleton │ │ │ ├── ode.motion.0074.skeleton │ │ │ ├── ode.motion.0075.skeleton │ │ │ ├── ode.motion.0076.skeleton │ │ │ ├── ode.motion.0077.skeleton │ │ │ ├── ode.motion.0078.skeleton │ │ │ ├── ode.motion.0079.skeleton │ │ │ ├── ode.motion.0080.skeleton │ │ │ ├── ode.motion.0081.skeleton │ │ │ ├── ode.motion.0082.skeleton │ │ │ ├── ode.motion.0083.skeleton │ │ │ ├── ode.motion.0084.skeleton │ │ │ ├── ode.motion.0085.skeleton │ │ │ ├── ode.motion.0086.skeleton │ │ │ ├── ode.motion.0087.skeleton │ │ │ ├── ode.motion.0088.skeleton │ │ │ ├── ode.motion.0089.skeleton │ │ │ ├── ode.motion.0090.skeleton │ │ │ ├── ode.motion.0091.skeleton │ │ │ ├── ode.motion.0092.skeleton │ │ │ ├── ode.motion.0093.skeleton │ │ │ ├── ode.motion.0094.skeleton │ │ │ ├── ode.motion.0095.skeleton │ │ │ ├── ode.motion.0096.skeleton │ │ │ ├── ode.motion.0097.skeleton │ │ │ ├── ode.motion.0098.skeleton │ │ │ └── ode.motion.0099.skeleton │ │ └── armadillo.ragdoll.teeth │ │ │ ├── ode.motion.0000.skeleton │ │ │ ├── ode.motion.0001.skeleton │ │ │ ├── ode.motion.0002.skeleton │ │ │ ├── ode.motion.0003.skeleton │ │ │ ├── ode.motion.0004.skeleton │ │ │ ├── ode.motion.0005.skeleton │ │ │ ├── ode.motion.0006.skeleton │ │ │ ├── ode.motion.0007.skeleton │ │ │ ├── ode.motion.0008.skeleton │ │ │ ├── ode.motion.0009.skeleton │ │ │ ├── ode.motion.0010.skeleton │ │ │ ├── ode.motion.0011.skeleton │ │ │ ├── ode.motion.0012.skeleton │ │ │ ├── ode.motion.0013.skeleton │ │ │ ├── ode.motion.0014.skeleton │ │ │ ├── ode.motion.0015.skeleton │ │ │ ├── ode.motion.0016.skeleton │ │ │ ├── ode.motion.0017.skeleton │ │ │ ├── ode.motion.0018.skeleton │ │ │ ├── ode.motion.0019.skeleton │ │ │ ├── ode.motion.0020.skeleton │ │ │ ├── ode.motion.0021.skeleton │ │ │ ├── ode.motion.0022.skeleton │ │ │ ├── ode.motion.0023.skeleton │ │ │ ├── ode.motion.0024.skeleton │ │ │ ├── ode.motion.0025.skeleton │ │ │ ├── ode.motion.0026.skeleton │ │ │ ├── ode.motion.0027.skeleton │ │ │ ├── ode.motion.0028.skeleton │ │ │ ├── ode.motion.0029.skeleton │ │ │ ├── ode.motion.0030.skeleton │ │ │ ├── ode.motion.0031.skeleton │ │ │ ├── ode.motion.0032.skeleton │ │ │ ├── ode.motion.0033.skeleton │ │ │ ├── ode.motion.0034.skeleton │ │ │ ├── ode.motion.0035.skeleton │ │ │ ├── ode.motion.0036.skeleton │ │ │ ├── ode.motion.0037.skeleton │ │ │ ├── ode.motion.0038.skeleton │ │ │ ├── ode.motion.0039.skeleton │ │ │ ├── ode.motion.0040.skeleton │ │ │ ├── ode.motion.0041.skeleton │ │ │ ├── ode.motion.0042.skeleton │ │ │ ├── ode.motion.0043.skeleton │ │ │ ├── ode.motion.0044.skeleton │ │ │ ├── ode.motion.0045.skeleton │ │ │ ├── ode.motion.0046.skeleton │ │ │ ├── ode.motion.0047.skeleton │ │ │ ├── ode.motion.0048.skeleton │ │ │ ├── ode.motion.0049.skeleton │ │ │ ├── ode.motion.0050.skeleton │ │ │ ├── ode.motion.0051.skeleton │ │ │ ├── ode.motion.0052.skeleton │ │ │ ├── ode.motion.0053.skeleton │ │ │ ├── ode.motion.0054.skeleton │ │ │ ├── ode.motion.0055.skeleton │ │ │ ├── ode.motion.0056.skeleton │ │ │ ├── ode.motion.0057.skeleton │ │ │ ├── ode.motion.0058.skeleton │ │ │ ├── ode.motion.0059.skeleton │ │ │ ├── ode.motion.0060.skeleton │ │ │ ├── ode.motion.0061.skeleton │ │ │ ├── ode.motion.0062.skeleton │ │ │ ├── ode.motion.0063.skeleton │ │ │ ├── ode.motion.0064.skeleton │ │ │ ├── ode.motion.0065.skeleton │ │ │ ├── ode.motion.0066.skeleton │ │ │ ├── ode.motion.0067.skeleton │ │ │ ├── ode.motion.0068.skeleton │ │ │ ├── ode.motion.0069.skeleton │ │ │ ├── ode.motion.0070.skeleton │ │ │ ├── ode.motion.0071.skeleton │ │ │ ├── ode.motion.0072.skeleton │ │ │ ├── ode.motion.0073.skeleton │ │ │ ├── ode.motion.0074.skeleton │ │ │ ├── ode.motion.0075.skeleton │ │ │ ├── ode.motion.0076.skeleton │ │ │ ├── ode.motion.0077.skeleton │ │ │ ├── ode.motion.0078.skeleton │ │ │ ├── ode.motion.0079.skeleton │ │ │ ├── ode.motion.0080.skeleton │ │ │ ├── ode.motion.0081.skeleton │ │ │ ├── ode.motion.0082.skeleton │ │ │ ├── ode.motion.0083.skeleton │ │ │ ├── ode.motion.0084.skeleton │ │ │ ├── ode.motion.0085.skeleton │ │ │ ├── ode.motion.0086.skeleton │ │ │ ├── ode.motion.0087.skeleton │ │ │ ├── ode.motion.0088.skeleton │ │ │ ├── ode.motion.0089.skeleton │ │ │ ├── ode.motion.0090.skeleton │ │ │ ├── ode.motion.0091.skeleton │ │ │ ├── ode.motion.0092.skeleton │ │ │ ├── ode.motion.0093.skeleton │ │ │ ├── ode.motion.0094.skeleton │ │ │ ├── ode.motion.0095.skeleton │ │ │ ├── ode.motion.0096.skeleton │ │ │ ├── ode.motion.0097.skeleton │ │ │ ├── ode.motion.0098.skeleton │ │ │ ├── ode.motion.0099.skeleton │ │ │ ├── ode.motion.0100.skeleton │ │ │ ├── ode.motion.0101.skeleton │ │ │ ├── ode.motion.0102.skeleton │ │ │ ├── ode.motion.0103.skeleton │ │ │ ├── ode.motion.0104.skeleton │ │ │ ├── ode.motion.0105.skeleton │ │ │ ├── ode.motion.0106.skeleton │ │ │ ├── ode.motion.0107.skeleton │ │ │ ├── ode.motion.0108.skeleton │ │ │ ├── ode.motion.0109.skeleton │ │ │ ├── ode.motion.0110.skeleton │ │ │ ├── ode.motion.0111.skeleton │ │ │ ├── ode.motion.0112.skeleton │ │ │ ├── ode.motion.0113.skeleton │ │ │ ├── ode.motion.0114.skeleton │ │ │ ├── ode.motion.0115.skeleton │ │ │ ├── ode.motion.0116.skeleton │ │ │ ├── ode.motion.0117.skeleton │ │ │ ├── ode.motion.0118.skeleton │ │ │ ├── ode.motion.0119.skeleton │ │ │ ├── ode.motion.0120.skeleton │ │ │ ├── ode.motion.0121.skeleton │ │ │ ├── ode.motion.0122.skeleton │ │ │ ├── ode.motion.0123.skeleton │ │ │ ├── ode.motion.0124.skeleton │ │ │ ├── ode.motion.0125.skeleton │ │ │ ├── ode.motion.0126.skeleton │ │ │ ├── ode.motion.0127.skeleton │ │ │ ├── ode.motion.0128.skeleton │ │ │ ├── ode.motion.0129.skeleton │ │ │ ├── ode.motion.0130.skeleton │ │ │ ├── ode.motion.0131.skeleton │ │ │ ├── ode.motion.0132.skeleton │ │ │ ├── ode.motion.0133.skeleton │ │ │ ├── ode.motion.0134.skeleton │ │ │ ├── ode.motion.0135.skeleton │ │ │ ├── ode.motion.0136.skeleton │ │ │ ├── ode.motion.0137.skeleton │ │ │ ├── ode.motion.0138.skeleton │ │ │ ├── ode.motion.0139.skeleton │ │ │ ├── ode.motion.0140.skeleton │ │ │ ├── ode.motion.0141.skeleton │ │ │ ├── ode.motion.0142.skeleton │ │ │ ├── ode.motion.0143.skeleton │ │ │ ├── ode.motion.0144.skeleton │ │ │ ├── ode.motion.0145.skeleton │ │ │ ├── ode.motion.0146.skeleton │ │ │ ├── ode.motion.0147.skeleton │ │ │ ├── ode.motion.0148.skeleton │ │ │ ├── ode.motion.0149.skeleton │ │ │ ├── ode.motion.0150.skeleton │ │ │ ├── ode.motion.0151.skeleton │ │ │ ├── ode.motion.0152.skeleton │ │ │ ├── ode.motion.0153.skeleton │ │ │ ├── ode.motion.0154.skeleton │ │ │ ├── ode.motion.0155.skeleton │ │ │ ├── ode.motion.0156.skeleton │ │ │ ├── ode.motion.0157.skeleton │ │ │ ├── ode.motion.0158.skeleton │ │ │ ├── ode.motion.0159.skeleton │ │ │ ├── ode.motion.0160.skeleton │ │ │ ├── ode.motion.0161.skeleton │ │ │ ├── ode.motion.0162.skeleton │ │ │ ├── ode.motion.0163.skeleton │ │ │ ├── ode.motion.0164.skeleton │ │ │ ├── ode.motion.0165.skeleton │ │ │ ├── ode.motion.0166.skeleton │ │ │ ├── ode.motion.0167.skeleton │ │ │ ├── ode.motion.0168.skeleton │ │ │ ├── ode.motion.0169.skeleton │ │ │ ├── ode.motion.0170.skeleton │ │ │ ├── ode.motion.0171.skeleton │ │ │ ├── ode.motion.0172.skeleton │ │ │ ├── ode.motion.0173.skeleton │ │ │ ├── ode.motion.0174.skeleton │ │ │ ├── ode.motion.0175.skeleton │ │ │ ├── ode.motion.0176.skeleton │ │ │ ├── ode.motion.0177.skeleton │ │ │ ├── ode.motion.0178.skeleton │ │ │ ├── ode.motion.0179.skeleton │ │ │ ├── ode.motion.0180.skeleton │ │ │ ├── ode.motion.0181.skeleton │ │ │ ├── ode.motion.0182.skeleton │ │ │ ├── ode.motion.0183.skeleton │ │ │ ├── ode.motion.0184.skeleton │ │ │ ├── ode.motion.0185.skeleton │ │ │ ├── ode.motion.0186.skeleton │ │ │ ├── ode.motion.0187.skeleton │ │ │ ├── ode.motion.0188.skeleton │ │ │ ├── ode.motion.0189.skeleton │ │ │ ├── ode.motion.0190.skeleton │ │ │ ├── ode.motion.0191.skeleton │ │ │ ├── ode.motion.0192.skeleton │ │ │ ├── ode.motion.0193.skeleton │ │ │ ├── ode.motion.0194.skeleton │ │ │ ├── ode.motion.0195.skeleton │ │ │ ├── ode.motion.0196.skeleton │ │ │ ├── ode.motion.0197.skeleton │ │ │ ├── ode.motion.0198.skeleton │ │ │ ├── ode.motion.0199.skeleton │ │ │ ├── ode.motion.0200.skeleton │ │ │ ├── ode.motion.0201.skeleton │ │ │ ├── ode.motion.0202.skeleton │ │ │ ├── ode.motion.0203.skeleton │ │ │ ├── ode.motion.0204.skeleton │ │ │ ├── ode.motion.0205.skeleton │ │ │ ├── ode.motion.0206.skeleton │ │ │ ├── ode.motion.0207.skeleton │ │ │ ├── ode.motion.0208.skeleton │ │ │ ├── ode.motion.0209.skeleton │ │ │ ├── ode.motion.0210.skeleton │ │ │ ├── ode.motion.0211.skeleton │ │ │ ├── ode.motion.0212.skeleton │ │ │ ├── ode.motion.0213.skeleton │ │ │ ├── ode.motion.0214.skeleton │ │ │ ├── ode.motion.0215.skeleton │ │ │ ├── ode.motion.0216.skeleton │ │ │ ├── ode.motion.0217.skeleton │ │ │ ├── ode.motion.0218.skeleton │ │ │ ├── ode.motion.0219.skeleton │ │ │ ├── ode.motion.0220.skeleton │ │ │ ├── ode.motion.0221.skeleton │ │ │ ├── ode.motion.0222.skeleton │ │ │ ├── ode.motion.0223.skeleton │ │ │ ├── ode.motion.0224.skeleton │ │ │ ├── ode.motion.0225.skeleton │ │ │ ├── ode.motion.0226.skeleton │ │ │ ├── ode.motion.0227.skeleton │ │ │ ├── ode.motion.0228.skeleton │ │ │ ├── ode.motion.0229.skeleton │ │ │ ├── ode.motion.0230.skeleton │ │ │ ├── ode.motion.0231.skeleton │ │ │ ├── ode.motion.0232.skeleton │ │ │ ├── ode.motion.0233.skeleton │ │ │ ├── ode.motion.0234.skeleton │ │ │ ├── ode.motion.0235.skeleton │ │ │ ├── ode.motion.0236.skeleton │ │ │ ├── ode.motion.0237.skeleton │ │ │ ├── ode.motion.0238.skeleton │ │ │ ├── ode.motion.0239.skeleton │ │ │ ├── ode.motion.0240.skeleton │ │ │ ├── ode.motion.0241.skeleton │ │ │ ├── ode.motion.0242.skeleton │ │ │ ├── ode.motion.0243.skeleton │ │ │ ├── ode.motion.0244.skeleton │ │ │ ├── ode.motion.0245.skeleton │ │ │ ├── ode.motion.0246.skeleton │ │ │ ├── ode.motion.0247.skeleton │ │ │ ├── ode.motion.0248.skeleton │ │ │ ├── ode.motion.0249.skeleton │ │ │ ├── ode.motion.0250.skeleton │ │ │ ├── ode.motion.0251.skeleton │ │ │ ├── ode.motion.0252.skeleton │ │ │ ├── ode.motion.0253.skeleton │ │ │ ├── ode.motion.0254.skeleton │ │ │ ├── ode.motion.0255.skeleton │ │ │ ├── ode.motion.0256.skeleton │ │ │ ├── ode.motion.0257.skeleton │ │ │ ├── ode.motion.0258.skeleton │ │ │ ├── ode.motion.0259.skeleton │ │ │ ├── ode.motion.0260.skeleton │ │ │ ├── ode.motion.0261.skeleton │ │ │ ├── ode.motion.0262.skeleton │ │ │ ├── ode.motion.0263.skeleton │ │ │ ├── ode.motion.0264.skeleton │ │ │ ├── ode.motion.0265.skeleton │ │ │ ├── ode.motion.0266.skeleton │ │ │ ├── ode.motion.0267.skeleton │ │ │ ├── ode.motion.0268.skeleton │ │ │ ├── ode.motion.0269.skeleton │ │ │ ├── ode.motion.0270.skeleton │ │ │ ├── ode.motion.0271.skeleton │ │ │ ├── ode.motion.0272.skeleton │ │ │ ├── ode.motion.0273.skeleton │ │ │ ├── ode.motion.0274.skeleton │ │ │ ├── ode.motion.0275.skeleton │ │ │ ├── ode.motion.0276.skeleton │ │ │ ├── ode.motion.0277.skeleton │ │ │ ├── ode.motion.0278.skeleton │ │ │ ├── ode.motion.0279.skeleton │ │ │ ├── ode.motion.0280.skeleton │ │ │ ├── ode.motion.0281.skeleton │ │ │ ├── ode.motion.0282.skeleton │ │ │ ├── ode.motion.0283.skeleton │ │ │ ├── ode.motion.0284.skeleton │ │ │ ├── ode.motion.0285.skeleton │ │ │ ├── ode.motion.0286.skeleton │ │ │ ├── ode.motion.0287.skeleton │ │ │ ├── ode.motion.0288.skeleton │ │ │ ├── ode.motion.0289.skeleton │ │ │ ├── ode.motion.0290.skeleton │ │ │ ├── ode.motion.0291.skeleton │ │ │ ├── ode.motion.0292.skeleton │ │ │ ├── ode.motion.0293.skeleton │ │ │ ├── ode.motion.0294.skeleton │ │ │ ├── ode.motion.0295.skeleton │ │ │ ├── ode.motion.0296.skeleton │ │ │ ├── ode.motion.0297.skeleton │ │ │ ├── ode.motion.0298.skeleton │ │ │ ├── ode.motion.0299.skeleton │ │ │ ├── ode.motion.0300.skeleton │ │ │ ├── ode.motion.0301.skeleton │ │ │ ├── ode.motion.0302.skeleton │ │ │ ├── ode.motion.0303.skeleton │ │ │ ├── ode.motion.0304.skeleton │ │ │ ├── ode.motion.0305.skeleton │ │ │ ├── ode.motion.0306.skeleton │ │ │ ├── ode.motion.0307.skeleton │ │ │ ├── ode.motion.0308.skeleton │ │ │ ├── ode.motion.0309.skeleton │ │ │ ├── ode.motion.0310.skeleton │ │ │ ├── ode.motion.0311.skeleton │ │ │ ├── ode.motion.0312.skeleton │ │ │ ├── ode.motion.0313.skeleton │ │ │ ├── ode.motion.0314.skeleton │ │ │ ├── ode.motion.0315.skeleton │ │ │ ├── ode.motion.0316.skeleton │ │ │ ├── ode.motion.0317.skeleton │ │ │ ├── ode.motion.0318.skeleton │ │ │ ├── ode.motion.0319.skeleton │ │ │ ├── ode.motion.0320.skeleton │ │ │ ├── ode.motion.0321.skeleton │ │ │ ├── ode.motion.0322.skeleton │ │ │ ├── ode.motion.0323.skeleton │ │ │ ├── ode.motion.0324.skeleton │ │ │ ├── ode.motion.0325.skeleton │ │ │ ├── ode.motion.0326.skeleton │ │ │ ├── ode.motion.0327.skeleton │ │ │ ├── ode.motion.0328.skeleton │ │ │ ├── ode.motion.0329.skeleton │ │ │ ├── ode.motion.0330.skeleton │ │ │ ├── ode.motion.0331.skeleton │ │ │ ├── ode.motion.0332.skeleton │ │ │ ├── ode.motion.0333.skeleton │ │ │ ├── ode.motion.0334.skeleton │ │ │ ├── ode.motion.0335.skeleton │ │ │ ├── ode.motion.0336.skeleton │ │ │ ├── ode.motion.0337.skeleton │ │ │ ├── ode.motion.0338.skeleton │ │ │ ├── ode.motion.0339.skeleton │ │ │ ├── ode.motion.0340.skeleton │ │ │ ├── ode.motion.0341.skeleton │ │ │ ├── ode.motion.0342.skeleton │ │ │ ├── ode.motion.0343.skeleton │ │ │ ├── ode.motion.0344.skeleton │ │ │ ├── ode.motion.0345.skeleton │ │ │ ├── ode.motion.0346.skeleton │ │ │ ├── ode.motion.0347.skeleton │ │ │ ├── ode.motion.0348.skeleton │ │ │ ├── ode.motion.0349.skeleton │ │ │ ├── ode.motion.0350.skeleton │ │ │ ├── ode.motion.0351.skeleton │ │ │ ├── ode.motion.0352.skeleton │ │ │ ├── ode.motion.0353.skeleton │ │ │ ├── ode.motion.0354.skeleton │ │ │ ├── ode.motion.0355.skeleton │ │ │ ├── ode.motion.0356.skeleton │ │ │ ├── ode.motion.0357.skeleton │ │ │ ├── ode.motion.0358.skeleton │ │ │ ├── ode.motion.0359.skeleton │ │ │ ├── ode.motion.0360.skeleton │ │ │ ├── ode.motion.0361.skeleton │ │ │ ├── ode.motion.0362.skeleton │ │ │ ├── ode.motion.0363.skeleton │ │ │ ├── ode.motion.0364.skeleton │ │ │ ├── ode.motion.0365.skeleton │ │ │ ├── ode.motion.0366.skeleton │ │ │ ├── ode.motion.0367.skeleton │ │ │ ├── ode.motion.0368.skeleton │ │ │ ├── ode.motion.0369.skeleton │ │ │ ├── ode.motion.0370.skeleton │ │ │ ├── ode.motion.0371.skeleton │ │ │ ├── ode.motion.0372.skeleton │ │ │ ├── ode.motion.0373.skeleton │ │ │ ├── ode.motion.0374.skeleton │ │ │ ├── ode.motion.0375.skeleton │ │ │ ├── ode.motion.0376.skeleton │ │ │ ├── ode.motion.0377.skeleton │ │ │ ├── ode.motion.0378.skeleton │ │ │ ├── ode.motion.0379.skeleton │ │ │ ├── ode.motion.0380.skeleton │ │ │ ├── ode.motion.0381.skeleton │ │ │ ├── ode.motion.0382.skeleton │ │ │ ├── ode.motion.0383.skeleton │ │ │ ├── ode.motion.0384.skeleton │ │ │ ├── ode.motion.0385.skeleton │ │ │ ├── ode.motion.0386.skeleton │ │ │ ├── ode.motion.0387.skeleton │ │ │ ├── ode.motion.0388.skeleton │ │ │ ├── ode.motion.0389.skeleton │ │ │ ├── ode.motion.0390.skeleton │ │ │ ├── ode.motion.0391.skeleton │ │ │ ├── ode.motion.0392.skeleton │ │ │ ├── ode.motion.0393.skeleton │ │ │ ├── ode.motion.0394.skeleton │ │ │ ├── ode.motion.0395.skeleton │ │ │ ├── ode.motion.0396.skeleton │ │ │ ├── ode.motion.0397.skeleton │ │ │ ├── ode.motion.0398.skeleton │ │ │ ├── ode.motion.0399.skeleton │ │ │ ├── ode.motion.0400.skeleton │ │ │ ├── ode.motion.0401.skeleton │ │ │ ├── ode.motion.0402.skeleton │ │ │ ├── ode.motion.0403.skeleton │ │ │ ├── ode.motion.0404.skeleton │ │ │ ├── ode.motion.0405.skeleton │ │ │ ├── ode.motion.0406.skeleton │ │ │ ├── ode.motion.0407.skeleton │ │ │ ├── ode.motion.0408.skeleton │ │ │ ├── ode.motion.0409.skeleton │ │ │ ├── ode.motion.0410.skeleton │ │ │ ├── ode.motion.0411.skeleton │ │ │ ├── ode.motion.0412.skeleton │ │ │ ├── ode.motion.0413.skeleton │ │ │ ├── ode.motion.0414.skeleton │ │ │ ├── ode.motion.0415.skeleton │ │ │ ├── ode.motion.0416.skeleton │ │ │ ├── ode.motion.0417.skeleton │ │ │ ├── ode.motion.0418.skeleton │ │ │ ├── ode.motion.0419.skeleton │ │ │ ├── ode.motion.0420.skeleton │ │ │ ├── ode.motion.0421.skeleton │ │ │ ├── ode.motion.0422.skeleton │ │ │ ├── ode.motion.0423.skeleton │ │ │ ├── ode.motion.0424.skeleton │ │ │ ├── ode.motion.0425.skeleton │ │ │ ├── ode.motion.0426.skeleton │ │ │ ├── ode.motion.0427.skeleton │ │ │ ├── ode.motion.0428.skeleton │ │ │ ├── ode.motion.0429.skeleton │ │ │ ├── ode.motion.0430.skeleton │ │ │ ├── ode.motion.0431.skeleton │ │ │ ├── ode.motion.0432.skeleton │ │ │ ├── ode.motion.0433.skeleton │ │ │ ├── ode.motion.0434.skeleton │ │ │ ├── ode.motion.0435.skeleton │ │ │ ├── ode.motion.0436.skeleton │ │ │ ├── ode.motion.0437.skeleton │ │ │ ├── ode.motion.0438.skeleton │ │ │ ├── ode.motion.0439.skeleton │ │ │ ├── ode.motion.0440.skeleton │ │ │ ├── ode.motion.0441.skeleton │ │ │ ├── ode.motion.0442.skeleton │ │ │ ├── ode.motion.0443.skeleton │ │ │ ├── ode.motion.0444.skeleton │ │ │ ├── ode.motion.0445.skeleton │ │ │ ├── ode.motion.0446.skeleton │ │ │ ├── ode.motion.0447.skeleton │ │ │ ├── ode.motion.0448.skeleton │ │ │ ├── ode.motion.0449.skeleton │ │ │ ├── ode.motion.0450.skeleton │ │ │ ├── ode.motion.0451.skeleton │ │ │ ├── ode.motion.0452.skeleton │ │ │ ├── ode.motion.0453.skeleton │ │ │ ├── ode.motion.0454.skeleton │ │ │ ├── ode.motion.0455.skeleton │ │ │ ├── ode.motion.0456.skeleton │ │ │ ├── ode.motion.0457.skeleton │ │ │ ├── ode.motion.0458.skeleton │ │ │ ├── ode.motion.0459.skeleton │ │ │ ├── ode.motion.0460.skeleton │ │ │ ├── ode.motion.0461.skeleton │ │ │ ├── ode.motion.0462.skeleton │ │ │ ├── ode.motion.0463.skeleton │ │ │ ├── ode.motion.0464.skeleton │ │ │ ├── ode.motion.0465.skeleton │ │ │ ├── ode.motion.0466.skeleton │ │ │ ├── ode.motion.0467.skeleton │ │ │ ├── ode.motion.0468.skeleton │ │ │ ├── ode.motion.0469.skeleton │ │ │ ├── ode.motion.0470.skeleton │ │ │ ├── ode.motion.0471.skeleton │ │ │ ├── ode.motion.0472.skeleton │ │ │ ├── ode.motion.0473.skeleton │ │ │ ├── ode.motion.0474.skeleton │ │ │ ├── ode.motion.0475.skeleton │ │ │ ├── ode.motion.0476.skeleton │ │ │ ├── ode.motion.0477.skeleton │ │ │ ├── ode.motion.0478.skeleton │ │ │ ├── ode.motion.0479.skeleton │ │ │ ├── ode.motion.0480.skeleton │ │ │ ├── ode.motion.0481.skeleton │ │ │ ├── ode.motion.0482.skeleton │ │ │ ├── ode.motion.0483.skeleton │ │ │ ├── ode.motion.0484.skeleton │ │ │ ├── ode.motion.0485.skeleton │ │ │ ├── ode.motion.0486.skeleton │ │ │ ├── ode.motion.0487.skeleton │ │ │ ├── ode.motion.0488.skeleton │ │ │ ├── ode.motion.0489.skeleton │ │ │ ├── ode.motion.0490.skeleton │ │ │ ├── ode.motion.0491.skeleton │ │ │ ├── ode.motion.0492.skeleton │ │ │ ├── ode.motion.0493.skeleton │ │ │ ├── ode.motion.0494.skeleton │ │ │ ├── ode.motion.0495.skeleton │ │ │ ├── ode.motion.0496.skeleton │ │ │ ├── ode.motion.0497.skeleton │ │ │ ├── ode.motion.0498.skeleton │ │ │ ├── ode.motion.0499.skeleton │ │ │ ├── ode.motion.0500.skeleton │ │ │ ├── ode.motion.0501.skeleton │ │ │ ├── ode.motion.0502.skeleton │ │ │ ├── ode.motion.0503.skeleton │ │ │ ├── ode.motion.0504.skeleton │ │ │ ├── ode.motion.0505.skeleton │ │ │ ├── ode.motion.0506.skeleton │ │ │ ├── ode.motion.0507.skeleton │ │ │ ├── ode.motion.0508.skeleton │ │ │ ├── ode.motion.0509.skeleton │ │ │ ├── ode.motion.0510.skeleton │ │ │ ├── ode.motion.0511.skeleton │ │ │ ├── ode.motion.0512.skeleton │ │ │ ├── ode.motion.0513.skeleton │ │ │ ├── ode.motion.0514.skeleton │ │ │ ├── ode.motion.0515.skeleton │ │ │ ├── ode.motion.0516.skeleton │ │ │ ├── ode.motion.0517.skeleton │ │ │ ├── ode.motion.0518.skeleton │ │ │ ├── ode.motion.0519.skeleton │ │ │ ├── ode.motion.0520.skeleton │ │ │ ├── ode.motion.0521.skeleton │ │ │ ├── ode.motion.0522.skeleton │ │ │ ├── ode.motion.0523.skeleton │ │ │ ├── ode.motion.0524.skeleton │ │ │ ├── ode.motion.0525.skeleton │ │ │ ├── ode.motion.0526.skeleton │ │ │ ├── ode.motion.0527.skeleton │ │ │ ├── ode.motion.0528.skeleton │ │ │ ├── ode.motion.0529.skeleton │ │ │ ├── ode.motion.0530.skeleton │ │ │ ├── ode.motion.0531.skeleton │ │ │ ├── ode.motion.0532.skeleton │ │ │ ├── ode.motion.0533.skeleton │ │ │ ├── ode.motion.0534.skeleton │ │ │ ├── ode.motion.0535.skeleton │ │ │ ├── ode.motion.0536.skeleton │ │ │ ├── ode.motion.0537.skeleton │ │ │ ├── ode.motion.0538.skeleton │ │ │ ├── ode.motion.0539.skeleton │ │ │ ├── ode.motion.0540.skeleton │ │ │ ├── ode.motion.0541.skeleton │ │ │ ├── ode.motion.0542.skeleton │ │ │ ├── ode.motion.0543.skeleton │ │ │ ├── ode.motion.0544.skeleton │ │ │ ├── ode.motion.0545.skeleton │ │ │ ├── ode.motion.0546.skeleton │ │ │ ├── ode.motion.0547.skeleton │ │ │ ├── ode.motion.0548.skeleton │ │ │ ├── ode.motion.0549.skeleton │ │ │ ├── ode.motion.0550.skeleton │ │ │ ├── ode.motion.0551.skeleton │ │ │ ├── ode.motion.0552.skeleton │ │ │ ├── ode.motion.0553.skeleton │ │ │ ├── ode.motion.0554.skeleton │ │ │ ├── ode.motion.0555.skeleton │ │ │ ├── ode.motion.0556.skeleton │ │ │ ├── ode.motion.0557.skeleton │ │ │ ├── ode.motion.0558.skeleton │ │ │ ├── ode.motion.0559.skeleton │ │ │ ├── ode.motion.0560.skeleton │ │ │ ├── ode.motion.0561.skeleton │ │ │ ├── ode.motion.0562.skeleton │ │ │ ├── ode.motion.0563.skeleton │ │ │ ├── ode.motion.0564.skeleton │ │ │ ├── ode.motion.0565.skeleton │ │ │ ├── ode.motion.0566.skeleton │ │ │ ├── ode.motion.0567.skeleton │ │ │ ├── ode.motion.0568.skeleton │ │ │ ├── ode.motion.0569.skeleton │ │ │ ├── ode.motion.0570.skeleton │ │ │ ├── ode.motion.0571.skeleton │ │ │ ├── ode.motion.0572.skeleton │ │ │ ├── ode.motion.0573.skeleton │ │ │ ├── ode.motion.0574.skeleton │ │ │ ├── ode.motion.0575.skeleton │ │ │ ├── ode.motion.0576.skeleton │ │ │ ├── ode.motion.0577.skeleton │ │ │ ├── ode.motion.0578.skeleton │ │ │ ├── ode.motion.0579.skeleton │ │ │ ├── ode.motion.0580.skeleton │ │ │ ├── ode.motion.0581.skeleton │ │ │ ├── ode.motion.0582.skeleton │ │ │ ├── ode.motion.0583.skeleton │ │ │ ├── ode.motion.0584.skeleton │ │ │ ├── ode.motion.0585.skeleton │ │ │ ├── ode.motion.0586.skeleton │ │ │ ├── ode.motion.0587.skeleton │ │ │ ├── ode.motion.0588.skeleton │ │ │ ├── ode.motion.0589.skeleton │ │ │ ├── ode.motion.0590.skeleton │ │ │ ├── ode.motion.0591.skeleton │ │ │ ├── ode.motion.0592.skeleton │ │ │ ├── ode.motion.0593.skeleton │ │ │ ├── ode.motion.0594.skeleton │ │ │ ├── ode.motion.0595.skeleton │ │ │ ├── ode.motion.0596.skeleton │ │ │ ├── ode.motion.0597.skeleton │ │ │ ├── ode.motion.0598.skeleton │ │ │ ├── ode.motion.0599.skeleton │ │ │ ├── ode.motion.0600.skeleton │ │ │ ├── ode.motion.0601.skeleton │ │ │ ├── ode.motion.0602.skeleton │ │ │ ├── ode.motion.0603.skeleton │ │ │ ├── ode.motion.0604.skeleton │ │ │ ├── ode.motion.0605.skeleton │ │ │ ├── ode.motion.0606.skeleton │ │ │ ├── ode.motion.0607.skeleton │ │ │ ├── ode.motion.0608.skeleton │ │ │ ├── ode.motion.0609.skeleton │ │ │ ├── ode.motion.0610.skeleton │ │ │ ├── ode.motion.0611.skeleton │ │ │ ├── ode.motion.0612.skeleton │ │ │ ├── ode.motion.0613.skeleton │ │ │ ├── ode.motion.0614.skeleton │ │ │ ├── ode.motion.0615.skeleton │ │ │ ├── ode.motion.0616.skeleton │ │ │ ├── ode.motion.0617.skeleton │ │ │ ├── ode.motion.0618.skeleton │ │ │ ├── ode.motion.0619.skeleton │ │ │ ├── ode.motion.0620.skeleton │ │ │ ├── ode.motion.0621.skeleton │ │ │ ├── ode.motion.0622.skeleton │ │ │ ├── ode.motion.0623.skeleton │ │ │ ├── ode.motion.0624.skeleton │ │ │ ├── ode.motion.0625.skeleton │ │ │ ├── ode.motion.0626.skeleton │ │ │ ├── ode.motion.0627.skeleton │ │ │ ├── ode.motion.0628.skeleton │ │ │ ├── ode.motion.0629.skeleton │ │ │ ├── ode.motion.0630.skeleton │ │ │ ├── ode.motion.0631.skeleton │ │ │ ├── ode.motion.0632.skeleton │ │ │ ├── ode.motion.0633.skeleton │ │ │ ├── ode.motion.0634.skeleton │ │ │ ├── ode.motion.0635.skeleton │ │ │ ├── ode.motion.0636.skeleton │ │ │ ├── ode.motion.0637.skeleton │ │ │ ├── ode.motion.0638.skeleton │ │ │ ├── ode.motion.0639.skeleton │ │ │ ├── ode.motion.0640.skeleton │ │ │ ├── ode.motion.0641.skeleton │ │ │ ├── ode.motion.0642.skeleton │ │ │ ├── ode.motion.0643.skeleton │ │ │ ├── ode.motion.0644.skeleton │ │ │ ├── ode.motion.0645.skeleton │ │ │ ├── ode.motion.0646.skeleton │ │ │ ├── ode.motion.0647.skeleton │ │ │ ├── ode.motion.0648.skeleton │ │ │ ├── ode.motion.0649.skeleton │ │ │ ├── ode.motion.0650.skeleton │ │ │ ├── ode.motion.0651.skeleton │ │ │ ├── ode.motion.0652.skeleton │ │ │ ├── ode.motion.0653.skeleton │ │ │ ├── ode.motion.0654.skeleton │ │ │ ├── ode.motion.0655.skeleton │ │ │ ├── ode.motion.0656.skeleton │ │ │ ├── ode.motion.0657.skeleton │ │ │ ├── ode.motion.0658.skeleton │ │ │ ├── ode.motion.0659.skeleton │ │ │ ├── ode.motion.0660.skeleton │ │ │ ├── ode.motion.0661.skeleton │ │ │ ├── ode.motion.0662.skeleton │ │ │ ├── ode.motion.0663.skeleton │ │ │ ├── ode.motion.0664.skeleton │ │ │ ├── ode.motion.0665.skeleton │ │ │ ├── ode.motion.0666.skeleton │ │ │ ├── ode.motion.0667.skeleton │ │ │ ├── ode.motion.0668.skeleton │ │ │ ├── ode.motion.0669.skeleton │ │ │ ├── ode.motion.0670.skeleton │ │ │ ├── ode.motion.0671.skeleton │ │ │ ├── ode.motion.0672.skeleton │ │ │ ├── ode.motion.0673.skeleton │ │ │ ├── ode.motion.0674.skeleton │ │ │ ├── ode.motion.0675.skeleton │ │ │ ├── ode.motion.0676.skeleton │ │ │ ├── ode.motion.0677.skeleton │ │ │ ├── ode.motion.0678.skeleton │ │ │ ├── ode.motion.0679.skeleton │ │ │ ├── ode.motion.0680.skeleton │ │ │ ├── ode.motion.0681.skeleton │ │ │ ├── ode.motion.0682.skeleton │ │ │ ├── ode.motion.0683.skeleton │ │ │ ├── ode.motion.0684.skeleton │ │ │ ├── ode.motion.0685.skeleton │ │ │ ├── ode.motion.0686.skeleton │ │ │ ├── ode.motion.0687.skeleton │ │ │ ├── ode.motion.0688.skeleton │ │ │ ├── ode.motion.0689.skeleton │ │ │ ├── ode.motion.0690.skeleton │ │ │ ├── ode.motion.0691.skeleton │ │ │ ├── ode.motion.0692.skeleton │ │ │ ├── ode.motion.0693.skeleton │ │ │ ├── ode.motion.0694.skeleton │ │ │ ├── ode.motion.0695.skeleton │ │ │ ├── ode.motion.0696.skeleton │ │ │ ├── ode.motion.0697.skeleton │ │ │ ├── ode.motion.0698.skeleton │ │ │ ├── ode.motion.0699.skeleton │ │ │ ├── ode.motion.0700.skeleton │ │ │ ├── ode.motion.0701.skeleton │ │ │ ├── ode.motion.0702.skeleton │ │ │ ├── ode.motion.0703.skeleton │ │ │ ├── ode.motion.0704.skeleton │ │ │ ├── ode.motion.0705.skeleton │ │ │ ├── ode.motion.0706.skeleton │ │ │ ├── ode.motion.0707.skeleton │ │ │ ├── ode.motion.0708.skeleton │ │ │ ├── ode.motion.0709.skeleton │ │ │ ├── ode.motion.0710.skeleton │ │ │ ├── ode.motion.0711.skeleton │ │ │ ├── ode.motion.0712.skeleton │ │ │ ├── ode.motion.0713.skeleton │ │ │ ├── ode.motion.0714.skeleton │ │ │ ├── ode.motion.0715.skeleton │ │ │ ├── ode.motion.0716.skeleton │ │ │ ├── ode.motion.0717.skeleton │ │ │ ├── ode.motion.0718.skeleton │ │ │ ├── ode.motion.0719.skeleton │ │ │ ├── ode.motion.0720.skeleton │ │ │ ├── ode.motion.0721.skeleton │ │ │ ├── ode.motion.0722.skeleton │ │ │ ├── ode.motion.0723.skeleton │ │ │ ├── ode.motion.0724.skeleton │ │ │ ├── ode.motion.0725.skeleton │ │ │ ├── ode.motion.0726.skeleton │ │ │ ├── ode.motion.0727.skeleton │ │ │ ├── ode.motion.0728.skeleton │ │ │ ├── ode.motion.0729.skeleton │ │ │ ├── ode.motion.0730.skeleton │ │ │ ├── ode.motion.0731.skeleton │ │ │ ├── ode.motion.0732.skeleton │ │ │ ├── ode.motion.0733.skeleton │ │ │ ├── ode.motion.0734.skeleton │ │ │ ├── ode.motion.0735.skeleton │ │ │ ├── ode.motion.0736.skeleton │ │ │ ├── ode.motion.0737.skeleton │ │ │ ├── ode.motion.0738.skeleton │ │ │ ├── ode.motion.0739.skeleton │ │ │ ├── ode.motion.0740.skeleton │ │ │ ├── ode.motion.0741.skeleton │ │ │ ├── ode.motion.0742.skeleton │ │ │ ├── ode.motion.0743.skeleton │ │ │ ├── ode.motion.0744.skeleton │ │ │ ├── ode.motion.0745.skeleton │ │ │ ├── ode.motion.0746.skeleton │ │ │ ├── ode.motion.0747.skeleton │ │ │ ├── ode.motion.0748.skeleton │ │ │ ├── ode.motion.0749.skeleton │ │ │ ├── ode.motion.0750.skeleton │ │ │ ├── ode.motion.0751.skeleton │ │ │ ├── ode.motion.0752.skeleton │ │ │ ├── ode.motion.0753.skeleton │ │ │ ├── ode.motion.0754.skeleton │ │ │ ├── ode.motion.0755.skeleton │ │ │ ├── ode.motion.0756.skeleton │ │ │ ├── ode.motion.0757.skeleton │ │ │ ├── ode.motion.0758.skeleton │ │ │ ├── ode.motion.0759.skeleton │ │ │ ├── ode.motion.0760.skeleton │ │ │ ├── ode.motion.0761.skeleton │ │ │ ├── ode.motion.0762.skeleton │ │ │ ├── ode.motion.0763.skeleton │ │ │ ├── ode.motion.0764.skeleton │ │ │ ├── ode.motion.0765.skeleton │ │ │ ├── ode.motion.0766.skeleton │ │ │ ├── ode.motion.0767.skeleton │ │ │ ├── ode.motion.0768.skeleton │ │ │ ├── ode.motion.0769.skeleton │ │ │ ├── ode.motion.0770.skeleton │ │ │ ├── ode.motion.0771.skeleton │ │ │ ├── ode.motion.0772.skeleton │ │ │ ├── ode.motion.0773.skeleton │ │ │ ├── ode.motion.0774.skeleton │ │ │ ├── ode.motion.0775.skeleton │ │ │ ├── ode.motion.0776.skeleton │ │ │ ├── ode.motion.0777.skeleton │ │ │ ├── ode.motion.0778.skeleton │ │ │ ├── ode.motion.0779.skeleton │ │ │ ├── ode.motion.0780.skeleton │ │ │ ├── ode.motion.0781.skeleton │ │ │ ├── ode.motion.0782.skeleton │ │ │ ├── ode.motion.0783.skeleton │ │ │ ├── ode.motion.0784.skeleton │ │ │ ├── ode.motion.0785.skeleton │ │ │ ├── ode.motion.0786.skeleton │ │ │ ├── ode.motion.0787.skeleton │ │ │ ├── ode.motion.0788.skeleton │ │ │ ├── ode.motion.0789.skeleton │ │ │ ├── ode.motion.0790.skeleton │ │ │ ├── ode.motion.0791.skeleton │ │ │ ├── ode.motion.0792.skeleton │ │ │ ├── ode.motion.0793.skeleton │ │ │ ├── ode.motion.0794.skeleton │ │ │ ├── ode.motion.0795.skeleton │ │ │ ├── ode.motion.0796.skeleton │ │ │ ├── ode.motion.0797.skeleton │ │ │ ├── ode.motion.0798.skeleton │ │ │ ├── ode.motion.0799.skeleton │ │ │ ├── ode.motion.0800.skeleton │ │ │ ├── ode.motion.0801.skeleton │ │ │ ├── ode.motion.0802.skeleton │ │ │ ├── ode.motion.0803.skeleton │ │ │ ├── ode.motion.0804.skeleton │ │ │ ├── ode.motion.0805.skeleton │ │ │ ├── ode.motion.0806.skeleton │ │ │ ├── ode.motion.0807.skeleton │ │ │ ├── ode.motion.0808.skeleton │ │ │ ├── ode.motion.0809.skeleton │ │ │ ├── ode.motion.0810.skeleton │ │ │ ├── ode.motion.0811.skeleton │ │ │ ├── ode.motion.0812.skeleton │ │ │ ├── ode.motion.0813.skeleton │ │ │ ├── ode.motion.0814.skeleton │ │ │ ├── ode.motion.0815.skeleton │ │ │ ├── ode.motion.0816.skeleton │ │ │ ├── ode.motion.0817.skeleton │ │ │ ├── ode.motion.0818.skeleton │ │ │ ├── ode.motion.0819.skeleton │ │ │ ├── ode.motion.0820.skeleton │ │ │ ├── ode.motion.0821.skeleton │ │ │ ├── ode.motion.0822.skeleton │ │ │ ├── ode.motion.0823.skeleton │ │ │ ├── ode.motion.0824.skeleton │ │ │ ├── ode.motion.0825.skeleton │ │ │ ├── ode.motion.0826.skeleton │ │ │ ├── ode.motion.0827.skeleton │ │ │ ├── ode.motion.0828.skeleton │ │ │ ├── ode.motion.0829.skeleton │ │ │ ├── ode.motion.0830.skeleton │ │ │ ├── ode.motion.0831.skeleton │ │ │ ├── ode.motion.0832.skeleton │ │ │ ├── ode.motion.0833.skeleton │ │ │ ├── ode.motion.0834.skeleton │ │ │ ├── ode.motion.0835.skeleton │ │ │ ├── ode.motion.0836.skeleton │ │ │ ├── ode.motion.0837.skeleton │ │ │ ├── ode.motion.0838.skeleton │ │ │ ├── ode.motion.0839.skeleton │ │ │ ├── ode.motion.0840.skeleton │ │ │ ├── ode.motion.0841.skeleton │ │ │ ├── ode.motion.0842.skeleton │ │ │ ├── ode.motion.0843.skeleton │ │ │ ├── ode.motion.0844.skeleton │ │ │ ├── ode.motion.0845.skeleton │ │ │ ├── ode.motion.0846.skeleton │ │ │ ├── ode.motion.0847.skeleton │ │ │ ├── ode.motion.0848.skeleton │ │ │ ├── ode.motion.0849.skeleton │ │ │ ├── ode.motion.0850.skeleton │ │ │ ├── ode.motion.0851.skeleton │ │ │ ├── ode.motion.0852.skeleton │ │ │ ├── ode.motion.0853.skeleton │ │ │ ├── ode.motion.0854.skeleton │ │ │ ├── ode.motion.0855.skeleton │ │ │ ├── ode.motion.0856.skeleton │ │ │ ├── ode.motion.0857.skeleton │ │ │ ├── ode.motion.0858.skeleton │ │ │ ├── ode.motion.0859.skeleton │ │ │ ├── ode.motion.0860.skeleton │ │ │ ├── ode.motion.0861.skeleton │ │ │ ├── ode.motion.0862.skeleton │ │ │ ├── ode.motion.0863.skeleton │ │ │ ├── ode.motion.0864.skeleton │ │ │ ├── ode.motion.0865.skeleton │ │ │ ├── ode.motion.0866.skeleton │ │ │ ├── ode.motion.0867.skeleton │ │ │ ├── ode.motion.0868.skeleton │ │ │ ├── ode.motion.0869.skeleton │ │ │ ├── ode.motion.0870.skeleton │ │ │ ├── ode.motion.0871.skeleton │ │ │ ├── ode.motion.0872.skeleton │ │ │ ├── ode.motion.0873.skeleton │ │ │ ├── ode.motion.0874.skeleton │ │ │ ├── ode.motion.0875.skeleton │ │ │ ├── ode.motion.0876.skeleton │ │ │ ├── ode.motion.0877.skeleton │ │ │ ├── ode.motion.0878.skeleton │ │ │ ├── ode.motion.0879.skeleton │ │ │ ├── ode.motion.0880.skeleton │ │ │ ├── ode.motion.0881.skeleton │ │ │ ├── ode.motion.0882.skeleton │ │ │ ├── ode.motion.0883.skeleton │ │ │ ├── ode.motion.0884.skeleton │ │ │ ├── ode.motion.0885.skeleton │ │ │ ├── ode.motion.0886.skeleton │ │ │ ├── ode.motion.0887.skeleton │ │ │ ├── ode.motion.0888.skeleton │ │ │ ├── ode.motion.0889.skeleton │ │ │ ├── ode.motion.0890.skeleton │ │ │ ├── ode.motion.0891.skeleton │ │ │ ├── ode.motion.0892.skeleton │ │ │ ├── ode.motion.0893.skeleton │ │ │ ├── ode.motion.0894.skeleton │ │ │ ├── ode.motion.0895.skeleton │ │ │ ├── ode.motion.0896.skeleton │ │ │ ├── ode.motion.0897.skeleton │ │ │ ├── ode.motion.0898.skeleton │ │ │ ├── ode.motion.0899.skeleton │ │ │ ├── ode.motion.0900.skeleton │ │ │ ├── ode.motion.0901.skeleton │ │ │ ├── ode.motion.0902.skeleton │ │ │ ├── ode.motion.0903.skeleton │ │ │ ├── ode.motion.0904.skeleton │ │ │ ├── ode.motion.0905.skeleton │ │ │ ├── ode.motion.0906.skeleton │ │ │ ├── ode.motion.0907.skeleton │ │ │ ├── ode.motion.0908.skeleton │ │ │ ├── ode.motion.0909.skeleton │ │ │ ├── ode.motion.0910.skeleton │ │ │ ├── ode.motion.0911.skeleton │ │ │ ├── ode.motion.0912.skeleton │ │ │ ├── ode.motion.0913.skeleton │ │ │ ├── ode.motion.0914.skeleton │ │ │ ├── ode.motion.0915.skeleton │ │ │ ├── ode.motion.0916.skeleton │ │ │ ├── ode.motion.0917.skeleton │ │ │ ├── ode.motion.0918.skeleton │ │ │ ├── ode.motion.0919.skeleton │ │ │ ├── ode.motion.0920.skeleton │ │ │ ├── ode.motion.0921.skeleton │ │ │ ├── ode.motion.0922.skeleton │ │ │ ├── ode.motion.0923.skeleton │ │ │ ├── ode.motion.0924.skeleton │ │ │ ├── ode.motion.0925.skeleton │ │ │ ├── ode.motion.0926.skeleton │ │ │ ├── ode.motion.0927.skeleton │ │ │ ├── ode.motion.0928.skeleton │ │ │ ├── ode.motion.0929.skeleton │ │ │ ├── ode.motion.0930.skeleton │ │ │ ├── ode.motion.0931.skeleton │ │ │ ├── ode.motion.0932.skeleton │ │ │ ├── ode.motion.0933.skeleton │ │ │ ├── ode.motion.0934.skeleton │ │ │ ├── ode.motion.0935.skeleton │ │ │ ├── ode.motion.0936.skeleton │ │ │ ├── ode.motion.0937.skeleton │ │ │ ├── ode.motion.0938.skeleton │ │ │ ├── ode.motion.0939.skeleton │ │ │ ├── ode.motion.0940.skeleton │ │ │ ├── ode.motion.0941.skeleton │ │ │ ├── ode.motion.0942.skeleton │ │ │ ├── ode.motion.0943.skeleton │ │ │ ├── ode.motion.0944.skeleton │ │ │ ├── ode.motion.0945.skeleton │ │ │ ├── ode.motion.0946.skeleton │ │ │ ├── ode.motion.0947.skeleton │ │ │ ├── ode.motion.0948.skeleton │ │ │ ├── ode.motion.0949.skeleton │ │ │ ├── ode.motion.0950.skeleton │ │ │ ├── ode.motion.0951.skeleton │ │ │ ├── ode.motion.0952.skeleton │ │ │ ├── ode.motion.0953.skeleton │ │ │ ├── ode.motion.0954.skeleton │ │ │ ├── ode.motion.0955.skeleton │ │ │ ├── ode.motion.0956.skeleton │ │ │ ├── ode.motion.0957.skeleton │ │ │ ├── ode.motion.0958.skeleton │ │ │ ├── ode.motion.0959.skeleton │ │ │ ├── ode.motion.0960.skeleton │ │ │ ├── ode.motion.0961.skeleton │ │ │ ├── ode.motion.0962.skeleton │ │ │ ├── ode.motion.0963.skeleton │ │ │ ├── ode.motion.0964.skeleton │ │ │ ├── ode.motion.0965.skeleton │ │ │ ├── ode.motion.0966.skeleton │ │ │ ├── ode.motion.0967.skeleton │ │ │ ├── ode.motion.0968.skeleton │ │ │ ├── ode.motion.0969.skeleton │ │ │ ├── ode.motion.0970.skeleton │ │ │ ├── ode.motion.0971.skeleton │ │ │ ├── ode.motion.0972.skeleton │ │ │ ├── ode.motion.0973.skeleton │ │ │ ├── ode.motion.0974.skeleton │ │ │ ├── ode.motion.0975.skeleton │ │ │ ├── ode.motion.0976.skeleton │ │ │ ├── ode.motion.0977.skeleton │ │ │ ├── ode.motion.0978.skeleton │ │ │ ├── ode.motion.0979.skeleton │ │ │ ├── ode.motion.0980.skeleton │ │ │ ├── ode.motion.0981.skeleton │ │ │ ├── ode.motion.0982.skeleton │ │ │ ├── ode.motion.0983.skeleton │ │ │ ├── ode.motion.0984.skeleton │ │ │ ├── ode.motion.0985.skeleton │ │ │ ├── ode.motion.0986.skeleton │ │ │ ├── ode.motion.0987.skeleton │ │ │ ├── ode.motion.0988.skeleton │ │ │ ├── ode.motion.0989.skeleton │ │ │ ├── ode.motion.0990.skeleton │ │ │ ├── ode.motion.0991.skeleton │ │ │ ├── ode.motion.0992.skeleton │ │ │ ├── ode.motion.0993.skeleton │ │ │ ├── ode.motion.0994.skeleton │ │ │ ├── ode.motion.0995.skeleton │ │ │ ├── ode.motion.0996.skeleton │ │ │ ├── ode.motion.0997.skeleton │ │ │ ├── ode.motion.0998.skeleton │ │ │ ├── ode.motion.0999.skeleton │ │ │ ├── ode.motion.1000.skeleton │ │ │ ├── ode.motion.1001.skeleton │ │ │ ├── ode.motion.1002.skeleton │ │ │ ├── ode.motion.1003.skeleton │ │ │ ├── ode.motion.1004.skeleton │ │ │ ├── ode.motion.1005.skeleton │ │ │ ├── ode.motion.1006.skeleton │ │ │ ├── ode.motion.1007.skeleton │ │ │ ├── ode.motion.1008.skeleton │ │ │ ├── ode.motion.1009.skeleton │ │ │ ├── ode.motion.1010.skeleton │ │ │ ├── ode.motion.1011.skeleton │ │ │ ├── ode.motion.1012.skeleton │ │ │ ├── ode.motion.1013.skeleton │ │ │ ├── ode.motion.1014.skeleton │ │ │ ├── ode.motion.1015.skeleton │ │ │ ├── ode.motion.1016.skeleton │ │ │ ├── ode.motion.1017.skeleton │ │ │ ├── ode.motion.1018.skeleton │ │ │ ├── ode.motion.1019.skeleton │ │ │ ├── ode.motion.1020.skeleton │ │ │ ├── ode.motion.1021.skeleton │ │ │ ├── ode.motion.1022.skeleton │ │ │ ├── ode.motion.1023.skeleton │ │ │ ├── ode.motion.1024.skeleton │ │ │ ├── ode.motion.1025.skeleton │ │ │ ├── ode.motion.1026.skeleton │ │ │ ├── ode.motion.1027.skeleton │ │ │ ├── ode.motion.1028.skeleton │ │ │ ├── ode.motion.1029.skeleton │ │ │ ├── ode.motion.1030.skeleton │ │ │ ├── ode.motion.1031.skeleton │ │ │ ├── ode.motion.1032.skeleton │ │ │ ├── ode.motion.1033.skeleton │ │ │ ├── ode.motion.1034.skeleton │ │ │ ├── ode.motion.1035.skeleton │ │ │ ├── ode.motion.1036.skeleton │ │ │ ├── ode.motion.1037.skeleton │ │ │ ├── ode.motion.1038.skeleton │ │ │ ├── ode.motion.1039.skeleton │ │ │ ├── ode.motion.1040.skeleton │ │ │ ├── ode.motion.1041.skeleton │ │ │ ├── ode.motion.1042.skeleton │ │ │ ├── ode.motion.1043.skeleton │ │ │ ├── ode.motion.1044.skeleton │ │ │ ├── ode.motion.1045.skeleton │ │ │ ├── ode.motion.1046.skeleton │ │ │ ├── ode.motion.1047.skeleton │ │ │ ├── ode.motion.1048.skeleton │ │ │ ├── ode.motion.1049.skeleton │ │ │ ├── ode.motion.1050.skeleton │ │ │ ├── ode.motion.1051.skeleton │ │ │ ├── ode.motion.1052.skeleton │ │ │ ├── ode.motion.1053.skeleton │ │ │ ├── ode.motion.1054.skeleton │ │ │ ├── ode.motion.1055.skeleton │ │ │ ├── ode.motion.1056.skeleton │ │ │ ├── ode.motion.1057.skeleton │ │ │ ├── ode.motion.1058.skeleton │ │ │ ├── ode.motion.1059.skeleton │ │ │ ├── ode.motion.1060.skeleton │ │ │ ├── ode.motion.1061.skeleton │ │ │ ├── ode.motion.1062.skeleton │ │ │ ├── ode.motion.1063.skeleton │ │ │ ├── ode.motion.1064.skeleton │ │ │ ├── ode.motion.1065.skeleton │ │ │ ├── ode.motion.1066.skeleton │ │ │ ├── ode.motion.1067.skeleton │ │ │ ├── ode.motion.1068.skeleton │ │ │ ├── ode.motion.1069.skeleton │ │ │ ├── ode.motion.1070.skeleton │ │ │ ├── ode.motion.1071.skeleton │ │ │ ├── ode.motion.1072.skeleton │ │ │ ├── ode.motion.1073.skeleton │ │ │ ├── ode.motion.1074.skeleton │ │ │ ├── ode.motion.1075.skeleton │ │ │ ├── ode.motion.1076.skeleton │ │ │ ├── ode.motion.1077.skeleton │ │ │ ├── ode.motion.1078.skeleton │ │ │ ├── ode.motion.1079.skeleton │ │ │ ├── ode.motion.1080.skeleton │ │ │ ├── ode.motion.1081.skeleton │ │ │ ├── ode.motion.1082.skeleton │ │ │ ├── ode.motion.1083.skeleton │ │ │ ├── ode.motion.1084.skeleton │ │ │ ├── ode.motion.1085.skeleton │ │ │ ├── ode.motion.1086.skeleton │ │ │ ├── ode.motion.1087.skeleton │ │ │ ├── ode.motion.1088.skeleton │ │ │ ├── ode.motion.1089.skeleton │ │ │ ├── ode.motion.1090.skeleton │ │ │ ├── ode.motion.1091.skeleton │ │ │ ├── ode.motion.1092.skeleton │ │ │ ├── ode.motion.1093.skeleton │ │ │ ├── ode.motion.1094.skeleton │ │ │ ├── ode.motion.1095.skeleton │ │ │ ├── ode.motion.1096.skeleton │ │ │ ├── ode.motion.1097.skeleton │ │ │ ├── ode.motion.1098.skeleton │ │ │ ├── ode.motion.1099.skeleton │ │ │ ├── ode.motion.1100.skeleton │ │ │ ├── ode.motion.1101.skeleton │ │ │ ├── ode.motion.1102.skeleton │ │ │ ├── ode.motion.1103.skeleton │ │ │ ├── ode.motion.1104.skeleton │ │ │ ├── ode.motion.1105.skeleton │ │ │ ├── ode.motion.1106.skeleton │ │ │ ├── ode.motion.1107.skeleton │ │ │ ├── ode.motion.1108.skeleton │ │ │ ├── ode.motion.1109.skeleton │ │ │ ├── ode.motion.1110.skeleton │ │ │ ├── ode.motion.1111.skeleton │ │ │ ├── ode.motion.1112.skeleton │ │ │ ├── ode.motion.1113.skeleton │ │ │ ├── ode.motion.1114.skeleton │ │ │ ├── ode.motion.1115.skeleton │ │ │ ├── ode.motion.1116.skeleton │ │ │ ├── ode.motion.1117.skeleton │ │ │ ├── ode.motion.1118.skeleton │ │ │ ├── ode.motion.1119.skeleton │ │ │ ├── ode.motion.1120.skeleton │ │ │ ├── ode.motion.1121.skeleton │ │ │ ├── ode.motion.1122.skeleton │ │ │ ├── ode.motion.1123.skeleton │ │ │ ├── ode.motion.1124.skeleton │ │ │ ├── ode.motion.1125.skeleton │ │ │ ├── ode.motion.1126.skeleton │ │ │ ├── ode.motion.1127.skeleton │ │ │ ├── ode.motion.1128.skeleton │ │ │ ├── ode.motion.1129.skeleton │ │ │ ├── ode.motion.1130.skeleton │ │ │ ├── ode.motion.1131.skeleton │ │ │ ├── ode.motion.1132.skeleton │ │ │ ├── ode.motion.1133.skeleton │ │ │ ├── ode.motion.1134.skeleton │ │ │ ├── ode.motion.1135.skeleton │ │ │ ├── ode.motion.1136.skeleton │ │ │ ├── ode.motion.1137.skeleton │ │ │ ├── ode.motion.1138.skeleton │ │ │ ├── ode.motion.1139.skeleton │ │ │ ├── ode.motion.1140.skeleton │ │ │ ├── ode.motion.1141.skeleton │ │ │ ├── ode.motion.1142.skeleton │ │ │ ├── ode.motion.1143.skeleton │ │ │ ├── ode.motion.1144.skeleton │ │ │ ├── ode.motion.1145.skeleton │ │ │ ├── ode.motion.1146.skeleton │ │ │ ├── ode.motion.1147.skeleton │ │ │ ├── ode.motion.1148.skeleton │ │ │ ├── ode.motion.1149.skeleton │ │ │ ├── ode.motion.1150.skeleton │ │ │ ├── ode.motion.1151.skeleton │ │ │ ├── ode.motion.1152.skeleton │ │ │ ├── ode.motion.1153.skeleton │ │ │ ├── ode.motion.1154.skeleton │ │ │ ├── ode.motion.1155.skeleton │ │ │ ├── ode.motion.1156.skeleton │ │ │ ├── ode.motion.1157.skeleton │ │ │ ├── ode.motion.1158.skeleton │ │ │ ├── ode.motion.1159.skeleton │ │ │ ├── ode.motion.1160.skeleton │ │ │ ├── ode.motion.1161.skeleton │ │ │ ├── ode.motion.1162.skeleton │ │ │ ├── ode.motion.1163.skeleton │ │ │ ├── ode.motion.1164.skeleton │ │ │ ├── ode.motion.1165.skeleton │ │ │ ├── ode.motion.1166.skeleton │ │ │ ├── ode.motion.1167.skeleton │ │ │ ├── ode.motion.1168.skeleton │ │ │ ├── ode.motion.1169.skeleton │ │ │ ├── ode.motion.1170.skeleton │ │ │ ├── ode.motion.1171.skeleton │ │ │ ├── ode.motion.1172.skeleton │ │ │ ├── ode.motion.1173.skeleton │ │ │ ├── ode.motion.1174.skeleton │ │ │ ├── ode.motion.1175.skeleton │ │ │ ├── ode.motion.1176.skeleton │ │ │ ├── ode.motion.1177.skeleton │ │ │ ├── ode.motion.1178.skeleton │ │ │ ├── ode.motion.1179.skeleton │ │ │ ├── ode.motion.1180.skeleton │ │ │ ├── ode.motion.1181.skeleton │ │ │ ├── ode.motion.1182.skeleton │ │ │ ├── ode.motion.1183.skeleton │ │ │ ├── ode.motion.1184.skeleton │ │ │ ├── ode.motion.1185.skeleton │ │ │ ├── ode.motion.1186.skeleton │ │ │ ├── ode.motion.1187.skeleton │ │ │ ├── ode.motion.1188.skeleton │ │ │ ├── ode.motion.1189.skeleton │ │ │ ├── ode.motion.1190.skeleton │ │ │ ├── ode.motion.1191.skeleton │ │ │ ├── ode.motion.1192.skeleton │ │ │ ├── ode.motion.1193.skeleton │ │ │ ├── ode.motion.1194.skeleton │ │ │ ├── ode.motion.1195.skeleton │ │ │ ├── ode.motion.1196.skeleton │ │ │ ├── ode.motion.1197.skeleton │ │ │ ├── ode.motion.1198.skeleton │ │ │ ├── ode.motion.1199.skeleton │ │ │ ├── ode.motion.1200.skeleton │ │ │ ├── ode.motion.1201.skeleton │ │ │ ├── ode.motion.1202.skeleton │ │ │ ├── ode.motion.1203.skeleton │ │ │ ├── ode.motion.1204.skeleton │ │ │ ├── ode.motion.1205.skeleton │ │ │ ├── ode.motion.1206.skeleton │ │ │ ├── ode.motion.1207.skeleton │ │ │ ├── ode.motion.1208.skeleton │ │ │ ├── ode.motion.1209.skeleton │ │ │ ├── ode.motion.1210.skeleton │ │ │ ├── ode.motion.1211.skeleton │ │ │ ├── ode.motion.1212.skeleton │ │ │ ├── ode.motion.1213.skeleton │ │ │ ├── ode.motion.1214.skeleton │ │ │ ├── ode.motion.1215.skeleton │ │ │ ├── ode.motion.1216.skeleton │ │ │ ├── ode.motion.1217.skeleton │ │ │ ├── ode.motion.1218.skeleton │ │ │ ├── ode.motion.1219.skeleton │ │ │ ├── ode.motion.1220.skeleton │ │ │ ├── ode.motion.1221.skeleton │ │ │ ├── ode.motion.1222.skeleton │ │ │ ├── ode.motion.1223.skeleton │ │ │ ├── ode.motion.1224.skeleton │ │ │ ├── ode.motion.1225.skeleton │ │ │ ├── ode.motion.1226.skeleton │ │ │ ├── ode.motion.1227.skeleton │ │ │ ├── ode.motion.1228.skeleton │ │ │ ├── ode.motion.1229.skeleton │ │ │ ├── ode.motion.1230.skeleton │ │ │ ├── ode.motion.1231.skeleton │ │ │ ├── ode.motion.1232.skeleton │ │ │ ├── ode.motion.1233.skeleton │ │ │ ├── ode.motion.1234.skeleton │ │ │ ├── ode.motion.1235.skeleton │ │ │ ├── ode.motion.1236.skeleton │ │ │ ├── ode.motion.1237.skeleton │ │ │ ├── ode.motion.1238.skeleton │ │ │ ├── ode.motion.1239.skeleton │ │ │ ├── ode.motion.1240.skeleton │ │ │ ├── ode.motion.1241.skeleton │ │ │ ├── ode.motion.1242.skeleton │ │ │ ├── ode.motion.1243.skeleton │ │ │ ├── ode.motion.1244.skeleton │ │ │ ├── ode.motion.1245.skeleton │ │ │ ├── ode.motion.1246.skeleton │ │ │ ├── ode.motion.1247.skeleton │ │ │ ├── ode.motion.1248.skeleton │ │ │ ├── ode.motion.1249.skeleton │ │ │ ├── ode.motion.1250.skeleton │ │ │ ├── ode.motion.1251.skeleton │ │ │ ├── ode.motion.1252.skeleton │ │ │ ├── ode.motion.1253.skeleton │ │ │ ├── ode.motion.1254.skeleton │ │ │ ├── ode.motion.1255.skeleton │ │ │ ├── ode.motion.1256.skeleton │ │ │ ├── ode.motion.1257.skeleton │ │ │ ├── ode.motion.1258.skeleton │ │ │ ├── ode.motion.1259.skeleton │ │ │ ├── ode.motion.1260.skeleton │ │ │ ├── ode.motion.1261.skeleton │ │ │ ├── ode.motion.1262.skeleton │ │ │ ├── ode.motion.1263.skeleton │ │ │ ├── ode.motion.1264.skeleton │ │ │ ├── ode.motion.1265.skeleton │ │ │ ├── ode.motion.1266.skeleton │ │ │ ├── ode.motion.1267.skeleton │ │ │ ├── ode.motion.1268.skeleton │ │ │ ├── ode.motion.1269.skeleton │ │ │ ├── ode.motion.1270.skeleton │ │ │ ├── ode.motion.1271.skeleton │ │ │ ├── ode.motion.1272.skeleton │ │ │ ├── ode.motion.1273.skeleton │ │ │ ├── ode.motion.1274.skeleton │ │ │ ├── ode.motion.1275.skeleton │ │ │ ├── ode.motion.1276.skeleton │ │ │ ├── ode.motion.1277.skeleton │ │ │ ├── ode.motion.1278.skeleton │ │ │ ├── ode.motion.1279.skeleton │ │ │ ├── ode.motion.1280.skeleton │ │ │ ├── ode.motion.1281.skeleton │ │ │ ├── ode.motion.1282.skeleton │ │ │ ├── ode.motion.1283.skeleton │ │ │ ├── ode.motion.1284.skeleton │ │ │ ├── ode.motion.1285.skeleton │ │ │ ├── ode.motion.1286.skeleton │ │ │ ├── ode.motion.1287.skeleton │ │ │ ├── ode.motion.1288.skeleton │ │ │ ├── ode.motion.1289.skeleton │ │ │ ├── ode.motion.1290.skeleton │ │ │ ├── ode.motion.1291.skeleton │ │ │ ├── ode.motion.1292.skeleton │ │ │ ├── ode.motion.1293.skeleton │ │ │ ├── ode.motion.1294.skeleton │ │ │ ├── ode.motion.1295.skeleton │ │ │ ├── ode.motion.1296.skeleton │ │ │ ├── ode.motion.1297.skeleton │ │ │ ├── ode.motion.1298.skeleton │ │ │ ├── ode.motion.1299.skeleton │ │ │ ├── ode.motion.1300.skeleton │ │ │ ├── ode.motion.1301.skeleton │ │ │ ├── ode.motion.1302.skeleton │ │ │ ├── ode.motion.1303.skeleton │ │ │ ├── ode.motion.1304.skeleton │ │ │ ├── ode.motion.1305.skeleton │ │ │ ├── ode.motion.1306.skeleton │ │ │ ├── ode.motion.1307.skeleton │ │ │ ├── ode.motion.1308.skeleton │ │ │ ├── ode.motion.1309.skeleton │ │ │ ├── ode.motion.1310.skeleton │ │ │ ├── ode.motion.1311.skeleton │ │ │ ├── ode.motion.1312.skeleton │ │ │ ├── ode.motion.1313.skeleton │ │ │ ├── ode.motion.1314.skeleton │ │ │ ├── ode.motion.1315.skeleton │ │ │ ├── ode.motion.1316.skeleton │ │ │ ├── ode.motion.1317.skeleton │ │ │ ├── ode.motion.1318.skeleton │ │ │ ├── ode.motion.1319.skeleton │ │ │ ├── ode.motion.1320.skeleton │ │ │ ├── ode.motion.1321.skeleton │ │ │ ├── ode.motion.1322.skeleton │ │ │ ├── ode.motion.1323.skeleton │ │ │ ├── ode.motion.1324.skeleton │ │ │ ├── ode.motion.1325.skeleton │ │ │ ├── ode.motion.1326.skeleton │ │ │ ├── ode.motion.1327.skeleton │ │ │ ├── ode.motion.1328.skeleton │ │ │ ├── ode.motion.1329.skeleton │ │ │ ├── ode.motion.1330.skeleton │ │ │ ├── ode.motion.1331.skeleton │ │ │ ├── ode.motion.1332.skeleton │ │ │ ├── ode.motion.1333.skeleton │ │ │ ├── ode.motion.1334.skeleton │ │ │ ├── ode.motion.1335.skeleton │ │ │ ├── ode.motion.1336.skeleton │ │ │ ├── ode.motion.1337.skeleton │ │ │ ├── ode.motion.1338.skeleton │ │ │ ├── ode.motion.1339.skeleton │ │ │ ├── ode.motion.1340.skeleton │ │ │ ├── ode.motion.1341.skeleton │ │ │ ├── ode.motion.1342.skeleton │ │ │ ├── ode.motion.1343.skeleton │ │ │ ├── ode.motion.1344.skeleton │ │ │ ├── ode.motion.1345.skeleton │ │ │ ├── ode.motion.1346.skeleton │ │ │ ├── ode.motion.1347.skeleton │ │ │ ├── ode.motion.1348.skeleton │ │ │ ├── ode.motion.1349.skeleton │ │ │ ├── ode.motion.1350.skeleton │ │ │ ├── ode.motion.1351.skeleton │ │ │ ├── ode.motion.1352.skeleton │ │ │ ├── ode.motion.1353.skeleton │ │ │ ├── ode.motion.1354.skeleton │ │ │ ├── ode.motion.1355.skeleton │ │ │ ├── ode.motion.1356.skeleton │ │ │ ├── ode.motion.1357.skeleton │ │ │ ├── ode.motion.1358.skeleton │ │ │ ├── ode.motion.1359.skeleton │ │ │ ├── ode.motion.1360.skeleton │ │ │ ├── ode.motion.1361.skeleton │ │ │ ├── ode.motion.1362.skeleton │ │ │ ├── ode.motion.1363.skeleton │ │ │ ├── ode.motion.1364.skeleton │ │ │ ├── ode.motion.1365.skeleton │ │ │ ├── ode.motion.1366.skeleton │ │ │ ├── ode.motion.1367.skeleton │ │ │ ├── ode.motion.1368.skeleton │ │ │ ├── ode.motion.1369.skeleton │ │ │ ├── ode.motion.1370.skeleton │ │ │ ├── ode.motion.1371.skeleton │ │ │ ├── ode.motion.1372.skeleton │ │ │ ├── ode.motion.1373.skeleton │ │ │ ├── ode.motion.1374.skeleton │ │ │ ├── ode.motion.1375.skeleton │ │ │ ├── ode.motion.1376.skeleton │ │ │ ├── ode.motion.1377.skeleton │ │ │ ├── ode.motion.1378.skeleton │ │ │ ├── ode.motion.1379.skeleton │ │ │ ├── ode.motion.1380.skeleton │ │ │ ├── ode.motion.1381.skeleton │ │ │ ├── ode.motion.1382.skeleton │ │ │ ├── ode.motion.1383.skeleton │ │ │ ├── ode.motion.1384.skeleton │ │ │ ├── ode.motion.1385.skeleton │ │ │ ├── ode.motion.1386.skeleton │ │ │ ├── ode.motion.1387.skeleton │ │ │ ├── ode.motion.1388.skeleton │ │ │ ├── ode.motion.1389.skeleton │ │ │ ├── ode.motion.1390.skeleton │ │ │ ├── ode.motion.1391.skeleton │ │ │ ├── ode.motion.1392.skeleton │ │ │ ├── ode.motion.1393.skeleton │ │ │ ├── ode.motion.1394.skeleton │ │ │ ├── ode.motion.1395.skeleton │ │ │ ├── ode.motion.1396.skeleton │ │ │ ├── ode.motion.1397.skeleton │ │ │ ├── ode.motion.1398.skeleton │ │ │ ├── ode.motion.1399.skeleton │ │ │ ├── ode.motion.1400.skeleton │ │ │ ├── ode.motion.1401.skeleton │ │ │ ├── ode.motion.1402.skeleton │ │ │ ├── ode.motion.1403.skeleton │ │ │ ├── ode.motion.1404.skeleton │ │ │ ├── ode.motion.1405.skeleton │ │ │ ├── ode.motion.1406.skeleton │ │ │ ├── ode.motion.1407.skeleton │ │ │ ├── ode.motion.1408.skeleton │ │ │ ├── ode.motion.1409.skeleton │ │ │ ├── ode.motion.1410.skeleton │ │ │ ├── ode.motion.1411.skeleton │ │ │ ├── ode.motion.1412.skeleton │ │ │ ├── ode.motion.1413.skeleton │ │ │ ├── ode.motion.1414.skeleton │ │ │ ├── ode.motion.1415.skeleton │ │ │ ├── ode.motion.1416.skeleton │ │ │ ├── ode.motion.1417.skeleton │ │ │ ├── ode.motion.1418.skeleton │ │ │ ├── ode.motion.1419.skeleton │ │ │ ├── ode.motion.1420.skeleton │ │ │ ├── ode.motion.1421.skeleton │ │ │ ├── ode.motion.1422.skeleton │ │ │ ├── ode.motion.1423.skeleton │ │ │ ├── ode.motion.1424.skeleton │ │ │ ├── ode.motion.1425.skeleton │ │ │ ├── ode.motion.1426.skeleton │ │ │ ├── ode.motion.1427.skeleton │ │ │ ├── ode.motion.1428.skeleton │ │ │ ├── ode.motion.1429.skeleton │ │ │ ├── ode.motion.1430.skeleton │ │ │ ├── ode.motion.1431.skeleton │ │ │ ├── ode.motion.1432.skeleton │ │ │ ├── ode.motion.1433.skeleton │ │ │ ├── ode.motion.1434.skeleton │ │ │ ├── ode.motion.1435.skeleton │ │ │ ├── ode.motion.1436.skeleton │ │ │ ├── ode.motion.1437.skeleton │ │ │ ├── ode.motion.1438.skeleton │ │ │ ├── ode.motion.1439.skeleton │ │ │ ├── ode.motion.1440.skeleton │ │ │ ├── ode.motion.1441.skeleton │ │ │ ├── ode.motion.1442.skeleton │ │ │ ├── ode.motion.1443.skeleton │ │ │ ├── ode.motion.1444.skeleton │ │ │ ├── ode.motion.1445.skeleton │ │ │ ├── ode.motion.1446.skeleton │ │ │ ├── ode.motion.1447.skeleton │ │ │ ├── ode.motion.1448.skeleton │ │ │ ├── ode.motion.1449.skeleton │ │ │ ├── ode.motion.1450.skeleton │ │ │ ├── ode.motion.1451.skeleton │ │ │ ├── ode.motion.1452.skeleton │ │ │ ├── ode.motion.1453.skeleton │ │ │ ├── ode.motion.1454.skeleton │ │ │ ├── ode.motion.1455.skeleton │ │ │ ├── ode.motion.1456.skeleton │ │ │ ├── ode.motion.1457.skeleton │ │ │ ├── ode.motion.1458.skeleton │ │ │ ├── ode.motion.1459.skeleton │ │ │ ├── ode.motion.1460.skeleton │ │ │ ├── ode.motion.1461.skeleton │ │ │ ├── ode.motion.1462.skeleton │ │ │ ├── ode.motion.1463.skeleton │ │ │ ├── ode.motion.1464.skeleton │ │ │ ├── ode.motion.1465.skeleton │ │ │ ├── ode.motion.1466.skeleton │ │ │ ├── ode.motion.1467.skeleton │ │ │ ├── ode.motion.1468.skeleton │ │ │ ├── ode.motion.1469.skeleton │ │ │ ├── ode.motion.1470.skeleton │ │ │ ├── ode.motion.1471.skeleton │ │ │ ├── ode.motion.1472.skeleton │ │ │ ├── ode.motion.1473.skeleton │ │ │ ├── ode.motion.1474.skeleton │ │ │ ├── ode.motion.1475.skeleton │ │ │ ├── ode.motion.1476.skeleton │ │ │ ├── ode.motion.1477.skeleton │ │ │ ├── ode.motion.1478.skeleton │ │ │ ├── ode.motion.1479.skeleton │ │ │ ├── ode.motion.1480.skeleton │ │ │ ├── ode.motion.1481.skeleton │ │ │ ├── ode.motion.1482.skeleton │ │ │ ├── ode.motion.1483.skeleton │ │ │ ├── ode.motion.1484.skeleton │ │ │ ├── ode.motion.1485.skeleton │ │ │ ├── ode.motion.1486.skeleton │ │ │ ├── ode.motion.1487.skeleton │ │ │ ├── ode.motion.1488.skeleton │ │ │ ├── ode.motion.1489.skeleton │ │ │ ├── ode.motion.1490.skeleton │ │ │ ├── ode.motion.1491.skeleton │ │ │ ├── ode.motion.1492.skeleton │ │ │ ├── ode.motion.1493.skeleton │ │ │ ├── ode.motion.1494.skeleton │ │ │ ├── ode.motion.1495.skeleton │ │ │ ├── ode.motion.1496.skeleton │ │ │ ├── ode.motion.1497.skeleton │ │ │ ├── ode.motion.1498.skeleton │ │ │ ├── ode.motion.1499.skeleton │ │ │ ├── ode.motion.1500.skeleton │ │ │ ├── ode.motion.1501.skeleton │ │ │ ├── ode.motion.1502.skeleton │ │ │ ├── ode.motion.1503.skeleton │ │ │ ├── ode.motion.1504.skeleton │ │ │ ├── ode.motion.1505.skeleton │ │ │ ├── ode.motion.1506.skeleton │ │ │ ├── ode.motion.1507.skeleton │ │ │ ├── ode.motion.1508.skeleton │ │ │ ├── ode.motion.1509.skeleton │ │ │ ├── ode.motion.1510.skeleton │ │ │ ├── ode.motion.1511.skeleton │ │ │ ├── ode.motion.1512.skeleton │ │ │ ├── ode.motion.1513.skeleton │ │ │ ├── ode.motion.1514.skeleton │ │ │ ├── ode.motion.1515.skeleton │ │ │ ├── ode.motion.1516.skeleton │ │ │ ├── ode.motion.1517.skeleton │ │ │ ├── ode.motion.1518.skeleton │ │ │ ├── ode.motion.1519.skeleton │ │ │ ├── ode.motion.1520.skeleton │ │ │ ├── ode.motion.1521.skeleton │ │ │ ├── ode.motion.1522.skeleton │ │ │ ├── ode.motion.1523.skeleton │ │ │ ├── ode.motion.1524.skeleton │ │ │ ├── ode.motion.1525.skeleton │ │ │ ├── ode.motion.1526.skeleton │ │ │ ├── ode.motion.1527.skeleton │ │ │ ├── ode.motion.1528.skeleton │ │ │ ├── ode.motion.1529.skeleton │ │ │ ├── ode.motion.1530.skeleton │ │ │ ├── ode.motion.1531.skeleton │ │ │ ├── ode.motion.1532.skeleton │ │ │ ├── ode.motion.1533.skeleton │ │ │ ├── ode.motion.1534.skeleton │ │ │ ├── ode.motion.1535.skeleton │ │ │ ├── ode.motion.1536.skeleton │ │ │ ├── ode.motion.1537.skeleton │ │ │ ├── ode.motion.1538.skeleton │ │ │ ├── ode.motion.1539.skeleton │ │ │ ├── ode.motion.1540.skeleton │ │ │ ├── ode.motion.1541.skeleton │ │ │ ├── ode.motion.1542.skeleton │ │ │ ├── ode.motion.1543.skeleton │ │ │ ├── ode.motion.1544.skeleton │ │ │ ├── ode.motion.1545.skeleton │ │ │ ├── ode.motion.1546.skeleton │ │ │ ├── ode.motion.1547.skeleton │ │ │ ├── ode.motion.1548.skeleton │ │ │ ├── ode.motion.1549.skeleton │ │ │ ├── ode.motion.1550.skeleton │ │ │ ├── ode.motion.1551.skeleton │ │ │ ├── ode.motion.1552.skeleton │ │ │ ├── ode.motion.1553.skeleton │ │ │ ├── ode.motion.1554.skeleton │ │ │ ├── ode.motion.1555.skeleton │ │ │ ├── ode.motion.1556.skeleton │ │ │ ├── ode.motion.1557.skeleton │ │ │ ├── ode.motion.1558.skeleton │ │ │ ├── ode.motion.1559.skeleton │ │ │ ├── ode.motion.1560.skeleton │ │ │ ├── ode.motion.1561.skeleton │ │ │ ├── ode.motion.1562.skeleton │ │ │ ├── ode.motion.1563.skeleton │ │ │ ├── ode.motion.1564.skeleton │ │ │ ├── ode.motion.1565.skeleton │ │ │ ├── ode.motion.1566.skeleton │ │ │ ├── ode.motion.1567.skeleton │ │ │ ├── ode.motion.1568.skeleton │ │ │ ├── ode.motion.1569.skeleton │ │ │ ├── ode.motion.1570.skeleton │ │ │ ├── ode.motion.1571.skeleton │ │ │ ├── ode.motion.1572.skeleton │ │ │ ├── ode.motion.1573.skeleton │ │ │ ├── ode.motion.1574.skeleton │ │ │ ├── ode.motion.1575.skeleton │ │ │ ├── ode.motion.1576.skeleton │ │ │ ├── ode.motion.1577.skeleton │ │ │ ├── ode.motion.1578.skeleton │ │ │ ├── ode.motion.1579.skeleton │ │ │ ├── ode.motion.1580.skeleton │ │ │ ├── ode.motion.1581.skeleton │ │ │ ├── ode.motion.1582.skeleton │ │ │ ├── ode.motion.1583.skeleton │ │ │ ├── ode.motion.1584.skeleton │ │ │ ├── ode.motion.1585.skeleton │ │ │ ├── ode.motion.1586.skeleton │ │ │ ├── ode.motion.1587.skeleton │ │ │ ├── ode.motion.1588.skeleton │ │ │ ├── ode.motion.1589.skeleton │ │ │ ├── ode.motion.1590.skeleton │ │ │ ├── ode.motion.1591.skeleton │ │ │ ├── ode.motion.1592.skeleton │ │ │ ├── ode.motion.1593.skeleton │ │ │ ├── ode.motion.1594.skeleton │ │ │ ├── ode.motion.1595.skeleton │ │ │ ├── ode.motion.1596.skeleton │ │ │ ├── ode.motion.1597.skeleton │ │ │ ├── ode.motion.1598.skeleton │ │ │ ├── ode.motion.1599.skeleton │ │ │ ├── ode.motion.1600.skeleton │ │ │ ├── ode.motion.1601.skeleton │ │ │ ├── ode.motion.1602.skeleton │ │ │ ├── ode.motion.1603.skeleton │ │ │ ├── ode.motion.1604.skeleton │ │ │ ├── ode.motion.1605.skeleton │ │ │ ├── ode.motion.1606.skeleton │ │ │ ├── ode.motion.1607.skeleton │ │ │ ├── ode.motion.1608.skeleton │ │ │ ├── ode.motion.1609.skeleton │ │ │ ├── ode.motion.1610.skeleton │ │ │ ├── ode.motion.1611.skeleton │ │ │ ├── ode.motion.1612.skeleton │ │ │ ├── ode.motion.1613.skeleton │ │ │ ├── ode.motion.1614.skeleton │ │ │ ├── ode.motion.1615.skeleton │ │ │ ├── ode.motion.1616.skeleton │ │ │ ├── ode.motion.1617.skeleton │ │ │ ├── ode.motion.1618.skeleton │ │ │ ├── ode.motion.1619.skeleton │ │ │ ├── ode.motion.1620.skeleton │ │ │ ├── ode.motion.1621.skeleton │ │ │ ├── ode.motion.1622.skeleton │ │ │ ├── ode.motion.1623.skeleton │ │ │ ├── ode.motion.1624.skeleton │ │ │ ├── ode.motion.1625.skeleton │ │ │ ├── ode.motion.1626.skeleton │ │ │ ├── ode.motion.1627.skeleton │ │ │ ├── ode.motion.1628.skeleton │ │ │ ├── ode.motion.1629.skeleton │ │ │ ├── ode.motion.1630.skeleton │ │ │ ├── ode.motion.1631.skeleton │ │ │ ├── ode.motion.1632.skeleton │ │ │ ├── ode.motion.1633.skeleton │ │ │ ├── ode.motion.1634.skeleton │ │ │ ├── ode.motion.1635.skeleton │ │ │ ├── ode.motion.1636.skeleton │ │ │ ├── ode.motion.1637.skeleton │ │ │ ├── ode.motion.1638.skeleton │ │ │ ├── ode.motion.1639.skeleton │ │ │ ├── ode.motion.1640.skeleton │ │ │ ├── ode.motion.1641.skeleton │ │ │ ├── ode.motion.1642.skeleton │ │ │ ├── ode.motion.1643.skeleton │ │ │ ├── ode.motion.1644.skeleton │ │ │ ├── ode.motion.1645.skeleton │ │ │ ├── ode.motion.1646.skeleton │ │ │ ├── ode.motion.1647.skeleton │ │ │ ├── ode.motion.1648.skeleton │ │ │ ├── ode.motion.1649.skeleton │ │ │ ├── ode.motion.1650.skeleton │ │ │ ├── ode.motion.1651.skeleton │ │ │ ├── ode.motion.1652.skeleton │ │ │ ├── ode.motion.1653.skeleton │ │ │ ├── ode.motion.1654.skeleton │ │ │ ├── ode.motion.1655.skeleton │ │ │ ├── ode.motion.1656.skeleton │ │ │ ├── ode.motion.1657.skeleton │ │ │ ├── ode.motion.1658.skeleton │ │ │ ├── ode.motion.1659.skeleton │ │ │ ├── ode.motion.1660.skeleton │ │ │ ├── ode.motion.1661.skeleton │ │ │ ├── ode.motion.1662.skeleton │ │ │ ├── ode.motion.1663.skeleton │ │ │ ├── ode.motion.1664.skeleton │ │ │ ├── ode.motion.1665.skeleton │ │ │ ├── ode.motion.1666.skeleton │ │ │ ├── ode.motion.1667.skeleton │ │ │ ├── ode.motion.1668.skeleton │ │ │ ├── ode.motion.1669.skeleton │ │ │ ├── ode.motion.1670.skeleton │ │ │ ├── ode.motion.1671.skeleton │ │ │ ├── ode.motion.1672.skeleton │ │ │ ├── ode.motion.1673.skeleton │ │ │ ├── ode.motion.1674.skeleton │ │ │ ├── ode.motion.1675.skeleton │ │ │ ├── ode.motion.1676.skeleton │ │ │ ├── ode.motion.1677.skeleton │ │ │ ├── ode.motion.1678.skeleton │ │ │ ├── ode.motion.1679.skeleton │ │ │ ├── ode.motion.1680.skeleton │ │ │ ├── ode.motion.1681.skeleton │ │ │ ├── ode.motion.1682.skeleton │ │ │ ├── ode.motion.1683.skeleton │ │ │ ├── ode.motion.1684.skeleton │ │ │ ├── ode.motion.1685.skeleton │ │ │ ├── ode.motion.1686.skeleton │ │ │ ├── ode.motion.1687.skeleton │ │ │ ├── ode.motion.1688.skeleton │ │ │ ├── ode.motion.1689.skeleton │ │ │ ├── ode.motion.1690.skeleton │ │ │ ├── ode.motion.1691.skeleton │ │ │ ├── ode.motion.1692.skeleton │ │ │ ├── ode.motion.1693.skeleton │ │ │ ├── ode.motion.1694.skeleton │ │ │ ├── ode.motion.1695.skeleton │ │ │ ├── ode.motion.1696.skeleton │ │ │ ├── ode.motion.1697.skeleton │ │ │ ├── ode.motion.1698.skeleton │ │ │ ├── ode.motion.1699.skeleton │ │ │ ├── ode.motion.1700.skeleton │ │ │ ├── ode.motion.1701.skeleton │ │ │ ├── ode.motion.1702.skeleton │ │ │ ├── ode.motion.1703.skeleton │ │ │ ├── ode.motion.1704.skeleton │ │ │ ├── ode.motion.1705.skeleton │ │ │ ├── ode.motion.1706.skeleton │ │ │ ├── ode.motion.1707.skeleton │ │ │ ├── ode.motion.1708.skeleton │ │ │ ├── ode.motion.1709.skeleton │ │ │ ├── ode.motion.1710.skeleton │ │ │ ├── ode.motion.1711.skeleton │ │ │ ├── ode.motion.1712.skeleton │ │ │ ├── ode.motion.1713.skeleton │ │ │ ├── ode.motion.1714.skeleton │ │ │ ├── ode.motion.1715.skeleton │ │ │ ├── ode.motion.1716.skeleton │ │ │ ├── ode.motion.1717.skeleton │ │ │ ├── ode.motion.1718.skeleton │ │ │ ├── ode.motion.1719.skeleton │ │ │ ├── ode.motion.1720.skeleton │ │ │ ├── ode.motion.1721.skeleton │ │ │ ├── ode.motion.1722.skeleton │ │ │ ├── ode.motion.1723.skeleton │ │ │ ├── ode.motion.1724.skeleton │ │ │ ├── ode.motion.1725.skeleton │ │ │ ├── ode.motion.1726.skeleton │ │ │ ├── ode.motion.1727.skeleton │ │ │ ├── ode.motion.1728.skeleton │ │ │ ├── ode.motion.1729.skeleton │ │ │ ├── ode.motion.1730.skeleton │ │ │ ├── ode.motion.1731.skeleton │ │ │ ├── ode.motion.1732.skeleton │ │ │ ├── ode.motion.1733.skeleton │ │ │ ├── ode.motion.1734.skeleton │ │ │ ├── ode.motion.1735.skeleton │ │ │ ├── ode.motion.1736.skeleton │ │ │ ├── ode.motion.1737.skeleton │ │ │ ├── ode.motion.1738.skeleton │ │ │ ├── ode.motion.1739.skeleton │ │ │ ├── ode.motion.1740.skeleton │ │ │ ├── ode.motion.1741.skeleton │ │ │ ├── ode.motion.1742.skeleton │ │ │ ├── ode.motion.1743.skeleton │ │ │ ├── ode.motion.1744.skeleton │ │ │ ├── ode.motion.1745.skeleton │ │ │ ├── ode.motion.1746.skeleton │ │ │ ├── ode.motion.1747.skeleton │ │ │ ├── ode.motion.1748.skeleton │ │ │ ├── ode.motion.1749.skeleton │ │ │ ├── ode.motion.1750.skeleton │ │ │ ├── ode.motion.1751.skeleton │ │ │ ├── ode.motion.1752.skeleton │ │ │ ├── ode.motion.1753.skeleton │ │ │ ├── ode.motion.1754.skeleton │ │ │ ├── ode.motion.1755.skeleton │ │ │ ├── ode.motion.1756.skeleton │ │ │ ├── ode.motion.1757.skeleton │ │ │ ├── ode.motion.1758.skeleton │ │ │ ├── ode.motion.1759.skeleton │ │ │ ├── ode.motion.1760.skeleton │ │ │ ├── ode.motion.1761.skeleton │ │ │ ├── ode.motion.1762.skeleton │ │ │ ├── ode.motion.1763.skeleton │ │ │ ├── ode.motion.1764.skeleton │ │ │ ├── ode.motion.1765.skeleton │ │ │ ├── ode.motion.1766.skeleton │ │ │ ├── ode.motion.1767.skeleton │ │ │ ├── ode.motion.1768.skeleton │ │ │ ├── ode.motion.1769.skeleton │ │ │ ├── ode.motion.1770.skeleton │ │ │ ├── ode.motion.1771.skeleton │ │ │ ├── ode.motion.1772.skeleton │ │ │ ├── ode.motion.1773.skeleton │ │ │ ├── ode.motion.1774.skeleton │ │ │ ├── ode.motion.1775.skeleton │ │ │ ├── ode.motion.1776.skeleton │ │ │ ├── ode.motion.1777.skeleton │ │ │ ├── ode.motion.1778.skeleton │ │ │ ├── ode.motion.1779.skeleton │ │ │ ├── ode.motion.1780.skeleton │ │ │ ├── ode.motion.1781.skeleton │ │ │ ├── ode.motion.1782.skeleton │ │ │ ├── ode.motion.1783.skeleton │ │ │ ├── ode.motion.1784.skeleton │ │ │ ├── ode.motion.1785.skeleton │ │ │ ├── ode.motion.1786.skeleton │ │ │ ├── ode.motion.1787.skeleton │ │ │ ├── ode.motion.1788.skeleton │ │ │ ├── ode.motion.1789.skeleton │ │ │ ├── ode.motion.1790.skeleton │ │ │ ├── ode.motion.1791.skeleton │ │ │ ├── ode.motion.1792.skeleton │ │ │ ├── ode.motion.1793.skeleton │ │ │ ├── ode.motion.1794.skeleton │ │ │ ├── ode.motion.1795.skeleton │ │ │ ├── ode.motion.1796.skeleton │ │ │ ├── ode.motion.1797.skeleton │ │ │ ├── ode.motion.1798.skeleton │ │ │ ├── ode.motion.1799.skeleton │ │ │ ├── ode.motion.1800.skeleton │ │ │ ├── ode.motion.1801.skeleton │ │ │ ├── ode.motion.1802.skeleton │ │ │ ├── ode.motion.1803.skeleton │ │ │ ├── ode.motion.1804.skeleton │ │ │ ├── ode.motion.1805.skeleton │ │ │ ├── ode.motion.1806.skeleton │ │ │ ├── ode.motion.1807.skeleton │ │ │ ├── ode.motion.1808.skeleton │ │ │ ├── ode.motion.1809.skeleton │ │ │ ├── ode.motion.1810.skeleton │ │ │ ├── ode.motion.1811.skeleton │ │ │ ├── ode.motion.1812.skeleton │ │ │ ├── ode.motion.1813.skeleton │ │ │ ├── ode.motion.1814.skeleton │ │ │ ├── ode.motion.1815.skeleton │ │ │ ├── ode.motion.1816.skeleton │ │ │ ├── ode.motion.1817.skeleton │ │ │ ├── ode.motion.1818.skeleton │ │ │ ├── ode.motion.1819.skeleton │ │ │ ├── ode.motion.1820.skeleton │ │ │ ├── ode.motion.1821.skeleton │ │ │ ├── ode.motion.1822.skeleton │ │ │ ├── ode.motion.1823.skeleton │ │ │ ├── ode.motion.1824.skeleton │ │ │ ├── ode.motion.1825.skeleton │ │ │ ├── ode.motion.1826.skeleton │ │ │ ├── ode.motion.1827.skeleton │ │ │ ├── ode.motion.1828.skeleton │ │ │ ├── ode.motion.1829.skeleton │ │ │ ├── ode.motion.1830.skeleton │ │ │ ├── ode.motion.1831.skeleton │ │ │ ├── ode.motion.1832.skeleton │ │ │ ├── ode.motion.1833.skeleton │ │ │ ├── ode.motion.1834.skeleton │ │ │ ├── ode.motion.1835.skeleton │ │ │ ├── ode.motion.1836.skeleton │ │ │ ├── ode.motion.1837.skeleton │ │ │ ├── ode.motion.1838.skeleton │ │ │ ├── ode.motion.1839.skeleton │ │ │ ├── ode.motion.1840.skeleton │ │ │ ├── ode.motion.1841.skeleton │ │ │ ├── ode.motion.1842.skeleton │ │ │ ├── ode.motion.1843.skeleton │ │ │ ├── ode.motion.1844.skeleton │ │ │ ├── ode.motion.1845.skeleton │ │ │ ├── ode.motion.1846.skeleton │ │ │ ├── ode.motion.1847.skeleton │ │ │ ├── ode.motion.1848.skeleton │ │ │ ├── ode.motion.1849.skeleton │ │ │ ├── ode.motion.1850.skeleton │ │ │ ├── ode.motion.1851.skeleton │ │ │ ├── ode.motion.1852.skeleton │ │ │ ├── ode.motion.1853.skeleton │ │ │ ├── ode.motion.1854.skeleton │ │ │ ├── ode.motion.1855.skeleton │ │ │ ├── ode.motion.1856.skeleton │ │ │ ├── ode.motion.1857.skeleton │ │ │ ├── ode.motion.1858.skeleton │ │ │ ├── ode.motion.1859.skeleton │ │ │ ├── ode.motion.1860.skeleton │ │ │ ├── ode.motion.1861.skeleton │ │ │ ├── ode.motion.1862.skeleton │ │ │ ├── ode.motion.1863.skeleton │ │ │ ├── ode.motion.1864.skeleton │ │ │ ├── ode.motion.1865.skeleton │ │ │ ├── ode.motion.1866.skeleton │ │ │ ├── ode.motion.1867.skeleton │ │ │ ├── ode.motion.1868.skeleton │ │ │ ├── ode.motion.1869.skeleton │ │ │ ├── ode.motion.1870.skeleton │ │ │ ├── ode.motion.1871.skeleton │ │ │ ├── ode.motion.1872.skeleton │ │ │ ├── ode.motion.1873.skeleton │ │ │ ├── ode.motion.1874.skeleton │ │ │ ├── ode.motion.1875.skeleton │ │ │ ├── ode.motion.1876.skeleton │ │ │ ├── ode.motion.1877.skeleton │ │ │ ├── ode.motion.1878.skeleton │ │ │ ├── ode.motion.1879.skeleton │ │ │ ├── ode.motion.1880.skeleton │ │ │ ├── ode.motion.1881.skeleton │ │ │ ├── ode.motion.1882.skeleton │ │ │ ├── ode.motion.1883.skeleton │ │ │ ├── ode.motion.1884.skeleton │ │ │ ├── ode.motion.1885.skeleton │ │ │ ├── ode.motion.1886.skeleton │ │ │ ├── ode.motion.1887.skeleton │ │ │ ├── ode.motion.1888.skeleton │ │ │ ├── ode.motion.1889.skeleton │ │ │ ├── ode.motion.1890.skeleton │ │ │ ├── ode.motion.1891.skeleton │ │ │ ├── ode.motion.1892.skeleton │ │ │ ├── ode.motion.1893.skeleton │ │ │ ├── ode.motion.1894.skeleton │ │ │ ├── ode.motion.1895.skeleton │ │ │ ├── ode.motion.1896.skeleton │ │ │ ├── ode.motion.1897.skeleton │ │ │ ├── ode.motion.1898.skeleton │ │ │ ├── ode.motion.1899.skeleton │ │ │ ├── ode.motion.1900.skeleton │ │ │ ├── ode.motion.1901.skeleton │ │ │ ├── ode.motion.1902.skeleton │ │ │ ├── ode.motion.1903.skeleton │ │ │ ├── ode.motion.1904.skeleton │ │ │ ├── ode.motion.1905.skeleton │ │ │ ├── ode.motion.1906.skeleton │ │ │ ├── ode.motion.1907.skeleton │ │ │ ├── ode.motion.1908.skeleton │ │ │ ├── ode.motion.1909.skeleton │ │ │ ├── ode.motion.1910.skeleton │ │ │ ├── ode.motion.1911.skeleton │ │ │ ├── ode.motion.1912.skeleton │ │ │ ├── ode.motion.1913.skeleton │ │ │ ├── ode.motion.1914.skeleton │ │ │ ├── ode.motion.1915.skeleton │ │ │ ├── ode.motion.1916.skeleton │ │ │ ├── ode.motion.1917.skeleton │ │ │ ├── ode.motion.1918.skeleton │ │ │ ├── ode.motion.1919.skeleton │ │ │ ├── ode.motion.1920.skeleton │ │ │ ├── ode.motion.1921.skeleton │ │ │ ├── ode.motion.1922.skeleton │ │ │ ├── ode.motion.1923.skeleton │ │ │ ├── ode.motion.1924.skeleton │ │ │ ├── ode.motion.1925.skeleton │ │ │ ├── ode.motion.1926.skeleton │ │ │ ├── ode.motion.1927.skeleton │ │ │ ├── ode.motion.1928.skeleton │ │ │ ├── ode.motion.1929.skeleton │ │ │ ├── ode.motion.1930.skeleton │ │ │ ├── ode.motion.1931.skeleton │ │ │ ├── ode.motion.1932.skeleton │ │ │ ├── ode.motion.1933.skeleton │ │ │ ├── ode.motion.1934.skeleton │ │ │ ├── ode.motion.1935.skeleton │ │ │ ├── ode.motion.1936.skeleton │ │ │ ├── ode.motion.1937.skeleton │ │ │ ├── ode.motion.1938.skeleton │ │ │ ├── ode.motion.1939.skeleton │ │ │ ├── ode.motion.1940.skeleton │ │ │ ├── ode.motion.1941.skeleton │ │ │ ├── ode.motion.1942.skeleton │ │ │ ├── ode.motion.1943.skeleton │ │ │ ├── ode.motion.1944.skeleton │ │ │ ├── ode.motion.1945.skeleton │ │ │ ├── ode.motion.1946.skeleton │ │ │ ├── ode.motion.1947.skeleton │ │ │ ├── ode.motion.1948.skeleton │ │ │ ├── ode.motion.1949.skeleton │ │ │ ├── ode.motion.1950.skeleton │ │ │ ├── ode.motion.1951.skeleton │ │ │ ├── ode.motion.1952.skeleton │ │ │ ├── ode.motion.1953.skeleton │ │ │ ├── ode.motion.1954.skeleton │ │ │ ├── ode.motion.1955.skeleton │ │ │ ├── ode.motion.1956.skeleton │ │ │ ├── ode.motion.1957.skeleton │ │ │ ├── ode.motion.1958.skeleton │ │ │ ├── ode.motion.1959.skeleton │ │ │ ├── ode.motion.1960.skeleton │ │ │ ├── ode.motion.1961.skeleton │ │ │ ├── ode.motion.1962.skeleton │ │ │ ├── ode.motion.1963.skeleton │ │ │ ├── ode.motion.1964.skeleton │ │ │ ├── ode.motion.1965.skeleton │ │ │ ├── ode.motion.1966.skeleton │ │ │ ├── ode.motion.1967.skeleton │ │ │ ├── ode.motion.1968.skeleton │ │ │ ├── ode.motion.1969.skeleton │ │ │ ├── ode.motion.1970.skeleton │ │ │ ├── ode.motion.1971.skeleton │ │ │ ├── ode.motion.1972.skeleton │ │ │ ├── ode.motion.1973.skeleton │ │ │ ├── ode.motion.1974.skeleton │ │ │ ├── ode.motion.1975.skeleton │ │ │ ├── ode.motion.1976.skeleton │ │ │ ├── ode.motion.1977.skeleton │ │ │ ├── ode.motion.1978.skeleton │ │ │ ├── ode.motion.1979.skeleton │ │ │ ├── ode.motion.1980.skeleton │ │ │ ├── ode.motion.1981.skeleton │ │ │ ├── ode.motion.1982.skeleton │ │ │ ├── ode.motion.1983.skeleton │ │ │ ├── ode.motion.1984.skeleton │ │ │ ├── ode.motion.1985.skeleton │ │ │ ├── ode.motion.1986.skeleton │ │ │ ├── ode.motion.1987.skeleton │ │ │ ├── ode.motion.1988.skeleton │ │ │ ├── ode.motion.1989.skeleton │ │ │ ├── ode.motion.1990.skeleton │ │ │ ├── ode.motion.1991.skeleton │ │ │ ├── ode.motion.1992.skeleton │ │ │ ├── ode.motion.1993.skeleton │ │ │ ├── ode.motion.1994.skeleton │ │ │ ├── ode.motion.1995.skeleton │ │ │ ├── ode.motion.1996.skeleton │ │ │ ├── ode.motion.1997.skeleton │ │ │ ├── ode.motion.1998.skeleton │ │ │ └── ode.motion.1999.skeleton │ │ ├── logs │ │ └── .DS_Store │ │ ├── projects │ │ ├── ArpackLMA │ │ │ ├── Makefile.linux │ │ │ ├── Makefile.linux.old │ │ │ ├── Makefile.osx │ │ │ └── main.cpp │ │ ├── CubatureGenerator │ │ │ ├── Makefile.linux │ │ │ ├── Makefile.osx │ │ │ ├── main.cpp │ │ │ └── main.o │ │ ├── CubatureViewer │ │ │ ├── Makefile.linux │ │ │ ├── Makefile.osx │ │ │ └── main.cpp │ │ ├── IsoStuffer │ │ │ ├── Makefile.linux │ │ │ ├── Makefile.osx │ │ │ ├── main.cpp │ │ │ └── regression.cpp │ │ ├── MeshViewer │ │ │ ├── Makefile.linux │ │ │ ├── Makefile.osx │ │ │ ├── main.cpp │ │ │ └── main.o │ │ ├── ModalDerivatives │ │ │ ├── Makefile.linux │ │ │ ├── Makefile.osx │ │ │ └── main.cpp │ │ ├── ModalDerivativesCubatureGenerator │ │ │ ├── Makefile.linux │ │ │ ├── Makefile.osx │ │ │ └── main.cpp │ │ ├── ODE │ │ │ ├── armadillo_joint_samples.cpp │ │ │ └── armadillo_teeth.cpp │ │ ├── OdeCubatureViewer │ │ │ ├── Makefile.linux │ │ │ ├── Makefile.osx │ │ │ └── main.cpp │ │ ├── OdeIsoStuffer │ │ │ ├── Makefile.linux │ │ │ ├── Makefile.osx │ │ │ ├── Makefile.osx.old │ │ │ ├── main.capsules.cpp │ │ │ └── main.cpp │ │ ├── OdePartitioner │ │ │ ├── Makefile.linux │ │ │ ├── Makefile.osx │ │ │ └── main.cpp │ │ ├── OdePoseLMACubatureGenerator │ │ │ ├── Makefile.linux │ │ │ ├── Makefile.osx │ │ │ └── main.cpp │ │ ├── OdePoseSpaceSampler │ │ │ ├── Makefile.linux │ │ │ ├── Makefile.osx │ │ │ └── main.cpp │ │ ├── OdePrecomputeSandwiches │ │ │ ├── Makefile.linux │ │ │ ├── Makefile.osx │ │ │ └── main.cpp │ │ ├── OdeTetViewer │ │ │ ├── Makefile.linux │ │ │ ├── Makefile.osx │ │ │ └── main.cpp │ │ ├── PrintVector │ │ │ ├── Makefile.linux │ │ │ ├── Makefile.osx │ │ │ └── main.cpp │ │ ├── SkinnedViewer │ │ │ ├── Makefile.linux │ │ │ ├── Makefile.osx │ │ │ └── main.cpp │ │ └── culberson │ │ │ ├── README │ │ │ ├── bkdmain.c │ │ │ ├── bkdmain.o │ │ │ ├── bktdsat.c │ │ │ ├── bktdsat.h │ │ │ ├── bktdsat.o │ │ │ ├── brute.c │ │ │ ├── brute.h │ │ │ ├── brute.o │ │ │ ├── colorrtns.c │ │ │ ├── colorrtns.h │ │ │ ├── colorrtns.o │ │ │ ├── dmain.c │ │ │ ├── dmain.o │ │ │ ├── dsatur.c │ │ │ ├── dsatur.h │ │ │ ├── dsatur.o │ │ │ ├── gmain.c │ │ │ ├── gmain.o │ │ │ ├── graph.c │ │ │ ├── graph.h │ │ │ ├── graph.o │ │ │ ├── greedy.c │ │ │ ├── greedy.h │ │ │ ├── greedy.o │ │ │ ├── igmain.c │ │ │ ├── igmain.o │ │ │ ├── itrgrdy.c │ │ │ ├── itrgrdy.h │ │ │ ├── itrgrdy.o │ │ │ ├── makefile │ │ │ ├── maxclique.c │ │ │ ├── maxclique.h │ │ │ ├── maxclique.o │ │ │ ├── maxis.c │ │ │ ├── maxis.h │ │ │ ├── maxis.o │ │ │ ├── mmain.c │ │ │ ├── mmain.o │ │ │ ├── mysys.h │ │ │ ├── partition.c │ │ │ ├── partition.h │ │ │ ├── partition.o │ │ │ ├── tabu.c │ │ │ ├── tabu.h │ │ │ ├── tabu.o │ │ │ ├── tbumain.c │ │ │ └── tbumain.o │ │ ├── renders │ │ └── .DS_Store │ │ └── src │ │ ├── cubature │ │ ├── CUBATURE_GENERATOR.cpp │ │ ├── CUBATURE_GENERATOR.h │ │ ├── ONLINE_CUBATURE_GENERATOR.cpp │ │ ├── ONLINE_CUBATURE_GENERATOR.h │ │ ├── PARTITIONED_CUBATURE_GENERATOR.cpp │ │ └── PARTITIONED_CUBATURE_GENERATOR.h │ │ ├── culberson │ │ ├── README │ │ ├── bkdmain.c │ │ ├── bktdsat │ │ ├── bktdsat.c │ │ ├── bktdsat.h │ │ ├── brute.c │ │ ├── brute.h │ │ ├── colorrtns.c │ │ ├── colorrtns.h │ │ ├── dmain.c │ │ ├── dsatur │ │ ├── dsatur.c │ │ ├── dsatur.h │ │ ├── gmain.c │ │ ├── graph.c │ │ ├── graph.h │ │ ├── greedy │ │ ├── greedy.c │ │ ├── greedy.h │ │ ├── igmain.c │ │ ├── itrgrdy │ │ ├── itrgrdy.c │ │ ├── itrgrdy.h │ │ ├── makefile │ │ ├── maxclique.c │ │ ├── maxclique.h │ │ ├── maxis │ │ ├── maxis.c │ │ ├── maxis.h │ │ ├── mmain.c │ │ ├── mysys.h │ │ ├── partition.c │ │ ├── partition.h │ │ ├── tabu │ │ ├── tabu.c │ │ ├── tabu.h │ │ └── tbumain.c │ │ ├── geometry │ │ ├── BD_TREE.cpp │ │ ├── BD_TREE.h │ │ ├── BONE.h │ │ ├── BOX.cpp │ │ ├── BOX.h │ │ ├── BOX_TRIANGLE_INTERSECTION.cpp │ │ ├── COLLISION_RESPONSE.h │ │ ├── COMPOUND.cpp │ │ ├── COMPOUND.h │ │ ├── CYLINDER.cpp │ │ ├── CYLINDER.h │ │ ├── ISO_STUFFER.cpp │ │ ├── ISO_STUFFER.h │ │ ├── ISO_STUFFER_DEBUG.cpp │ │ ├── OBJ.cpp │ │ ├── OBJ.h │ │ ├── PARTITIONED_SKINNED_SUBSPACE_TET_MESH.cpp │ │ ├── PARTITIONED_SKINNED_SUBSPACE_TET_MESH.h │ │ ├── PARTITIONED_SUBSPACE_TET_MESH.cpp │ │ ├── PARTITIONED_SUBSPACE_TET_MESH.h │ │ ├── PARTITIONED_TET_MESH.cpp │ │ ├── PARTITIONED_TET_MESH.h │ │ ├── PLANE.cpp │ │ ├── PLANE.h │ │ ├── PLANE_COLLISION.cpp │ │ ├── PLANE_COLLISION.h │ │ ├── SKELETON.cpp │ │ ├── SKELETON.h │ │ ├── SPHERE.cpp │ │ ├── SPHERE.h │ │ ├── SPHERE_TREE.cpp │ │ ├── SPHERE_TREE.h │ │ ├── SUBSPACE_TET_MESH.cpp │ │ ├── SUBSPACE_TET_MESH.h │ │ ├── SURFACE.cpp │ │ ├── SURFACE.h │ │ ├── TET.cpp │ │ ├── TET.h │ │ ├── TET_MESH.cpp │ │ ├── TET_MESH.h │ │ ├── TRIANGLE.cpp │ │ ├── TRIANGLE.h │ │ ├── TRIANGLE_TRIANGLE_INTERSECTION.cpp │ │ ├── UNCONSTRAINED_SUBSPACE_TET_MESH.cpp │ │ ├── UNCONSTRAINED_SUBSPACE_TET_MESH.h │ │ ├── UNCONSTRAINED_TET_MESH.cpp │ │ ├── UNCONSTRAINED_TET_MESH.h │ │ ├── ply.h │ │ └── plyfile.cpp │ │ ├── integrator │ │ ├── FULLSPACE_INTEGRATOR.cpp │ │ ├── FULLSPACE_INTEGRATOR.h │ │ ├── ONLINE_SUBSPACE_INTEGRATOR.cpp │ │ ├── ONLINE_SUBSPACE_INTEGRATOR.h │ │ ├── SUBSPACE_INTEGRATOR.cpp │ │ ├── SUBSPACE_INTEGRATOR.h │ │ ├── SUBSPACE_MULTIBODY_INTEGRATOR.cpp │ │ ├── SUBSPACE_MULTIBODY_INTEGRATOR.h │ │ ├── UNCONSTRAINED_FULLSPACE_INTEGRATOR.cpp │ │ ├── UNCONSTRAINED_FULLSPACE_INTEGRATOR.h │ │ ├── UNCONSTRAINED_SUBSPACE_INTEGRATOR.cpp │ │ └── UNCONSTRAINED_SUBSPACE_INTEGRATOR.h │ │ ├── linearalgebra │ │ ├── BLOCK_DIAGONAL_MATRIX.cpp │ │ ├── BLOCK_DIAGONAL_MATRIX.h │ │ ├── BLOCK_MATRIX.cpp │ │ ├── BLOCK_MATRIX.h │ │ ├── BLOCK_SPARSE_MATRIX.cpp │ │ ├── BLOCK_SPARSE_MATRIX.h │ │ ├── BLOCK_VECTOR.cpp │ │ ├── BLOCK_VECTOR.h │ │ ├── DIAGONAL.cpp │ │ ├── DIAGONAL.h │ │ ├── INCOMPLETE_CHOLESKY.cpp │ │ ├── INCOMPLETE_CHOLESKY.h │ │ ├── MATRIX.cpp │ │ ├── MATRIX.h │ │ ├── MATRIX3.cpp │ │ ├── MATRIX3.h │ │ ├── MATRIX_DEBUG.cpp │ │ ├── MATRIX_EIGS3X3.cpp │ │ ├── MATRIX_FAST.cpp │ │ ├── MATRIX_OSX.cpp │ │ ├── NNLS.cpp │ │ ├── NNLS.h │ │ ├── PCG_MATRIX.cpp │ │ ├── PCG_MATRIX.h │ │ ├── PRECONDITIONER.h │ │ ├── QUATERNION.cpp │ │ ├── QUATERNION.h │ │ ├── SANDWICH_TRANSFORM.cpp │ │ ├── SANDWICH_TRANSFORM.h │ │ ├── SPARSE_MATRIX.cpp │ │ ├── SPARSE_MATRIX.h │ │ ├── SPARSE_PCG_MATRIX.cpp │ │ ├── SPARSE_PCG_MATRIX.h │ │ ├── SPARSE_PETSC_MATRIX.cpp │ │ ├── SPARSE_PETSC_MATRIX.h │ │ ├── SUBMATRIX.h │ │ ├── TENSOR3.cpp │ │ ├── TENSOR3.h │ │ ├── VEC2.h │ │ ├── VEC3.h │ │ ├── VECTOR.cpp │ │ ├── VECTOR.h │ │ ├── VECTOR_DEBUG.cpp │ │ └── VECTOR_FAST.cpp │ │ ├── material │ │ ├── ARRUDA_BOYCE.cpp │ │ ├── ARRUDA_BOYCE.h │ │ ├── ARRUDA_BOYCE_hessian.cpp │ │ ├── INVERTIBLE.cpp │ │ ├── INVERTIBLE.h │ │ ├── MATERIAL.cpp │ │ ├── MATERIAL.h │ │ ├── MATERIAL_hessian.cpp │ │ ├── MOONEY_RIVLIN.cpp │ │ ├── MOONEY_RIVLIN.h │ │ ├── MULTI_MATERIAL.cpp │ │ ├── MULTI_MATERIAL.h │ │ ├── NEO_HOOKEAN.cpp │ │ ├── NEO_HOOKEAN.h │ │ ├── STVK.cpp │ │ └── STVK.h │ │ ├── rendering │ │ ├── GLSL_LIGHT.cpp │ │ ├── GLSL_LIGHT.h │ │ ├── GLSL_OBJ.cpp │ │ ├── GLSL_OBJ.h │ │ ├── GLSL_SCENE_VIEWER.cpp │ │ ├── GLSL_SCENE_VIEWER.h │ │ ├── GLSL_SHADER.cpp │ │ ├── GLSL_SHADER.h │ │ ├── GLSL_TET_MESH.cpp │ │ ├── GLSL_TET_MESH.h │ │ ├── GLSL_TET_MESH_INSTANCE.cpp │ │ ├── GLSL_TET_MESH_INSTANCE.h │ │ ├── RENDER_MAN.cpp │ │ ├── RENDER_MAN.h │ │ └── glsl │ │ │ ├── aov1.frag │ │ │ ├── aov1.geom │ │ │ ├── aov1.vert │ │ │ ├── aov2.geom │ │ │ ├── aov2.vert │ │ │ ├── aov3.frag │ │ │ ├── aov3.geom │ │ │ ├── aov4.vert │ │ │ ├── aovup.frag │ │ │ ├── aovup.vert │ │ │ ├── aovup2.frag │ │ │ ├── deferred01.frag │ │ │ ├── deferred01.geom │ │ │ ├── deferred01.vert │ │ │ ├── deferred02.vert │ │ │ ├── deferred03.frag │ │ │ ├── deferred03.geom │ │ │ ├── deferred03.vert │ │ │ ├── deform01.frag │ │ │ ├── deform01.vert │ │ │ ├── deform02.vert │ │ │ ├── drawbases.frag │ │ │ ├── drawbases.geom │ │ │ ├── drawbases.vert │ │ │ ├── drawbases1.geom │ │ │ ├── drawbases1.vert │ │ │ ├── drawbases2.geom │ │ │ ├── drawbases2.vert │ │ │ ├── drawfaces.frag │ │ │ ├── drawfaces.geom │ │ │ ├── drawfaces.vert │ │ │ ├── drawobj00.frag │ │ │ ├── drawobj00.vert │ │ │ ├── drawobj01.frag │ │ │ ├── drawobj02.frag │ │ │ ├── drawobj02.vert │ │ │ ├── drawobj03.frag │ │ │ ├── drawobj03.vert │ │ │ ├── drawobj04.frag │ │ │ ├── drawobj04.geom │ │ │ ├── drawobj04.vert │ │ │ ├── drawobj05.frag │ │ │ ├── drawobj05.vert │ │ │ ├── drawtexture.frag │ │ │ ├── drawtexture.vert │ │ │ ├── embedded01.frag │ │ │ ├── embedded01.vert │ │ │ ├── embedded02.frag │ │ │ ├── embedded02.vert │ │ │ ├── embedded03.frag │ │ │ ├── embedded03.vert │ │ │ ├── embedded04.frag │ │ │ ├── embedded04.vert │ │ │ ├── embedded05.frag │ │ │ ├── embedded05.vert │ │ │ ├── embedded12.frag │ │ │ ├── embedded12.vert │ │ │ ├── embedded13.frag │ │ │ ├── embedded13.geom │ │ │ ├── embedded13.vert │ │ │ ├── embedded15.frag │ │ │ ├── embedded15.vert │ │ │ ├── embedded16.frag │ │ │ ├── embedded16.geom │ │ │ ├── embedded16.vert │ │ │ ├── embedded17.frag │ │ │ ├── embedded17.vert │ │ │ ├── embedded17_3light.frag │ │ │ ├── embedded17_3light.vert │ │ │ ├── embedded18.frag │ │ │ ├── embedded19.frag │ │ │ ├── embedded19.vert │ │ │ ├── embedded20.frag │ │ │ ├── embedded20.vert │ │ │ ├── ground01.vert │ │ │ ├── ground02.vert │ │ │ ├── ground03.vert │ │ │ ├── ground04.frag │ │ │ ├── ground04.vert │ │ │ ├── ground05.vert │ │ │ ├── ground06.vert │ │ │ ├── ground07.vert │ │ │ ├── phong2.frag │ │ │ ├── phong2.vert │ │ │ ├── shadowblur.vert │ │ │ ├── shadowblur5.frag │ │ │ ├── shadowblur7.frag │ │ │ ├── ssao01.frag │ │ │ ├── ssao01.vert │ │ │ ├── tetgenrot.frag │ │ │ ├── tetgenrot.vert │ │ │ ├── tetnormtan.frag │ │ │ ├── tetnormtan.vert │ │ │ ├── tetrestpos.frag │ │ │ ├── tetrestpos.vert │ │ │ ├── tetrestrot.frag │ │ │ ├── tetrestrot.vert │ │ │ ├── tetvertex.frag │ │ │ ├── tetvertex.vert │ │ │ ├── tetvertextex.frag │ │ │ ├── tetvertextex.vert │ │ │ ├── verysimple.frag │ │ │ └── verysimple.vert │ │ └── util │ │ ├── GNUPLOT.h │ │ ├── IO.h │ │ ├── MERSENNETWISTER.h │ │ ├── SIMPLE_PARSER.cpp │ │ ├── SIMPLE_PARSER.h │ │ ├── TIMER.cpp │ │ ├── TIMER.h │ │ ├── ThreadSpecificData.cpp │ │ ├── ThreadSpecificData.h │ │ └── WAVELET_NOISE.h ├── dynamicDeformables │ ├── DynamicDeformables_Source │ │ ├── ARAP_Hessian.m │ │ ├── ARAP_Hessian_Filtered.m │ │ ├── DRDF_Clean_2D.m │ │ ├── DRDF_Clean_3D.m │ │ ├── DRDF_Column.m │ │ ├── DRDF_Horrible.m │ │ ├── Get_ARAP_System.m │ │ ├── Get_Analytic_Anisotropic_Eigenvalues.m │ │ ├── Get_Analytic_Eigensystem.m │ │ ├── Get_Analytic_Eigenvalues.m │ │ ├── Get_Anisotropic_Systems.m │ │ ├── Get_SNH_System.m │ │ ├── Get_StVK_System.m │ │ ├── Get_Stretching_System.m │ │ ├── HandleContinuousCollisions.m │ │ ├── I1_Horrible_Hessian.m │ │ ├── InFaceRegion.m │ │ ├── PFPx.cpp │ │ ├── Simplify_Invariants.m │ │ ├── __MACOSX │ │ │ ├── ._ARAP_Hessian.m │ │ │ ├── ._ARAP_Hessian_Filtered.m │ │ │ ├── ._DRDF_Clean_2D.m │ │ │ ├── ._DRDF_Clean_3D.m │ │ │ ├── ._DRDF_Column.m │ │ │ ├── ._DRDF_Horrible.m │ │ │ ├── ._Get_ARAP_System.m │ │ │ ├── ._Get_Analytic_Anisotropic_Eigenvalues.m │ │ │ ├── ._Get_Analytic_Eigensystem.m │ │ │ ├── ._Get_Anisotropic_Systems.m │ │ │ ├── ._Get_SNH_System.m │ │ │ ├── ._Get_StVK_System.m │ │ │ ├── ._Get_Stretching_System.m │ │ │ ├── ._PFPx.cpp │ │ │ ├── ._eigenvector_gallery_sym.m │ │ │ ├── ._experimenting.m │ │ │ ├── ._gradientJ.m │ │ │ ├── ._svd_rv.m │ │ │ └── ._vec.m │ │ ├── cube_cache.cpp │ │ ├── cube_shape_derivative.cpp │ │ ├── eigenvector_gallery_sym.m │ │ ├── experimenting.m │ │ ├── flatten.cpp │ │ ├── gradientJ.m │ │ ├── hessianJ.m │ │ ├── localPairToArrayIndex.m │ │ ├── polar_decomposition_rv.m │ │ ├── svd_rv.m │ │ └── vec.m │ └── note.md ├── interactive │ └── modeDef.tar.gz ├── shapeAware │ ├── README │ ├── avgedge.m │ ├── axisangle2quat.m │ ├── axisanglebetween.m │ ├── biharmonic_bounded.m │ ├── boundary_conditions.m │ ├── cactus.obj │ ├── cactus.png │ ├── cactus_demo.m │ ├── conic.m │ ├── cotmatrix3.m │ ├── cotmatrix_embedded.m │ ├── cotmatrix_intrinsic.m │ ├── default_mosek_param.m │ ├── doublearea.m │ ├── dpsimplify.m │ ├── dualquatlbs.m │ ├── edges.m │ ├── faces_first.m │ ├── get_control_points.m │ ├── grad.m │ ├── harmonic.m │ ├── inequality_constraints_from_graphs.m │ ├── lbs.m │ ├── load_mesh.m │ ├── local_max.m │ ├── local_min.m │ ├── mark_extrema.m │ ├── mask2poly.m │ ├── massmatrix3.m │ ├── massmatrix_embedded.m │ ├── massmatrix_intrinsic.m │ ├── maxnz.m │ ├── min_quad_with_fixed.m │ ├── min_quad_with_fixed_active_set.m │ ├── minnz.m │ ├── monotonic_biharmonic.m │ ├── monotonicity_matrix.m │ ├── mosekopt.mexmaci64 │ ├── mskcheck.m │ ├── mskeflag.m │ ├── mskerrmsg.m │ ├── mskoptnam.m │ ├── mskoutput.m │ ├── msksetup.m │ ├── mskstatus.m │ ├── mskwrnmsg.m │ ├── normalizerow.m │ ├── normrow.m │ ├── optimset.m │ ├── png2mesh.m │ ├── png2poly.m │ ├── point.m │ ├── point_inside_polygon.m │ ├── poly2VEH.m │ ├── project_to_lines.m │ ├── pseudoedge_dof.m │ ├── quadprog.m │ ├── quat2mat.m │ ├── quatmultiply.m │ ├── quattrans2udq.m │ ├── readEDGE.m │ ├── readELE.m │ ├── readNODE.m │ ├── readOBJ.m │ ├── readOBJfast.m │ ├── readOFF.m │ ├── repdiag.m │ ├── report_mosek_error.m │ ├── simple_deform.m │ ├── skinning_transformations.m │ ├── stacktimes.m │ ├── tempprefix.m │ ├── tilefigs.m │ ├── triangle.m │ ├── upsample.m │ ├── weights_colormap.m │ ├── writeELE.m │ ├── writeNODE.m │ └── writePOLY.m ├── sharpKelvinlets │ ├── 00BrushGrab.py │ ├── 01BrushGrabBiScale.py │ ├── 02BrushGrabTriScale.py │ ├── 03BrushGrabLaplaican.py │ ├── 04BrushGrabBiLaplacian.py │ ├── 05BrushGrabCusp.py │ ├── 06BrushGrabCuspLaplacian.py │ ├── 07BrushGrabCuspBiLaplacian.py │ ├── 08BrushAffineTwist.py │ ├── 09BrushAffineScale.py │ ├── 09BrushAffineTwist.py │ ├── 10BrushAffinePinch.py │ ├── code.zip │ ├── code │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── cmake │ │ │ ├── FindEigen3.cmake │ │ │ └── FindTBB.cmake │ │ ├── common.h │ │ ├── exampleBrush │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── exampleDyna │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── kelvinlet │ │ │ ├── brushAffine.cpp │ │ │ ├── brushAffine.h │ │ │ ├── brushBase.cpp │ │ │ ├── brushBase.h │ │ │ ├── brushGrab.h │ │ │ ├── brushGrabBase.cpp │ │ │ ├── brushGrabBase.h │ │ │ ├── brushGrabBiLaplacian.h │ │ │ ├── brushGrabBiScale.h │ │ │ ├── brushGrabCusp.h │ │ │ ├── brushGrabCuspBiLaplacian.h │ │ │ ├── brushGrabCuspLaplacian.h │ │ │ ├── brushGrabLaplacian.h │ │ │ ├── brushGrabTriScale.h │ │ │ ├── dynaBase.cpp │ │ │ ├── dynaBase.h │ │ │ ├── dynaPulseAffine.cpp │ │ │ ├── dynaPulseAffine.h │ │ │ ├── dynaPulseBase.cpp │ │ │ ├── dynaPulseBase.h │ │ │ ├── dynaPulseGrab.cpp │ │ │ ├── dynaPulseGrab.h │ │ │ ├── dynaPushAffine.cpp │ │ │ ├── dynaPushAffine.h │ │ │ ├── dynaPushBase.cpp │ │ │ ├── dynaPushBase.h │ │ │ ├── dynaPushGrab.cpp │ │ │ ├── dynaPushGrab.h │ │ │ └── types.h │ │ └── viewer.hipnc │ ├── d01dynamicBase.py │ ├── d02dynamicAffine.py │ └── implements.py └── subspace │ ├── COPYING.txt │ ├── GreedyCubop.cpp │ ├── GreedyCubop.h │ ├── MATRIX.h │ ├── MATRIX3.cpp │ ├── MATRIX3.h │ ├── MATRIX_DEBUG.cpp │ ├── MERSENNETWISTER.h │ ├── README.txt │ ├── SETTINGS.h │ ├── TYPES.h │ ├── VEC3.h │ ├── VECTOR.h │ ├── VECTOR_DEBUG.cpp │ ├── nnls.cpp │ ├── nnls.h │ ├── steve.cpp │ └── steve.h ├── Electron └── Scattering of electromagnetic waves (MATLAB source code) by Tsang, et al. (z-lib.org) │ ├── emirs.m │ ├── mcpdf.m │ ├── nsphere.m │ ├── ptscext.m │ ├── pypdf.m │ ├── qcacp.m │ ├── qcamie.m │ ├── readme.txt │ ├── rs1df.m │ ├── rs1dg.m │ ├── rs1do.m │ ├── rsgenf.m │ ├── rsgeng.m │ └── rsgeno.m ├── FLIP_MPM ├── narrowBand │ └── nbflip │ │ └── nbflip │ │ ├── ._CMakeLists.txt │ │ ├── ._COPYING │ │ ├── ._Doxyfile.in │ │ ├── ._INSTALLING │ │ ├── ._dependencies │ │ ├── ._resources │ │ ├── ._scenes │ │ ├── ._source │ │ ├── ._tools │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Doxyfile.in │ │ ├── INSTALLING │ │ ├── dependencies │ │ ├── ._zlib-1.2.8 │ │ └── zlib-1.2.8 │ │ │ ├── ._adler32.c │ │ │ ├── ._compress.c │ │ │ ├── ._crc32.c │ │ │ ├── ._crc32.h │ │ │ ├── ._deflate.c │ │ │ ├── ._deflate.h │ │ │ ├── ._gzclose.c │ │ │ ├── ._gzguts.h │ │ │ ├── ._gzlib.c │ │ │ ├── ._gzread.c │ │ │ ├── ._gzwrite.c │ │ │ ├── ._infback.c │ │ │ ├── ._inffast.c │ │ │ ├── ._inffast.h │ │ │ ├── ._inffixed.h │ │ │ ├── ._inflate.c │ │ │ ├── ._inflate.h │ │ │ ├── ._inftrees.c │ │ │ ├── ._inftrees.h │ │ │ ├── ._trees.c │ │ │ ├── ._trees.h │ │ │ ├── ._uncompr.c │ │ │ ├── ._zconf.h │ │ │ ├── ._zlib.h │ │ │ ├── ._zutil.c │ │ │ ├── ._zutil.h │ │ │ ├── adler32.c │ │ │ ├── compress.c │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── gzclose.c │ │ │ ├── gzguts.h │ │ │ ├── gzlib.c │ │ │ ├── gzread.c │ │ │ ├── gzwrite.c │ │ │ ├── infback.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── zconf.h │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ ├── resources │ │ ├── ._help.png │ │ ├── ._keyboard.png │ │ ├── ._pause.png │ │ ├── ._play.png │ │ ├── ._res.qrc │ │ ├── ._stop.png │ │ ├── help.png │ │ ├── keyboard.png │ │ ├── pause.png │ │ ├── play.png │ │ ├── res.qrc │ │ └── stop.png │ │ ├── scenes │ │ ├── ._flip01_simple.py │ │ ├── ._flip02_surface.py │ │ ├── ._flip03_gen.py │ │ ├── ._flip04_adaptDt.py │ │ ├── ._flip05_secOrderBnd.py │ │ ├── ._flip06_nbflip.py │ │ ├── ._freesurface.py │ │ ├── ._karman.py │ │ ├── ._plume_2d.py │ │ ├── ._plume_adaptDt.py │ │ ├── ._simpleplume.py │ │ ├── ._turbulence.py │ │ ├── ._vortexsheets.py │ │ ├── ._waveEquation.py │ │ ├── ._waveletTurbulence.py │ │ ├── ._waveletTurbulenceObs.py │ │ ├── flip01_simple.py │ │ ├── flip02_surface.py │ │ ├── flip03_gen.py │ │ ├── flip04_adaptDt.py │ │ ├── flip05_secOrderBnd.py │ │ ├── flip06_nbflip.py │ │ ├── freesurface.py │ │ ├── karman.py │ │ ├── plume_2d.py │ │ ├── plume_adaptDt.py │ │ ├── simpleplume.py │ │ ├── turbulence.py │ │ ├── vortexsheets.py │ │ ├── waveEquation.py │ │ ├── waveletTurbulence.py │ │ └── waveletTurbulenceObs.py │ │ ├── source │ │ ├── ._cmake │ │ ├── ._commonkernels.h │ │ ├── ._conjugategrad.cpp │ │ ├── ._conjugategrad.h │ │ ├── ._cuda │ │ ├── ._edgecollapse.cpp │ │ ├── ._edgecollapse.h │ │ ├── ._fastmarch.cpp │ │ ├── ._fastmarch.h │ │ ├── ._fileio.cpp │ │ ├── ._fileio.h │ │ ├── ._fluidsolver.cpp │ │ ├── ._fluidsolver.h │ │ ├── ._general.cpp │ │ ├── ._general.h │ │ ├── ._grid.cpp │ │ ├── ._grid.h │ │ ├── ._gui │ │ ├── ._kernel.cpp │ │ ├── ._kernel.h │ │ ├── ._levelset.cpp │ │ ├── ._levelset.h │ │ ├── ._mesh.cpp │ │ ├── ._mesh.h │ │ ├── ._movingobs.cpp │ │ ├── ._movingobs.h │ │ ├── ._noisefield.cpp │ │ ├── ._noisefield.h │ │ ├── ._particle.cpp │ │ ├── ._particle.h │ │ ├── ._plugin │ │ ├── ._preprocessor │ │ ├── ._pwrapper │ │ ├── ._python │ │ ├── ._shapes.cpp │ │ ├── ._shapes.h │ │ ├── ._test.cpp │ │ ├── ._timing.cpp │ │ ├── ._timing.h │ │ ├── ._turbulencepart.cpp │ │ ├── ._turbulencepart.h │ │ ├── ._util │ │ ├── ._vortexfilament.cpp │ │ ├── ._vortexfilament.h │ │ ├── ._vortexpart.cpp │ │ ├── ._vortexpart.h │ │ ├── ._vortexsheet.cpp │ │ ├── ._vortexsheet.h │ │ ├── cmake │ │ │ ├── ._FindTBB.cmake │ │ │ └── FindTBB.cmake │ │ ├── commonkernels.h │ │ ├── conjugategrad.cpp │ │ ├── conjugategrad.h │ │ ├── cuda │ │ │ ├── ._buoyancy.cu │ │ │ ├── ._cudatools.h │ │ │ ├── ._curlnoise.cu │ │ │ ├── ._curlnoise.h │ │ │ ├── ._meshtools.cu │ │ │ ├── ._particle.cu │ │ │ ├── ._turbulence.cu │ │ │ ├── buoyancy.cu │ │ │ ├── cudatools.h │ │ │ ├── curlnoise.cu │ │ │ ├── curlnoise.h │ │ │ ├── meshtools.cu │ │ │ ├── particle.cu │ │ │ └── turbulence.cu │ │ ├── edgecollapse.cpp │ │ ├── edgecollapse.h │ │ ├── fastmarch.cpp │ │ ├── fastmarch.h │ │ ├── fileio.cpp │ │ ├── fileio.h │ │ ├── fluidsolver.cpp │ │ ├── fluidsolver.h │ │ ├── general.cpp │ │ ├── general.h │ │ ├── grid.cpp │ │ ├── grid.h │ │ ├── gui │ │ │ ├── ._customctrl.cpp │ │ │ ├── ._customctrl.h │ │ │ ├── ._glwidget.cpp │ │ │ ├── ._glwidget.h │ │ │ ├── ._mainwindow.cpp │ │ │ ├── ._mainwindow.h │ │ │ ├── ._meshpainter.cpp │ │ │ ├── ._meshpainter.h │ │ │ ├── ._painter.cpp │ │ │ ├── ._painter.h │ │ │ ├── ._particlepainter.cpp │ │ │ ├── ._particlepainter.h │ │ │ ├── ._qtmain.cpp │ │ │ ├── ._qtmain.h │ │ │ ├── customctrl.cpp │ │ │ ├── customctrl.h │ │ │ ├── glwidget.cpp │ │ │ ├── glwidget.h │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ ├── meshpainter.cpp │ │ │ ├── meshpainter.h │ │ │ ├── painter.cpp │ │ │ ├── painter.h │ │ │ ├── particlepainter.cpp │ │ │ ├── particlepainter.h │ │ │ ├── qtmain.cpp │ │ │ └── qtmain.h │ │ ├── kernel.cpp │ │ ├── kernel.h │ │ ├── levelset.cpp │ │ ├── levelset.h │ │ ├── mesh.cpp │ │ ├── mesh.h │ │ ├── movingobs.cpp │ │ ├── movingobs.h │ │ ├── noisefield.cpp │ │ ├── noisefield.h │ │ ├── particle.cpp │ │ ├── particle.h │ │ ├── plugin │ │ │ ├── ._advection.cpp │ │ │ ├── ._extforces.cpp │ │ │ ├── ._flip.cpp │ │ │ ├── ._initplugins.cpp │ │ │ ├── ._kepsilon.cpp │ │ │ ├── ._meshplugins.cpp │ │ │ ├── ._pressure.cpp │ │ │ ├── ._vortexplugins.cpp │ │ │ ├── ._waveletturbulence.cpp │ │ │ ├── ._waves.cpp │ │ │ ├── advection.cpp │ │ │ ├── extforces.cpp │ │ │ ├── flip.cpp │ │ │ ├── initplugins.cpp │ │ │ ├── kepsilon.cpp │ │ │ ├── meshplugins.cpp │ │ │ ├── pressure.cpp │ │ │ ├── vortexplugins.cpp │ │ │ ├── waveletturbulence.cpp │ │ │ └── waves.cpp │ │ ├── preprocessor │ │ │ ├── ._code.cpp │ │ │ ├── ._code.h │ │ │ ├── ._codegen_kernel.cpp │ │ │ ├── ._codegen_python.cpp │ │ │ ├── ._main.cpp │ │ │ ├── ._merge.cpp │ │ │ ├── ._parse.cpp │ │ │ ├── ._prep.h │ │ │ ├── ._tokenize.cpp │ │ │ ├── ._tokenize.h │ │ │ ├── ._util.cpp │ │ │ ├── ._util.h │ │ │ ├── code.cpp │ │ │ ├── code.h │ │ │ ├── codegen_kernel.cpp │ │ │ ├── codegen_python.cpp │ │ │ ├── main.cpp │ │ │ ├── merge.cpp │ │ │ ├── parse.cpp │ │ │ ├── prep.h │ │ │ ├── tokenize.cpp │ │ │ ├── tokenize.h │ │ │ ├── util.cpp │ │ │ └── util.h │ │ ├── pwrapper │ │ │ ├── ._manta.h │ │ │ ├── ._pclass.cpp │ │ │ ├── ._pclass.h │ │ │ ├── ._pconvert.cpp │ │ │ ├── ._pconvert.h │ │ │ ├── ._pvec3.cpp │ │ │ ├── ._pymain.cpp │ │ │ ├── ._pythonInclude.h │ │ │ ├── ._registry.cpp │ │ │ ├── ._registry.h │ │ │ ├── manta.h │ │ │ ├── pclass.cpp │ │ │ ├── pclass.h │ │ │ ├── pconvert.cpp │ │ │ ├── pconvert.h │ │ │ ├── pvec3.cpp │ │ │ ├── pymain.cpp │ │ │ ├── pythonInclude.h │ │ │ ├── registry.cpp │ │ │ └── registry.h │ │ ├── python │ │ │ ├── ._defines.py │ │ │ └── defines.py │ │ ├── shapes.cpp │ │ ├── shapes.h │ │ ├── test.cpp │ │ ├── timing.cpp │ │ ├── timing.h │ │ ├── turbulencepart.cpp │ │ ├── turbulencepart.h │ │ ├── util │ │ │ ├── ._integrator.h │ │ │ ├── ._interpol.h │ │ │ ├── ._interpolHigh.h │ │ │ ├── ._mcubes.h │ │ │ ├── ._quaternion.h │ │ │ ├── ._randomstream.h │ │ │ ├── ._simpleimage.cpp │ │ │ ├── ._simpleimage.h │ │ │ ├── ._solvana.h │ │ │ ├── ._vectorbase.cpp │ │ │ ├── ._vectorbase.h │ │ │ ├── integrator.h │ │ │ ├── interpol.h │ │ │ ├── interpolHigh.h │ │ │ ├── mcubes.h │ │ │ ├── quaternion.h │ │ │ ├── randomstream.h │ │ │ ├── simpleimage.cpp │ │ │ ├── simpleimage.h │ │ │ ├── solvana.h │ │ │ ├── vectorbase.cpp │ │ │ └── vectorbase.h │ │ ├── vortexfilament.cpp │ │ ├── vortexfilament.h │ │ ├── vortexpart.cpp │ │ ├── vortexpart.h │ │ ├── vortexsheet.cpp │ │ └── vortexsheet.h │ │ └── tools │ │ ├── ._maya │ │ ├── ._testdata │ │ ├── ._testdataDouble │ │ ├── ._tests │ │ ├── makeHgVersion.py │ │ ├── maya │ │ ├── ._AEbobjFluidObjectTemplate.mel │ │ ├── ._AEfluidGridObjectTemplate.mel │ │ ├── ._Makefile │ │ ├── ._README.txt │ │ ├── ._bobjFluidObject.cpp │ │ ├── ._bobjloader.mll │ │ ├── ._bobjloader.vcxproj │ │ ├── ._buildconfig.linux │ │ ├── ._buildconfig.osx │ │ ├── ._createBobjLoader.mel │ │ ├── ._createDensityLoader.mel │ │ ├── ._densityloader.cpp │ │ ├── ._densityloader.mll │ │ ├── ._densityloader.vcxproj │ │ ├── ._mayaplugins.sln │ │ ├── AEbobjFluidObjectTemplate.mel │ │ ├── AEfluidGridObjectTemplate.mel │ │ ├── Makefile │ │ ├── README.txt │ │ ├── bobjFluidObject.cpp │ │ ├── bobjloader.mll │ │ ├── bobjloader.vcxproj │ │ ├── buildconfig.linux │ │ ├── buildconfig.osx │ │ ├── createBobjLoader.mel │ │ ├── createDensityLoader.mel │ │ ├── densityloader.cpp │ │ ├── densityloader.mll │ │ ├── densityloader.vcxproj │ │ └── mayaplugins.sln │ │ ├── testdata │ │ ├── ._readme.txt │ │ └── readme.txt │ │ ├── testdataDouble │ │ ├── ._readme.txt │ │ └── readme.txt │ │ └── tests │ │ ├── ._helperBuildInfo.py │ │ ├── ._helperGeneric.py │ │ ├── ._helperInclude.py │ │ ├── ._reader.py │ │ ├── ._runTests.py │ │ ├── ._test_0010_io.py │ │ ├── ._test_0011_inverted.py │ │ ├── ._test_0020_shapes.py │ │ ├── ._test_0030_gridop.py │ │ ├── ._test_0040_interpol2d.py │ │ ├── ._test_0041_interpol3d.py │ │ ├── ._test_0050_meshload.obj │ │ ├── ._test_0050_meshload.py │ │ ├── ._test_0100_psolve.py │ │ ├── ._test_0500_pdataop.py │ │ ├── ._test_1010_plume2d.py │ │ ├── ._test_1020_uvs.py │ │ ├── ._test_1030_waveeq.py │ │ ├── ._test_1040_secOrderBnd.py │ │ ├── ._test_1070_flip2d.py │ │ ├── ._test_1075_secorderBndFlip.py │ │ ├── ._test_2005_symmAdv.py │ │ ├── ._test_2010_plume3d.py │ │ ├── ._test_2011_plume3d_open.py │ │ ├── ._test_2020_obstacle.py │ │ ├── ._test_2025_turb.py │ │ ├── ._test_2045_fallingDrop.py │ │ ├── ._test_2050_freesurface.py │ │ ├── ._test_2065_partIo.py │ │ ├── ._test_2070_falldropFlip.py │ │ ├── ._test_2075_flipBrdam.py │ │ ├── helperBuildInfo.py │ │ ├── helperGeneric.py │ │ ├── helperInclude.py │ │ ├── reader.py │ │ ├── runTests.py │ │ ├── test_0010_io.py │ │ ├── test_0011_inverted.py │ │ ├── test_0020_shapes.py │ │ ├── test_0030_gridop.py │ │ ├── test_0040_interpol2d.py │ │ ├── test_0041_interpol3d.py │ │ ├── test_0050_meshload.obj │ │ ├── test_0050_meshload.py │ │ ├── test_0100_psolve.py │ │ ├── test_0500_pdataop.py │ │ ├── test_1010_plume2d.py │ │ ├── test_1020_uvs.py │ │ ├── test_1030_waveeq.py │ │ ├── test_1040_secOrderBnd.py │ │ ├── test_1070_flip2d.py │ │ ├── test_1075_secorderBndFlip.py │ │ ├── test_2005_symmAdv.py │ │ ├── test_2010_plume3d.py │ │ ├── test_2011_plume3d_open.py │ │ ├── test_2020_obstacle.py │ │ ├── test_2025_turb.py │ │ ├── test_2045_fallingDrop.py │ │ ├── test_2050_freesurface.py │ │ ├── test_2065_partIo.py │ │ ├── test_2070_falldropFlip.py │ │ └── test_2075_flipBrdam.py └── simpleFLIP │ ├── array2.h │ ├── grid.cpp │ ├── grid.h │ ├── main.cpp │ ├── nn.cpp │ ├── particles.cpp │ ├── particles.h │ ├── util.h │ └── vec2.h ├── FiniteElement ├── CracksDeepBlue │ ├── MYSUBROUTINES │ │ └── MYSUBROUTINES │ │ │ ├── CALC_DADN.for │ │ │ ├── CALC_KOP.for │ │ │ ├── CONV_S_TO_DISP.for │ │ │ ├── CONV_S_TO_K.for │ │ │ ├── NUM_INT.for │ │ │ ├── OOR_REDUCE.for │ │ │ ├── RESEQ.for │ │ │ ├── UAMP.for │ │ │ ├── UEXTERNALDB.for │ │ │ └── URDFIL.for │ ├── RPDD │ │ └── RPDD │ │ │ ├── COPYING │ │ │ ├── ConstCrack │ │ │ ├── AddStep_KL.m │ │ │ ├── AddStep_KL.m~ │ │ │ ├── AddStep_Predict.m │ │ │ ├── AddStep_Smooth.m │ │ │ ├── BetaError.m~ │ │ │ ├── CPDgen.m~ │ │ │ ├── CPDgen_DBN.m │ │ │ ├── CPDgen_SBN.m │ │ │ ├── CPDgen_SBN.m~ │ │ │ ├── ConsCrack_RUN.m~ │ │ │ ├── ConsCrack_RUN4Time.m~ │ │ │ ├── ConstCrack_BLR.m │ │ │ ├── ConstCrack_BLR.m~ │ │ │ ├── ConstCrack_DBNModel.m │ │ │ ├── ConstCrack_JtreeModel.m~ │ │ │ ├── ConstCrack_KF.m │ │ │ ├── ConstCrack_RUN.m │ │ │ ├── ConstCrack_SBNModel.m │ │ │ ├── ConstCrack_SBNModel.m~ │ │ │ ├── ConstCrack_Unif.m │ │ │ ├── ConstCrack_Unif.m~ │ │ │ ├── ConstCrack_myDD.m │ │ │ ├── ConstCrack_myDD.m~ │ │ │ ├── ConstCrack_myDDKL.m │ │ │ ├── ConstCrack_myDDKL.m~ │ │ │ ├── CostCrack_DDNeil.m │ │ │ ├── CostCrack_DDNeil.m~ │ │ │ ├── DDCheck.m │ │ │ ├── DDStep.m │ │ │ ├── DDalgorithm.m │ │ │ ├── FailProb_BLR.mat │ │ │ ├── FailProb_DDNeil.mat │ │ │ ├── FailProb_KS.mat │ │ │ ├── KLError.m │ │ │ ├── KLError.m~ │ │ │ ├── MeanStd.m │ │ │ ├── MeanStd.m~ │ │ │ ├── MergStep.m │ │ │ ├── Output.mat │ │ │ ├── Readme │ │ │ ├── Readme~ │ │ │ ├── ReliabIndex.m │ │ │ ├── kalman_filter.m │ │ │ ├── kalman_smoother.m │ │ │ ├── kalman_update.m │ │ │ ├── smooth_update.m │ │ │ ├── sumpdf.m │ │ │ ├── temp.m~ │ │ │ └── test.m~ │ │ │ └── StochasticCrack │ │ │ ├── AddStep_KL.m │ │ │ ├── AddStep_KL.m~ │ │ │ ├── AddStep_Predict.m │ │ │ ├── AddStep_Predict.m~ │ │ │ ├── AddStep_Smooth.m │ │ │ ├── CPDgen.m │ │ │ ├── Crack_SBNengine_M.m │ │ │ ├── Cracksim_ev.m~ │ │ │ ├── DDCheck.m │ │ │ ├── DDStep.m │ │ │ ├── ExpDisc.m │ │ │ ├── FindInt.m │ │ │ ├── GeometricFun.m │ │ │ ├── InitCrack.m │ │ │ ├── KLError.m │ │ │ ├── LNormToNorm.m │ │ │ ├── M_CPDgen.m │ │ │ ├── NormalDisc.m │ │ │ ├── Output.mat │ │ │ ├── Readme │ │ │ ├── Readme~ │ │ │ ├── ReliabIndex.m │ │ │ ├── StochasticCrack_Fine.m │ │ │ ├── StochasticCrack_Fine.mat │ │ │ ├── StochasticCrack_RUN.m │ │ │ ├── StochasticCrack_RUN.m~ │ │ │ ├── StochasticCrack_Unif_Log.m │ │ │ ├── StochasticCrack_Unif_Log.m~ │ │ │ ├── StochasticCrack_myDD.m │ │ │ ├── StochasticCrack_myDD.m~ │ │ │ ├── StochasticCrack_myDDKL.m │ │ │ ├── StochasticCrack_myDDKL.m~ │ │ │ ├── Ytc_CPDgen.m │ │ │ ├── a_CPDgen.m │ │ │ ├── fYint.m │ │ │ └── faint.m │ ├── code │ │ └── CS_codes │ │ │ ├── .DS_Store │ │ │ ├── ._.DS_Store │ │ │ ├── CFRP_mm.py │ │ │ ├── CFRP_opt.py │ │ │ ├── Cant_tube_mm.py │ │ │ ├── Cant_tube_opt.py │ │ │ ├── LICENSE │ │ │ ├── evolutionary_operators.py │ │ │ ├── kriging_hess.py │ │ │ ├── latinhypercube.py │ │ │ ├── nsga2_michigan_vfo.py │ │ │ ├── pareto_front_comparison.py │ │ │ ├── post_process.py │ │ │ ├── pp_cfrp.py │ │ │ ├── pp_tube.py │ │ │ └── pyre │ │ │ ├── .DS_Store │ │ │ ├── ._.DS_Store │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── cholesky.py │ │ │ ├── cholesky.pyc │ │ │ ├── correlation.py │ │ │ ├── correlation.pyc │ │ │ ├── distributions │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── beta.py │ │ │ ├── beta.pyc │ │ │ ├── chisquare.py │ │ │ ├── chisquare.pyc │ │ │ ├── distribution.py │ │ │ ├── distribution.pyc │ │ │ ├── gamma.py │ │ │ ├── gamma.pyc │ │ │ ├── gumbel.py │ │ │ ├── gumbel.pyc │ │ │ ├── lognormal.py │ │ │ ├── lognormal.pyc │ │ │ ├── normal.py │ │ │ ├── normal.pyc │ │ │ ├── shiftedexponential.py │ │ │ ├── shiftedexponential.pyc │ │ │ ├── shiftedrayleigh.py │ │ │ ├── shiftedrayleigh.pyc │ │ │ ├── typeiiismallestvalue.py │ │ │ ├── typeiiismallestvalue.pyc │ │ │ ├── typeiilargestvalue.py │ │ │ ├── typeiilargestvalue.pyc │ │ │ ├── typeilargestvalue.py │ │ │ ├── typeilargestvalue.pyc │ │ │ ├── typeismallestvalue.py │ │ │ ├── typeismallestvalue.pyc │ │ │ ├── uniform.py │ │ │ ├── uniform.pyc │ │ │ ├── weibull.py │ │ │ └── weibull.pyc │ │ │ ├── form.py │ │ │ ├── form.pyc │ │ │ ├── integration.py │ │ │ ├── integration.pyc │ │ │ ├── limitstate.py │ │ │ ├── limitstate.pyc │ │ │ ├── mc.py │ │ │ ├── mc.pyc │ │ │ ├── model.py │ │ │ ├── model.pyc │ │ │ ├── quadrature.py │ │ │ ├── quadrature.pyc │ │ │ ├── stepsize.py │ │ │ ├── stepsize.pyc │ │ │ ├── transformation.py │ │ │ └── transformation.pyc │ └── readme.md ├── GUOJITAN │ ├── MyCodes │ │ ├── ch3_triangle.py │ │ └── ch4_gaussQuad.py │ ├── matlab版 │ │ ├── 第3章 平面三角形单元 │ │ │ ├── Elastic_Matrix.m │ │ │ ├── Equivalent_Nodal_Force_Surface.m │ │ │ ├── File_Name.m │ │ │ ├── Main_Strees.m │ │ │ ├── Plane_B3_Matrix.m │ │ │ ├── Plane_Tri_Load_Vector.m │ │ │ ├── Plane_Tri_Model_Data.m │ │ │ ├── Plane_Tri_Stiff_Matrix.m │ │ │ ├── Plane_Tri_Strees.m │ │ │ ├── Plane_Triangular_Element.m │ │ │ ├── Solve_1_Model.m │ │ │ └── sjx_RES.txt │ │ ├── 第4章 平面四边形单元与收敛准则 │ │ │ ├── 1.高斯积分函数Integral_Gauss.txt │ │ │ ├── 10.四节点等参单元应力函数.txt │ │ │ ├── 11.四节点等参单元程序使用说明.txt │ │ │ ├── 12.算例4.1模型数据.txt │ │ │ ├── 13.算例4.1模型数据的函数.txt │ │ │ ├── 14.四节点等参单元主函数(简版).txt │ │ │ ├── 15.算例4.1计算结果文件.txt │ │ │ ├── 16.算例4.1的模型图及结果云图.docx │ │ │ ├── 2.推导几何模式函数XY_CxiEta.txt │ │ │ ├── 3.雅可比函数Jacobian.txt │ │ │ ├── 4.高斯积分法计算单元刚度矩阵函数.txt │ │ │ ├── 5.四节点等参单元应变矩阵.txt │ │ │ ├── 6.四节点等参单元总刚度矩阵.txt │ │ │ ├── 7.四节点等参单元面力等效载荷函数.txt │ │ │ ├── 8.四节点等参单元体力等效载荷函数.txt │ │ │ ├── 9.四节点等参单元总载荷矢量函数.txt │ │ │ ├── Equivalent_Nodal_Force_Body.m │ │ │ ├── Equivalent_Nodal_Force_Surface.m │ │ │ ├── Gauss_Stiff_Matrix.m │ │ │ ├── Integral_Gauss.m │ │ │ ├── Jacobian.m │ │ │ ├── Plane_Quad4_Model.m │ │ │ ├── Plane_Quad_4_Load_Matrix.m │ │ │ ├── Plane_Quad_4_Stiff_Matrix.m │ │ │ ├── Plane_Quadrilateral_Element.m │ │ │ ├── Q4dengcanyuan_RES.txt │ │ │ ├── Quad_B4_Matrix.m │ │ │ ├── Quadrilateral_Strees.m │ │ │ └── XY_CxiEta.m │ │ ├── 第5章 轴对称问题 │ │ │ ├── 1.轴对称模型数据格式.txt │ │ │ ├── 10.算例5.1计算结果文件.txt │ │ │ ├── 11.算例5.1轴对称模型图及结果云图.docx │ │ │ ├── 2.轴对称总刚度矩阵函数.txt │ │ │ ├── 3.轴对称应变矩阵函数.txt │ │ │ ├── 4.轴对称载荷矢量函数.txt │ │ │ ├── 5.求解轴对称有限元方程.txt │ │ │ ├── 6.计算轴对称单元应力函数.txt │ │ │ ├── 7.轴对称三角形单元程序使用说明.txt │ │ │ ├── 8.轴对称三角元主函数(简版).txt │ │ │ └── 9.算例5.1模型数据的函数.txt │ │ ├── 第7章 杆系结构 │ │ │ ├── 1.杆元长度及方位函数.txt │ │ │ ├── 10.平面桁架主功能函数.txt │ │ │ ├── 11.算例7.1桁架模型数据的函数.txt │ │ │ ├── 12.算例7.1桁架结构结果文件.txt │ │ │ ├── 13.算例7.2平面桁架模型数据hj_2D.txt │ │ │ ├── 2.杆元刚度矩阵.txt │ │ │ ├── 3.桁架结构整体刚度矩阵.txt │ │ │ ├── 4.杆元上集中力函数.txt │ │ │ ├── 5.杆元上线性分布力函数.txt │ │ │ ├── 6.桁架结构总的载荷矢量.txt │ │ │ ├── 7.求解桁架结构有限元方程函数.txt │ │ │ ├── 8.计算桁架杆件内力函数.txt │ │ │ └── 9.平面桁架结构程序使用说明.txt │ │ └── 第8章 平板弯曲 │ │ │ ├── 1.推导矩形薄板刚度矩阵程序.txt │ │ │ └── 2.推导薄板线性面力等效载荷程序.txt │ └── 有限元与MTALAB程序设计程序文件 │ │ ├── 第3章 平面三角形单元 │ │ ├── 1.文件名管理函数.txt │ │ ├── 10.计算主应力函数.txt │ │ ├── 11.算例3.2模型数据文档_sjxdy.txt │ │ ├── 12.平面三角元主函数(简版).txt │ │ ├── 13.平面三角形单元程序使用说明.txt │ │ ├── 14.算例3.2模型数据的函数.txt │ │ ├── 15.算例3.2平面三角形单元模型图及结果云图.docx │ │ ├── 16.算例3.2平面问题计算结果数据文件.txt │ │ ├── 2.平面三角形单元模型数据格式案例.txt │ │ ├── 3.弹性矩阵函数.txt │ │ ├── 4.应变矩阵函数.txt │ │ ├── 5.总刚度矩阵函数.txt │ │ ├── 6.面力等效节点载荷的通用函数.txt │ │ ├── 7.总载荷矢量函数.txt │ │ ├── 8.置“1”法求解有限元方程函数.txt │ │ └── 9.计算单元应力分量函数.txt │ │ ├── 第4章 平面四边形单元与收敛准则 │ │ ├── 1.高斯积分函数Integral_Gauss.txt │ │ ├── 10.四节点等参单元应力函数.txt │ │ ├── 11.四节点等参单元程序使用说明.txt │ │ ├── 12.算例4.1模型数据.txt │ │ ├── 13.算例4.1模型数据的函数.txt │ │ ├── 14.四节点等参单元主函数(简版).txt │ │ ├── 15.算例4.1计算结果文件.txt │ │ ├── 16.算例4.1的模型图及结果云图.docx │ │ ├── 2.推导几何模式函数XY_CxiEta.txt │ │ ├── 3.雅可比函数Jacobian.txt │ │ ├── 4.高斯积分法计算单元刚度矩阵函数.txt │ │ ├── 5.四节点等参单元应变矩阵.txt │ │ ├── 6.四节点等参单元总刚度矩阵.txt │ │ ├── 7.四节点等参单元面力等效载荷函数.txt │ │ ├── 8.四节点等参单元体力等效载荷函数.txt │ │ └── 9.四节点等参单元总载荷矢量函数.txt │ │ ├── 第5章 轴对称问题 │ │ ├── 1.轴对称模型数据格式.txt │ │ ├── 10.算例5.1计算结果文件.txt │ │ ├── 11.算例5.1轴对称模型图及结果云图.docx │ │ ├── 2.轴对称总刚度矩阵函数.txt │ │ ├── 3.轴对称应变矩阵函数.txt │ │ ├── 4.轴对称载荷矢量函数.txt │ │ ├── 5.求解轴对称有限元方程.txt │ │ ├── 6.计算轴对称单元应力函数.txt │ │ ├── 7.轴对称三角形单元程序使用说明.txt │ │ ├── 8.轴对称三角元主函数(简版).txt │ │ └── 9.算例5.1模型数据的函数.txt │ │ ├── 第7章 杆系结构 │ │ ├── 1.杆元长度及方位函数.txt │ │ ├── 10.平面桁架主功能函数.txt │ │ ├── 11.算例7.1桁架模型数据的函数.txt │ │ ├── 12.算例7.1桁架结构结果文件.txt │ │ ├── 13.算例7.2平面桁架模型数据hj_2D.txt │ │ ├── 2.杆元刚度矩阵.txt │ │ ├── 3.桁架结构整体刚度矩阵.txt │ │ ├── 4.杆元上集中力函数.txt │ │ ├── 5.杆元上线性分布力函数.txt │ │ ├── 6.桁架结构总的载荷矢量.txt │ │ ├── 7.求解桁架结构有限元方程函数.txt │ │ ├── 8.计算桁架杆件内力函数.txt │ │ └── 9.平面桁架结构程序使用说明.txt │ │ └── 第8章 平板弯曲 │ │ ├── 1.推导矩形薄板刚度矩阵程序.txt │ │ └── 2.推导薄板线性面力等效载荷程序.txt ├── NodalGalerkin_Book │ └── nodal-dg-master │ │ ├── Codes1.1 │ │ ├── CFD1D │ │ │ ├── Euler1D.m │ │ │ ├── EulerDriver1D.m │ │ │ ├── EulerRHS1D.m │ │ │ ├── SlopeLimit1.m │ │ │ ├── SlopeLimitLin.m │ │ │ ├── SlopeLimitN.m │ │ │ ├── minmod.m │ │ │ └── minmodB.m │ │ ├── CFD2D │ │ │ ├── BoxFlowBC2D.m │ │ │ ├── BoxFlowIC2D.m │ │ │ ├── ChannelBC2D.m │ │ │ ├── ChannelIC2D.m │ │ │ ├── CouetteBC2D.m │ │ │ ├── CouetteIC2D.m │ │ │ ├── CurvedCNS2D.m │ │ │ ├── CurvedCNSDriver2D.m │ │ │ ├── CurvedCNSRHS2D.m │ │ │ ├── CurvedCNSdt2D.m │ │ │ ├── CurvedDGDiv2D.m │ │ │ ├── CurvedDGGrad2D.m │ │ │ ├── CurvedDGJump2D.m │ │ │ ├── CurvedDGPenalty2D.m │ │ │ ├── CurvedEuler2D.m │ │ │ ├── CurvedEulerDriver2D.m │ │ │ ├── CurvedEulerRHS2D.m │ │ │ ├── CurvedINS2D.m │ │ │ ├── CurvedINSDriver2D.m │ │ │ ├── CurvedINSMatrixSystems2D.m │ │ │ ├── CurvedINSPressureSetUp2D.m │ │ │ ├── CurvedINSViscous2D.m │ │ │ ├── CurvedINSViscousSetUp2D.m │ │ │ ├── CylBC2D.m │ │ │ ├── CylIC2D.m │ │ │ ├── Euler2D.m │ │ │ ├── EulerDT2D.m │ │ │ ├── EulerDriver2D.m │ │ │ ├── EulerFluxes2D.m │ │ │ ├── EulerHLL2D.m │ │ │ ├── EulerLF2D.m │ │ │ ├── EulerLimiter2D.m │ │ │ ├── EulerRHS2D.m │ │ │ ├── EulerRender2D.m │ │ │ ├── EulerRoe2D.m │ │ │ ├── EulerShock2D.m │ │ │ ├── EulerShockDriver2D.m │ │ │ ├── ForwardStepBC2D.m │ │ │ ├── ForwardStepIC2D.m │ │ │ ├── INSAdvection2D.m │ │ │ ├── INSLiftDrag2D.m │ │ │ ├── INSPressure2D.m │ │ │ ├── INSRender2D.m │ │ │ ├── INScylinderBC2D.m │ │ │ ├── INScylinderIC2D.m │ │ │ ├── IsentropicVortexBC2D.m │ │ │ ├── IsentropicVortexIC2D.m │ │ │ ├── KovasznayBC2D.m │ │ │ ├── KovasznayIC2D.m │ │ │ ├── PearsonVortexBC2D.m │ │ │ ├── PearsonVortexIC2D.m │ │ │ ├── PegBC2D.m │ │ │ └── PegIC2D.m │ │ ├── Codes1D │ │ │ ├── Advec1D.m │ │ │ ├── AdvecDriver1D.m │ │ │ ├── AdvecRHS1D.m │ │ │ ├── BuildMaps1D.m │ │ │ ├── Burgers1D.m │ │ │ ├── BurgersDriver1D.m │ │ │ ├── BurgersRHS1D.m │ │ │ ├── Connect1D.m │ │ │ ├── DispersiveLDGRHS1D.m │ │ │ ├── Dmatrix1D.m │ │ │ ├── Filter1D.m │ │ │ ├── GeometricFactors1D.m │ │ │ ├── Globals1D.m │ │ │ ├── GradJacobiP.m │ │ │ ├── GradVandermonde1D.m │ │ │ ├── Heat1D.m │ │ │ ├── HeatCRHS1D.m │ │ │ ├── HeatCstabRHS1D.m │ │ │ ├── HeatDriver1D.m │ │ │ ├── HeatLDGRHS1D.m │ │ │ ├── JacobiGL.m │ │ │ ├── JacobiGQ.m │ │ │ ├── JacobiP.m │ │ │ ├── Lift1D.m │ │ │ ├── Maxwell1D.m │ │ │ ├── MaxwellDriver1D.m │ │ │ ├── MaxwellRHS1D.m │ │ │ ├── Normals1D.m │ │ │ ├── PoissonCDriver1D.m │ │ │ ├── PoissonCstab1D.m │ │ │ ├── PoissonCstabRHS1D.m │ │ │ ├── PoissonIPstabRHS1D.m │ │ │ ├── StartUp1D.m │ │ │ └── Vandermonde1D.m │ │ ├── Codes2D │ │ │ ├── BuildBCMaps2D.m │ │ │ ├── BuildCurvedOPS2D.m │ │ │ ├── BuildHNonCon2D.m │ │ │ ├── BuildMaps2D.m │ │ │ ├── BuildNonCon2D.m │ │ │ ├── BuildPNonCon2D.m │ │ │ ├── BuildPeriodicMaps2D.m │ │ │ ├── Connect2D.m │ │ │ ├── Cubature2D.m │ │ │ ├── CubatureData2D.m │ │ │ ├── CubatureVolumeMesh2D.m │ │ │ ├── Curl2D.m │ │ │ ├── CurvedPoissonIPDG2D.m │ │ │ ├── CurvedPoissonIPDGDriver2D.m │ │ │ ├── CurvedPoissonIPDGbc2D.m │ │ │ ├── CutOffFilter2D.m │ │ │ ├── Div2D.m │ │ │ ├── Dmatrices2D.m │ │ │ ├── EquiNodes2D.m │ │ │ ├── Filter2D.m │ │ │ ├── FindLocalCoords2D.m │ │ │ ├── GaussFaceMesh2D.m │ │ │ ├── GeometricFactors2D.m │ │ │ ├── Globals2D.m │ │ │ ├── Grad2D.m │ │ │ ├── GradSimplex2DP.m │ │ │ ├── GradVandermonde2D.m │ │ │ ├── Hrefine2D.m │ │ │ ├── InterpMatrix2D.m │ │ │ ├── Lift2D.m │ │ │ ├── MakeCylinder2D.m │ │ │ ├── Maxwell2D.m │ │ │ ├── MaxwellCurved2D.m │ │ │ ├── MaxwellCurvedDriver2D.m │ │ │ ├── MaxwellCurvedRHS2D.m │ │ │ ├── MaxwellDriver2D.m │ │ │ ├── MaxwellHNonCon2D.m │ │ │ ├── MaxwellHNonConDriver2D.m │ │ │ ├── MaxwellHNonConRHS2D.m │ │ │ ├── MaxwellPNonCon2D.m │ │ │ ├── MaxwellPNonConDriver2D.m │ │ │ ├── MaxwellPNonConRHS2D.m │ │ │ ├── MaxwellRHS2D.m │ │ │ ├── Nodes2D.m │ │ │ ├── Normals2D.m │ │ │ ├── PhysDmatrices2D.m │ │ │ ├── Poisson2D.m │ │ │ ├── PoissonDriver2D.m │ │ │ ├── PoissonIPDG2D.m │ │ │ ├── PoissonIPDGbc2D.m │ │ │ ├── PoissonRHS2D.m │ │ │ ├── Sample2D.m │ │ │ ├── Simplex2DP.m │ │ │ ├── StartUp2D.m │ │ │ ├── Vandermonde2D.m │ │ │ ├── Warpfactor.m │ │ │ ├── dtscale2D.m │ │ │ ├── rstoab.m │ │ │ ├── tiConnect2D.m │ │ │ └── xytors.m │ │ ├── Codes3D │ │ │ ├── Advec3D.m │ │ │ ├── AdvecDriver3D.m │ │ │ ├── AdvecRHS3D.m │ │ │ ├── BuildBCMaps3D.m │ │ │ ├── BuildMaps3D.m │ │ │ ├── Curl3D.m │ │ │ ├── Div3D.m │ │ │ ├── Dmatrices3D.m │ │ │ ├── EquiNodes3D.m │ │ │ ├── GeometricFactors3D.m │ │ │ ├── Globals3D.m │ │ │ ├── Grad3D.m │ │ │ ├── GradSimplex3DP.m │ │ │ ├── GradVandermonde3D.m │ │ │ ├── Lift3D.m │ │ │ ├── Maxwell3D.m │ │ │ ├── MaxwellDriver3D.m │ │ │ ├── MaxwellRHS3D.m │ │ │ ├── Nodes3D.m │ │ │ ├── Normals3D.m │ │ │ ├── PoissonIPDG3D.m │ │ │ ├── PoissonIPDGDriver3D.m │ │ │ ├── PoissonIPDGbc3D.m │ │ │ ├── Sample3D.m │ │ │ ├── Simplex3DP.m │ │ │ ├── StartUp3D.m │ │ │ ├── Vandermonde3D.m │ │ │ ├── WarpShiftFace3D.m │ │ │ ├── abctorst.m │ │ │ ├── dtscale3D.m │ │ │ ├── evalshift.m │ │ │ ├── evalwarp.m │ │ │ ├── rsttoabc.m │ │ │ ├── tiConnect3D.m │ │ │ └── xyztorst.m │ │ ├── Grid │ │ │ ├── 3D │ │ │ │ ├── cube.neu │ │ │ │ ├── cubeK268.neu │ │ │ │ ├── cubeK5.neu │ │ │ │ ├── cubeK6.neu │ │ │ │ ├── cubeK6a.neu │ │ │ │ ├── cubeK86.neu │ │ │ │ └── sphere.neu │ │ │ ├── CFD │ │ │ │ ├── channelA04.neu │ │ │ │ ├── channelA1.neu │ │ │ │ ├── cylinder.poly │ │ │ │ ├── cylinderA00075.neu │ │ │ │ ├── cylinderA00075a.neu │ │ │ │ ├── cylinderA00075b.neu │ │ │ │ ├── cylinderA00075c.neu │ │ │ │ ├── cylinderB.poly │ │ │ │ ├── cylinderCA0015.neu │ │ │ │ ├── cylinderDA001.neu │ │ │ │ ├── kovA02.neu │ │ │ │ ├── kovA1.neu │ │ │ │ ├── pvortex1A025.neu │ │ │ │ ├── pvortex2A025.neu │ │ │ │ ├── pvortex3A025.neu │ │ │ │ ├── pvortex4A01.neu │ │ │ │ ├── pvortexA025.neu │ │ │ │ └── stepA01.neu │ │ │ ├── CNS2D │ │ │ │ ├── CNScylK930.neu │ │ │ │ ├── CNSpegK823.neu │ │ │ │ ├── backdrop1.neu │ │ │ │ ├── backdrop2.neu │ │ │ │ ├── bumpSA025.neu │ │ │ │ ├── couette.neu │ │ │ │ ├── cyl4A05.neu │ │ │ │ ├── cyl6A05.neu │ │ │ │ ├── cyl7A05.neu │ │ │ │ ├── cyl8A025.neu │ │ │ │ ├── cyl8A025a.neu │ │ │ │ ├── cylSA02.neu │ │ │ │ ├── cylSA02a.neu │ │ │ │ └── otboxA01.neu │ │ │ ├── Euler2D │ │ │ │ ├── Euler0025.neu │ │ │ │ ├── Euler005.neu │ │ │ │ ├── Euler01.neu │ │ │ │ ├── Euler02.neu │ │ │ │ ├── FS_949.neu │ │ │ │ ├── Q4dengcanyuan_RES.txt │ │ │ │ ├── Untitled20.m │ │ │ │ ├── bump025.neu │ │ │ │ ├── forward3A00004.neu │ │ │ │ ├── fstepA001.neu │ │ │ │ ├── inlet1K1360.neu │ │ │ │ ├── inlet1K22584.neu │ │ │ │ ├── inlet1K2763.neu │ │ │ │ ├── inlet1K5451.neu │ │ │ │ ├── inlet1K546.neu │ │ │ │ ├── inlet1K9118.neu │ │ │ │ └── vortexA04.neu │ │ │ ├── Maxwell2D │ │ │ │ ├── Maxwell00625.neu │ │ │ │ ├── Maxwell0125.neu │ │ │ │ ├── Maxwell025.neu │ │ │ │ ├── Maxwell05.neu │ │ │ │ ├── Maxwell1.neu │ │ │ │ └── Maxwell2.neu │ │ │ └── Other │ │ │ │ ├── block2.neu │ │ │ │ ├── circA01.neu │ │ │ │ ├── circA01a.neu │ │ │ │ ├── circleK8.neu │ │ │ │ ├── cube1.neu │ │ │ │ ├── cube2.neu │ │ │ │ ├── limitdemo.neu │ │ │ │ ├── lshape.neu │ │ │ │ ├── peccyl1K709.neu │ │ │ │ ├── peccyl2K70.neu │ │ │ │ ├── peccyl4K28.neu │ │ │ │ ├── peccyl4K28a.neu │ │ │ │ ├── peccyl5K112.neu │ │ │ │ ├── peccylK395.neu │ │ │ │ ├── squareireg.neu │ │ │ │ └── squarereg.neu │ │ ├── README │ │ ├── ServiceRoutines │ │ │ ├── ConstructMap.m │ │ │ ├── CorrectBCTable.m │ │ │ ├── CorrectBCTable_v2.m │ │ │ ├── MeshGen1D.m │ │ │ ├── MeshGenDistMesh1D.m │ │ │ ├── MeshGenDistMesh2D.m │ │ │ ├── MeshGenDistMesh3D.m │ │ │ ├── MeshReaderGambit1D.m │ │ │ ├── MeshReaderGambit2D.m │ │ │ ├── MeshReaderGambit3D.m │ │ │ ├── MeshReaderGambitBC2D.m │ │ │ ├── MeshReaderGambitBC3D.m │ │ │ ├── PlotAdaptiveContour2D.m │ │ │ ├── PlotAdaptiveContour3D.m │ │ │ ├── PlotContour2D.m │ │ │ ├── PlotContour3D.m │ │ │ ├── PlotDomain2D.m │ │ │ ├── PlotField2D.m │ │ │ ├── PlotMesh2D.m │ │ │ ├── PlotSlice3D.m │ │ │ ├── PlotSphere3D.m │ │ │ ├── QuadPerimeter3D.m │ │ │ └── myspconvert.m │ │ ├── TestAll.m │ │ └── mypath.m │ │ └── Lebesgue2D │ │ ├── DerivLebesgue2D.m │ │ ├── Lebesgue2D.m │ │ └── lebfn2d.m ├── Prof_C_CarStencen │ ├── 1999-AJ_CC_FS-50_Lines_of_Matlab (1).pdf │ ├── 1999-AJ_CC_FS-50_Lines_of_Matlab (1) │ │ └── Software1 │ │ │ ├── fem2d │ │ │ ├── coordinates.dat │ │ │ ├── dirichlet.dat │ │ │ ├── elements3.dat │ │ │ ├── elements4.dat │ │ │ ├── f.m │ │ │ ├── fem2d.m │ │ │ ├── g.m │ │ │ ├── neumann.dat │ │ │ ├── show.m │ │ │ ├── stima3.m │ │ │ ├── stima4.m │ │ │ └── u_d.m │ │ │ ├── fem2d_heat │ │ │ ├── coordinates.dat │ │ │ ├── dirichlet.dat │ │ │ ├── elements3.dat │ │ │ ├── f.m │ │ │ ├── fem2d_heat.m │ │ │ ├── g.m │ │ │ ├── neumann.dat │ │ │ ├── show.m │ │ │ ├── stima3.m │ │ │ └── u_d.m │ │ │ ├── fem2d_nonlinear │ │ │ ├── coordinates.dat │ │ │ ├── dirichlet.dat │ │ │ ├── elements3.dat │ │ │ ├── f.m │ │ │ ├── fem2d_nonlinear.m │ │ │ ├── g.m │ │ │ ├── localdj.m │ │ │ ├── localj.m │ │ │ ├── show.m │ │ │ └── u_d.m │ │ │ └── fem3d │ │ │ ├── coordinates.dat │ │ │ ├── dirichlet.dat │ │ │ ├── elements3.dat │ │ │ ├── f.m │ │ │ ├── fem3d.m │ │ │ ├── g.m │ │ │ ├── neumann.dat │ │ │ ├── showsurface.m │ │ │ ├── stima3.m │ │ │ └── u_d.m │ ├── 2002-AJ_CC_FS_KR-Matlab_Implementation_FEM_Elasticity (1).pdf │ ├── 2002-AJ_CC_FS_KR-Matlab_Implementation_FEM_Elasticity (1) │ │ └── Software2 │ │ │ ├── fem_lame2d.tar.gz │ │ │ ├── fem_lame2d │ │ │ ├── cooks │ │ │ │ ├── aposteriori.m │ │ │ │ ├── avmatrix.m │ │ │ │ ├── coordinates.dat │ │ │ │ ├── dirichlet.dat │ │ │ │ ├── elements3.dat │ │ │ │ ├── f.m │ │ │ │ ├── fem_lame2d.m │ │ │ │ ├── fem_lame2d.m~ │ │ │ │ ├── g.m │ │ │ │ ├── neumann.dat │ │ │ │ ├── show.m │ │ │ │ ├── show.m~ │ │ │ │ ├── stima3.m │ │ │ │ ├── stima4.m │ │ │ │ └── u_d.m │ │ │ ├── hole │ │ │ │ ├── aposteriori.m │ │ │ │ ├── avmatrix.m │ │ │ │ ├── coordinates.dat │ │ │ │ ├── dirichlet.dat │ │ │ │ ├── elements3.dat │ │ │ │ ├── elements4.dat │ │ │ │ ├── f.m │ │ │ │ ├── fem_lame2d.m │ │ │ │ ├── fem_lame2d.m~ │ │ │ │ ├── g.m │ │ │ │ ├── neumann.dat │ │ │ │ ├── show.m │ │ │ │ ├── show.m~ │ │ │ │ ├── stima3.m │ │ │ │ ├── stima4.m │ │ │ │ └── u_d.m │ │ │ ├── lshape_p1 │ │ │ │ ├── aposteriori.m │ │ │ │ ├── avmatrix.m │ │ │ │ ├── coordinates.dat │ │ │ │ ├── dirichlet.dat │ │ │ │ ├── elements3.dat │ │ │ │ ├── f.m │ │ │ │ ├── fem_lame2d.m │ │ │ │ ├── fem_lame2d.m~ │ │ │ │ ├── neumann.dat │ │ │ │ ├── show.m │ │ │ │ ├── show.m~ │ │ │ │ ├── stima3.m │ │ │ │ ├── stima4.m │ │ │ │ ├── u_d.m │ │ │ │ └── u_value.m │ │ │ └── lshape_q1 │ │ │ │ ├── aposteriori.m │ │ │ │ ├── avmatrix.m │ │ │ │ ├── coordinates.dat │ │ │ │ ├── dirichlet.dat │ │ │ │ ├── elements4.dat │ │ │ │ ├── f.m │ │ │ │ ├── fem_lame2d.m │ │ │ │ ├── fem_lame2d.m~ │ │ │ │ ├── neumann.dat │ │ │ │ ├── show.m │ │ │ │ ├── show.m~ │ │ │ │ ├── stima3.m │ │ │ │ ├── stima4.m │ │ │ │ ├── u_d.m │ │ │ │ └── u_value.m │ │ │ └── fem_lame3d │ │ │ └── angle │ │ │ ├── README │ │ │ ├── coordinates.dat │ │ │ ├── dirichlet.dat │ │ │ ├── elements.dat │ │ │ ├── f.m │ │ │ ├── fem_lame3d.m │ │ │ ├── g.m │ │ │ ├── neumann.dat │ │ │ ├── show.m │ │ │ ├── stima.m │ │ │ └── u_d.m │ ├── 2002-CC_KR-Elastoviscoplastic_FE_Analysis_in_Matlab.pdf │ ├── 2002-CC_KR-Elastoviscoplastic_FE_Analysis_in_Matlab │ │ └── Software3 │ │ │ ├── example1 │ │ │ ├── coordinates.dat │ │ │ ├── dev2.m │ │ │ ├── dirichlet.dat │ │ │ ├── elements.dat │ │ │ ├── f.m │ │ │ ├── fem.m │ │ │ ├── g.m │ │ │ ├── main.m │ │ │ ├── neumann.dat │ │ │ ├── show.m │ │ │ ├── stima.m │ │ │ ├── tension.m │ │ │ ├── tr2.m │ │ │ └── u_D.m │ │ │ ├── example2 │ │ │ ├── coordinates.dat │ │ │ ├── dev2.m │ │ │ ├── dirichlet.dat │ │ │ ├── elements.dat │ │ │ ├── f.m │ │ │ ├── fem.m │ │ │ ├── g.m │ │ │ ├── main.m │ │ │ ├── neumann.dat │ │ │ ├── show.m │ │ │ ├── stima.m │ │ │ ├── tension.m │ │ │ ├── tr2.m │ │ │ └── u_D.m │ │ │ ├── example3 │ │ │ ├── coordinates.dat │ │ │ ├── dev2.m │ │ │ ├── dirichlet.dat │ │ │ ├── elements.dat │ │ │ ├── f.m │ │ │ ├── fem.m │ │ │ ├── g.m │ │ │ ├── main.m │ │ │ ├── neumann.dat │ │ │ ├── show.m │ │ │ ├── stima.m │ │ │ ├── tension.m │ │ │ ├── tr2.m │ │ │ └── u_D.m │ │ │ └── example4 │ │ │ ├── coordinates.dat │ │ │ ├── dev3.m │ │ │ ├── dirichlet.dat │ │ │ ├── elements.dat │ │ │ ├── f.m │ │ │ ├── fem.m │ │ │ ├── g.m │ │ │ ├── main.m │ │ │ ├── neumann.dat │ │ │ ├── show.m │ │ │ ├── stima.m │ │ │ ├── tension.m │ │ │ ├── tr3.m │ │ │ └── u_D.m │ ├── 2005-BC_CC-Three_MATLAB_Implementations_Lowest-Order_Raviart-Thomas_MFEM.pdf │ ├── 2005-CB_CC-three_RT-MFEM_with_error_control │ │ └── Software4 │ │ │ ├── CRmfem │ │ │ ├── Aposteriori.m │ │ │ ├── CRmfem.m │ │ │ ├── Dirichlet.dat │ │ │ ├── DivPsi.m │ │ │ ├── IntPhOmega.m │ │ │ ├── Neumann.dat │ │ │ ├── ShowDisplacement.m │ │ │ ├── ShowFlux.m │ │ │ ├── StemaNC.m │ │ │ ├── computeUh.m │ │ │ ├── coordinate.dat │ │ │ ├── edge.m │ │ │ ├── element.dat │ │ │ ├── f.m │ │ │ ├── fluxEB.m │ │ │ ├── g.m │ │ │ ├── ph_OnRTElement.m │ │ │ ├── show.m │ │ │ ├── signedge.m │ │ │ ├── tangent.m │ │ │ ├── u_D.m │ │ │ ├── uh.m │ │ │ ├── uhDir.m │ │ │ └── uhN.m │ │ │ ├── EBmfem │ │ │ ├── Aposteriori.m │ │ │ ├── EBmfem.m │ │ │ ├── Neumann.dat │ │ │ ├── ShowDisplacement.m │ │ │ ├── ShowFlux.m │ │ │ ├── coordinate.dat │ │ │ ├── dirichlet.dat │ │ │ ├── duds.m │ │ │ ├── edge.m │ │ │ ├── element.dat │ │ │ ├── f.m │ │ │ ├── fluxEB.m │ │ │ ├── fluxEBEval.m │ │ │ ├── g.m │ │ │ ├── stimaB.m │ │ │ ├── tangent.m │ │ │ └── u_D.m │ │ │ ├── LMmfem │ │ │ ├── Aposteriori.m │ │ │ ├── LMmfem.m │ │ │ ├── Neumann.dat │ │ │ ├── ShowDisplacement.m │ │ │ ├── ShowFlux.m │ │ │ ├── Tangent.m │ │ │ ├── coordinate.dat │ │ │ ├── dirichlet.dat │ │ │ ├── duds.m │ │ │ ├── edge.m │ │ │ ├── element.dat │ │ │ ├── f.m │ │ │ ├── fluxLM.m │ │ │ ├── fluxLMEval.m │ │ │ ├── g.m │ │ │ └── u_D.m │ │ │ └── readme.txt │ ├── Adaptive numerical analysis in primal elastoplasticity with hardening.pdf │ ├── MyCodes │ │ └── ch3Elastoviscoplastic │ │ │ └── example4 │ │ │ ├── coordinates.dat │ │ │ ├── coordinates.mat │ │ │ ├── dirichlet.dat │ │ │ ├── dirichlet.mat │ │ │ ├── elements.dat │ │ │ ├── elements.mat │ │ │ ├── main.py │ │ │ ├── neumann.dat │ │ │ └── neumann.mat │ ├── note.md │ └── 黏弹性.md ├── galerkin0 │ ├── codes │ │ └── codes │ │ │ ├── Dhat.m │ │ │ ├── README │ │ │ ├── SEMhat.m │ │ │ ├── c_acc.m │ │ │ ├── cd_overint.m │ │ │ ├── cfast.m │ │ │ ├── conv_diff.m │ │ │ ├── fd_weights_full.m │ │ │ ├── interp_mat.m │ │ │ └── zwgll.m │ └── me528.pdf ├── jburkardt │ ├── dg1d_advection │ │ ├── Advec1D.m │ │ ├── AdvecRHS1D.m │ │ ├── BuildMaps1D.m │ │ ├── Connect1D.m │ │ ├── Dmatrix1D.m │ │ ├── GeometricFactors1D.m │ │ ├── Globals1D.m │ │ ├── GradJacobiP.m │ │ ├── GradVandermonde1D.m │ │ ├── JacobiGL.m │ │ ├── JacobiGQ.m │ │ ├── JacobiP.m │ │ ├── Lift1D.m │ │ ├── MeshGen1D.m │ │ ├── Normals1D.m │ │ ├── StartUp1D.m │ │ ├── Vandermonde1D.m │ │ ├── dg1d_advection_test.m │ │ └── timestamp.m │ ├── dg1d_heat │ │ ├── Advec1D.m │ │ ├── AdvecRHS1D.m │ │ ├── BuildMaps1D.m │ │ ├── Connect1D.m │ │ ├── Dmatrix1D.m │ │ ├── GeometricFactors1D.m │ │ ├── Globals1D.m │ │ ├── GradJacobiP.m │ │ ├── GradVandermonde1D.m │ │ ├── Heat1D.m │ │ ├── HeatCRHS1D.m │ │ ├── HeatCstabRHS1D.m │ │ ├── HeatLDGRHS1D.m │ │ ├── JacobiGL.m │ │ ├── JacobiGQ.m │ │ ├── JacobiP.m │ │ ├── Lift1D.m │ │ ├── MeshGen1D.m │ │ ├── Normals1D.m │ │ ├── StartUp1D.m │ │ ├── Vandermonde1D.m │ │ ├── dg1d_heat_test.m │ │ ├── dg1d_heat_test.png │ │ └── timestamp.m │ ├── dg1d_maxwell │ │ ├── BuildMaps1D.m │ │ ├── Connect1D.m │ │ ├── Dmatrix1D.m │ │ ├── GeometricFactors1D.m │ │ ├── Globals1D.m │ │ ├── GradJacobiP.m │ │ ├── GradVandermonde1D.m │ │ ├── JacobiGL.m │ │ ├── JacobiGQ.m │ │ ├── JacobiP.m │ │ ├── Lift1D.m │ │ ├── Maxwell1D.m │ │ ├── MaxwellRHS1D.m │ │ ├── MeshGen1D.m │ │ ├── Normals1D.m │ │ ├── StartUp1D.m │ │ ├── Vandermonde1D.m │ │ ├── dg1d_maxwell_test.m │ │ ├── dg1d_maxwell_test.png │ │ └── timestamp.m │ ├── dg1d_poisson │ │ ├── dg1d_poisson.m │ │ ├── dg1d_poisson_interp.m │ │ ├── dg1d_poisson_monomial.m │ │ ├── dg1d_poisson_test.m │ │ ├── dg1d_poisson_test.png │ │ ├── dg1d_poisson_test_exact.m │ │ ├── dg1d_poisson_test_source.m │ │ └── timestamp.m │ ├── fem1d_adpative │ │ ├── fem1d_adaptive.m │ │ └── timestamp.m │ ├── fem1d_bvh │ │ ├── fem1d_bvp_linear.m │ │ ├── fem1d_bvp_linear_test00.m │ │ ├── fem1d_bvp_linear_test01.m │ │ ├── fem1d_bvp_linear_test02.m │ │ ├── fem1d_bvp_linear_test03.m │ │ ├── fem1d_bvp_linear_test04.m │ │ ├── fem1d_bvp_linear_test05.m │ │ ├── fem1d_bvp_linear_test06.m │ │ ├── fem1d_bvp_linear_test07.m │ │ ├── fem1d_bvp_linear_test08.m │ │ ├── fem1d_bvp_linear_test09.m │ │ ├── fem1d_bvp_linear_test10.m │ │ ├── h1s_error_linear.m │ │ ├── l1_error.m │ │ ├── l2_error_linear.m │ │ ├── max_error_linear.m │ │ └── timestamp.m │ ├── fem1d_heat_implict │ │ ├── assemble_backward_euler.m │ │ ├── assemble_bc.m │ │ ├── assemble_fem.m │ │ ├── basis_function.m │ │ ├── bc_test01.m │ │ ├── bc_test02.m │ │ ├── bc_test03.m │ │ ├── exact_test02.m │ │ ├── fem1d_heat_implicit.m │ │ ├── fem1d_heat_implicit_test01.m │ │ ├── fem1d_heat_implicit_test02.m │ │ ├── fem1d_heat_implicit_test03.m │ │ ├── g_test02.txt │ │ ├── h_test01.txt │ │ ├── h_test02.txt │ │ ├── ic_test01.m │ │ ├── ic_test02.m │ │ ├── ic_test03.m │ │ ├── k_test01.m │ │ ├── k_test02.m │ │ ├── k_test03.m │ │ ├── quadrature_set.m │ │ ├── r8mat_write.m │ │ ├── r8vec_write.m │ │ ├── reference_to_physical.m │ │ ├── rhs_test01.m │ │ ├── rhs_test02.m │ │ ├── rhs_test03.m │ │ ├── t_test01.txt │ │ ├── t_test02.txt │ │ ├── timestamp.m │ │ ├── x_test01.txt │ │ └── x_test02.txt │ ├── fem1d_nonlinear │ │ ├── fem1d_nonlinear.m │ │ ├── fem1d_nonlinear_test.m │ │ └── timestamp.m │ ├── fem1d_quad │ │ ├── fem1d_bvp_quadratic.m │ │ ├── fem1d_bvp_quadratic_test00.m │ │ ├── fem1d_bvp_quadratic_test01.m │ │ ├── fem1d_bvp_quadratic_test02.m │ │ ├── fem1d_bvp_quadratic_test03.m │ │ ├── fem1d_bvp_quadratic_test04.m │ │ ├── fem1d_bvp_quadratic_test05.m │ │ ├── fem1d_bvp_quadratic_test06.m │ │ ├── fem1d_bvp_quadratic_test07.m │ │ ├── fem1d_bvp_quadratic_test08.m │ │ ├── fem1d_bvp_quadratic_test09.m │ │ ├── fem1d_bvp_quadratic_test10.m │ │ ├── h1error_test10.png │ │ ├── h1s_error_quadratic.m │ │ ├── l1_error.m │ │ ├── l2_error_quadratic.m │ │ ├── l2error_test10.png │ │ ├── max_error_quadratic.m │ │ ├── maxerror_test10.png │ │ └── timestamp.m │ ├── fem1d_spectral │ │ ├── fem1d_spectral_numeric.m │ │ ├── fem1d_spectral_numeric_test.m │ │ └── timestamp.m │ └── fem2d_poisson │ │ ├── fem2d_poisson_rectangle.m │ │ ├── fem2d_poisson_rectangle_linear.m │ │ ├── rectangle_elements.txt │ │ ├── rectangle_nodes.txt │ │ └── rectangle_solution.txt └── mixed │ └── mixedfem_sample_code │ ├── .DS_Store │ ├── README │ ├── biharm_factor_system.m │ ├── biharm_solve_with_factor.m │ ├── bump_demo.m │ ├── cotmatrix.m │ ├── create_irregular_grid_with_min_angle.m │ ├── create_regular_grid.m │ ├── display_domain.m │ ├── execute_triangle.m │ ├── get_y_from_beziers.m │ ├── layers_from_handle.m │ ├── limit_faces.m │ ├── massmatrix.m │ ├── massmatrix_intrinsic.m │ ├── print_to_poly_file.m │ ├── readOBJ.m │ ├── readOFF.m │ ├── read_faces_from_ele_file.m │ ├── read_vertices_from_node_file.m │ ├── triharm_factor_system.m │ ├── triharm_solve_with_factor.m │ ├── tsurf.m │ ├── writeOBJ.m │ └── writeOFF.m ├── FireFlameSmoke └── compress │ ├── CFS_PLUME.tar.gz │ ├── DCT1D.py │ └── note.md ├── FluidSolidInteraction ├── FastVariationalFrameWork │ ├── Plus.py │ ├── Readme.md │ ├── variational │ │ ├── array1.h │ │ ├── array2.h │ │ ├── array2_utils.h │ │ ├── fluidsim.cpp │ │ ├── fluidsim.h │ │ ├── gluvi.cpp │ │ ├── gluvi.h │ │ ├── main.cpp │ │ ├── openglutils.cpp │ │ ├── openglutils.h │ │ ├── pcgsolver │ │ │ ├── blas_wrapper.h │ │ │ ├── pcg_solver.h │ │ │ └── sparse_matrix.h │ │ ├── util.h │ │ └── vec.h │ ├── variationalPy.py │ └── variationalplusgfm │ │ ├── array1.h │ │ ├── array2.h │ │ ├── array2_utils.h │ │ ├── fluidsim.cpp │ │ ├── fluidsim.h │ │ ├── gluvi.cpp │ │ ├── gluvi.h │ │ ├── main.cpp │ │ ├── openglutils.cpp │ │ ├── openglutils.h │ │ ├── pcgsolver │ │ ├── blas_wrapper.h │ │ ├── pcg_solver.h │ │ └── sparse_matrix.h │ │ ├── util.h │ │ └── vec.h ├── piston │ ├── Lax_Wendroff.m │ ├── flu_mass.m │ ├── flu_residual.m │ ├── fluid.m │ ├── flux.m │ ├── fsi_display.m │ ├── initialize_data_fluid.m │ ├── initialize_data_structure.m │ ├── integ.m │ ├── main_fsi.m │ ├── move_mesh.m │ ├── post_treatment.m │ ├── pressure.m │ ├── shock_capture.m │ ├── spring.m │ ├── structure.m │ ├── temperature.m │ └── timestep.m └── resim │ └── ZEPHYR │ ├── .DS_Store │ ├── Makefile │ ├── SETTINGS.h │ ├── cfg │ ├── .DS_Store │ ├── stam.200.cfg │ └── stam.64.cfg │ ├── data │ └── .DS_Store │ ├── projects │ ├── .DS_Store │ ├── cubatureGeneratorStamStaged │ │ ├── .DS_Store │ │ ├── Makefile │ │ ├── Makefile.ubuntu │ │ ├── cubatureGeneratorStamStaged.cpp │ │ └── cubatureGeneratorStamStaged.o │ ├── fluidStam3D │ │ ├── .DS_Store │ │ ├── Makefile │ │ ├── Makefile.ubuntu │ │ ├── fluidStam3D.cpp │ │ └── fluidStam3D.o │ ├── include.mk │ ├── include.ubuntu │ ├── reducedStagedStam3D │ │ ├── .DS_Store │ │ ├── Makefile │ │ ├── Makefile.ubuntu │ │ ├── reducedStagedStam3D.cpp │ │ └── reducedStagedStam3D.o │ └── svdOutOfCoreMultiple │ │ ├── .DS_Store │ │ ├── Makefile │ │ ├── Makefile.ubuntu │ │ ├── svdOutOfCoreMultiple.cpp │ │ └── svdOutOfCoreMultiple.o │ ├── scratch │ └── .DS_Store │ └── src │ ├── .DS_Store │ ├── Eigen │ ├── .DS_Store │ ├── .hg_archival.txt │ ├── .hgeol │ ├── .hgignore │ ├── .hgtags │ ├── .krazy │ ├── CMakeLists.txt │ ├── COPYING.BSD │ ├── COPYING.GPL │ ├── COPYING.LGPL │ ├── COPYING.MINPACK │ ├── COPYING.MPL2 │ ├── COPYING.README │ ├── CTestConfig.cmake │ ├── CTestCustom.cmake.in │ ├── Eigen │ │ ├── .DS_Store │ │ ├── Array │ │ ├── CMakeLists.txt │ │ ├── Cholesky │ │ ├── CholmodSupport │ │ ├── Core │ │ ├── Dense │ │ ├── Eigen │ │ ├── Eigen2Support │ │ ├── Eigenvalues │ │ ├── Geometry │ │ ├── Householder │ │ ├── IterativeLinearSolvers │ │ ├── Jacobi │ │ ├── LU │ │ ├── LeastSquares │ │ ├── OrderingMethods │ │ ├── PaStiXSupport │ │ ├── PardisoSupport │ │ ├── QR │ │ ├── QtAlignedMalloc │ │ ├── SVD │ │ ├── Sparse │ │ ├── SparseCholesky │ │ ├── SparseCore │ │ ├── StdDeque │ │ ├── StdList │ │ ├── StdVector │ │ ├── SuperLUSupport │ │ ├── UmfPackSupport │ │ └── src │ │ │ ├── .DS_Store │ │ │ ├── CMakeLists.txt │ │ │ ├── Cholesky │ │ │ ├── CMakeLists.txt │ │ │ ├── LDLT.h │ │ │ ├── LLT.h │ │ │ └── LLT_MKL.h │ │ │ ├── CholmodSupport │ │ │ ├── CMakeLists.txt │ │ │ └── CholmodSupport.h │ │ │ ├── Core │ │ │ ├── Array.h │ │ │ ├── ArrayBase.h │ │ │ ├── ArrayWrapper.h │ │ │ ├── Assign.h │ │ │ ├── Assign_MKL.h │ │ │ ├── BandMatrix.h │ │ │ ├── Block.h │ │ │ ├── BooleanRedux.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CommaInitializer.h │ │ │ ├── CwiseBinaryOp.h │ │ │ ├── CwiseNullaryOp.h │ │ │ ├── CwiseUnaryOp.h │ │ │ ├── CwiseUnaryView.h │ │ │ ├── DenseBase.h │ │ │ ├── DenseCoeffsBase.h │ │ │ ├── DenseStorage.h │ │ │ ├── Diagonal.h │ │ │ ├── DiagonalMatrix.h │ │ │ ├── DiagonalProduct.h │ │ │ ├── Dot.h │ │ │ ├── EigenBase.h │ │ │ ├── Flagged.h │ │ │ ├── ForceAlignedAccess.h │ │ │ ├── Functors.h │ │ │ ├── Fuzzy.h │ │ │ ├── GeneralProduct.h │ │ │ ├── GenericPacketMath.h │ │ │ ├── GlobalFunctions.h │ │ │ ├── IO.h │ │ │ ├── Map.h │ │ │ ├── MapBase.h │ │ │ ├── MathFunctions.h │ │ │ ├── Matrix.h │ │ │ ├── MatrixBase.h │ │ │ ├── NestByValue.h │ │ │ ├── NoAlias.h │ │ │ ├── NumTraits.h │ │ │ ├── PermutationMatrix.h │ │ │ ├── PlainObjectBase.h │ │ │ ├── Product.h │ │ │ ├── ProductBase.h │ │ │ ├── Random.h │ │ │ ├── Redux.h │ │ │ ├── Replicate.h │ │ │ ├── ReturnByValue.h │ │ │ ├── Reverse.h │ │ │ ├── Select.h │ │ │ ├── SelfAdjointView.h │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ ├── SolveTriangular.h │ │ │ ├── StableNorm.h │ │ │ ├── Stride.h │ │ │ ├── Swap.h │ │ │ ├── Transpose.h │ │ │ ├── Transpositions.h │ │ │ ├── TriangularMatrix.h │ │ │ ├── VectorBlock.h │ │ │ ├── VectorwiseOp.h │ │ │ ├── Visitor.h │ │ │ ├── arch │ │ │ │ ├── AltiVec │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Complex.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Default │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── Settings.h │ │ │ │ ├── NEON │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Complex.h │ │ │ │ │ └── PacketMath.h │ │ │ │ └── SSE │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ ├── products │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CoeffBasedProduct.h │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ ├── GeneralMatrixMatrixTriangular_MKL.h │ │ │ │ ├── GeneralMatrixMatrix_MKL.h │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ ├── GeneralMatrixVector_MKL.h │ │ │ │ ├── Parallelizer.h │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ ├── SelfadjointMatrixMatrix_MKL.h │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ ├── SelfadjointMatrixVector_MKL.h │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ ├── TriangularMatrixMatrix_MKL.h │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ ├── TriangularMatrixVector_MKL.h │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ ├── TriangularSolverMatrix_MKL.h │ │ │ │ └── TriangularSolverVector.h │ │ │ └── util │ │ │ │ ├── BlasUtil.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Constants.h │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ ├── MKL_support.h │ │ │ │ ├── Macros.h │ │ │ │ ├── Memory.h │ │ │ │ ├── Meta.h │ │ │ │ ├── NonMPL2.h │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ ├── StaticAssert.h │ │ │ │ └── XprHelper.h │ │ │ ├── Eigen2Support │ │ │ ├── Block.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Cwise.h │ │ │ ├── CwiseOperators.h │ │ │ ├── Geometry │ │ │ │ ├── AlignedBox.h │ │ │ │ ├── All.h │ │ │ │ ├── AngleAxis.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Hyperplane.h │ │ │ │ ├── ParametrizedLine.h │ │ │ │ ├── Quaternion.h │ │ │ │ ├── Rotation2D.h │ │ │ │ ├── RotationBase.h │ │ │ │ ├── Scaling.h │ │ │ │ ├── Transform.h │ │ │ │ └── Translation.h │ │ │ ├── LU.h │ │ │ ├── Lazy.h │ │ │ ├── LeastSquares.h │ │ │ ├── Macros.h │ │ │ ├── MathFunctions.h │ │ │ ├── Memory.h │ │ │ ├── Meta.h │ │ │ ├── Minor.h │ │ │ ├── QR.h │ │ │ ├── SVD.h │ │ │ ├── TriangularSolver.h │ │ │ └── VectorBlock.h │ │ │ ├── Eigenvalues │ │ │ ├── CMakeLists.txt │ │ │ ├── ComplexEigenSolver.h │ │ │ ├── ComplexSchur.h │ │ │ ├── ComplexSchur_MKL.h │ │ │ ├── EigenSolver.h │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ ├── HessenbergDecomposition.h │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ ├── RealSchur.h │ │ │ ├── RealSchur_MKL.h │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ ├── SelfAdjointEigenSolver_MKL.h │ │ │ └── Tridiagonalization.h │ │ │ ├── Geometry │ │ │ ├── AlignedBox.h │ │ │ ├── AngleAxis.h │ │ │ ├── CMakeLists.txt │ │ │ ├── EulerAngles.h │ │ │ ├── Homogeneous.h │ │ │ ├── Hyperplane.h │ │ │ ├── OrthoMethods.h │ │ │ ├── ParametrizedLine.h │ │ │ ├── Quaternion.h │ │ │ ├── Rotation2D.h │ │ │ ├── RotationBase.h │ │ │ ├── Scaling.h │ │ │ ├── Transform.h │ │ │ ├── Translation.h │ │ │ ├── Umeyama.h │ │ │ └── arch │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Geometry_SSE.h │ │ │ ├── Householder │ │ │ ├── BlockHouseholder.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Householder.h │ │ │ └── HouseholderSequence.h │ │ │ ├── IterativeLinearSolvers │ │ │ ├── BasicPreconditioners.h │ │ │ ├── BiCGSTAB.h │ │ │ ├── CMakeLists.txt │ │ │ ├── ConjugateGradient.h │ │ │ ├── IncompleteLUT.h │ │ │ └── IterativeSolverBase.h │ │ │ ├── Jacobi │ │ │ ├── CMakeLists.txt │ │ │ └── Jacobi.h │ │ │ ├── LU │ │ │ ├── CMakeLists.txt │ │ │ ├── Determinant.h │ │ │ ├── FullPivLU.h │ │ │ ├── Inverse.h │ │ │ ├── PartialPivLU.h │ │ │ ├── PartialPivLU_MKL.h │ │ │ └── arch │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Inverse_SSE.h │ │ │ ├── OrderingMethods │ │ │ ├── Amd.h │ │ │ └── CMakeLists.txt │ │ │ ├── PaStiXSupport │ │ │ ├── CMakeLists.txt │ │ │ └── PaStiXSupport.h │ │ │ ├── PardisoSupport │ │ │ ├── CMakeLists.txt │ │ │ └── PardisoSupport.h │ │ │ ├── QR │ │ │ ├── CMakeLists.txt │ │ │ ├── ColPivHouseholderQR.h │ │ │ ├── ColPivHouseholderQR_MKL.h │ │ │ ├── FullPivHouseholderQR.h │ │ │ ├── HouseholderQR.h │ │ │ └── HouseholderQR_MKL.h │ │ │ ├── SVD │ │ │ ├── CMakeLists.txt │ │ │ ├── JacobiSVD.h │ │ │ ├── JacobiSVD_MKL.h │ │ │ └── UpperBidiagonalization.h │ │ │ ├── SparseCholesky │ │ │ ├── CMakeLists.txt │ │ │ └── SimplicialCholesky.h │ │ │ ├── SparseCore │ │ │ ├── AmbiVector.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CompressedStorage.h │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ ├── CoreIterators.h │ │ │ ├── MappedSparseMatrix.h │ │ │ ├── SparseAssign.h │ │ │ ├── SparseBlock.h │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ ├── SparseDenseProduct.h │ │ │ ├── SparseDiagonalProduct.h │ │ │ ├── SparseDot.h │ │ │ ├── SparseFuzzy.h │ │ │ ├── SparseMatrix.h │ │ │ ├── SparseMatrixBase.h │ │ │ ├── SparsePermutation.h │ │ │ ├── SparseProduct.h │ │ │ ├── SparseRedux.h │ │ │ ├── SparseSelfAdjointView.h │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ ├── SparseTranspose.h │ │ │ ├── SparseTriangularView.h │ │ │ ├── SparseUtil.h │ │ │ ├── SparseVector.h │ │ │ ├── SparseView.h │ │ │ └── TriangularSolver.h │ │ │ ├── StlSupport │ │ │ ├── CMakeLists.txt │ │ │ ├── StdDeque.h │ │ │ ├── StdList.h │ │ │ ├── StdVector.h │ │ │ └── details.h │ │ │ ├── SuperLUSupport │ │ │ ├── CMakeLists.txt │ │ │ └── SuperLUSupport.h │ │ │ ├── UmfPackSupport │ │ │ ├── CMakeLists.txt │ │ │ └── UmfPackSupport.h │ │ │ ├── misc │ │ │ ├── CMakeLists.txt │ │ │ ├── Image.h │ │ │ ├── Kernel.h │ │ │ ├── Solve.h │ │ │ ├── SparseSolve.h │ │ │ └── blas.h │ │ │ └── plugins │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ ├── BlockMethods.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ └── MatrixCwiseUnaryOps.h │ ├── INSTALL │ ├── bench │ │ ├── BenchSparseUtil.h │ │ ├── BenchTimer.h │ │ ├── BenchUtil.h │ │ ├── README.txt │ │ ├── basicbench.cxxlist │ │ ├── basicbenchmark.cpp │ │ ├── basicbenchmark.h │ │ ├── benchBlasGemm.cpp │ │ ├── benchCholesky.cpp │ │ ├── benchEigenSolver.cpp │ │ ├── benchFFT.cpp │ │ ├── benchVecAdd.cpp │ │ ├── bench_gemm.cpp │ │ ├── bench_multi_compilers.sh │ │ ├── bench_norm.cpp │ │ ├── bench_reverse.cpp │ │ ├── bench_sum.cpp │ │ ├── bench_unrolling │ │ ├── benchmark.cpp │ │ ├── benchmarkSlice.cpp │ │ ├── benchmarkX.cpp │ │ ├── benchmarkXcwise.cpp │ │ ├── benchmark_suite │ │ ├── btl │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── actions │ │ │ │ ├── action_aat_product.hh │ │ │ │ ├── action_ata_product.hh │ │ │ │ ├── action_atv_product.hh │ │ │ │ ├── action_axpby.hh │ │ │ │ ├── action_axpy.hh │ │ │ │ ├── action_cholesky.hh │ │ │ │ ├── action_ger.hh │ │ │ │ ├── action_hessenberg.hh │ │ │ │ ├── action_lu_decomp.hh │ │ │ │ ├── action_lu_solve.hh │ │ │ │ ├── action_matrix_matrix_product.hh │ │ │ │ ├── action_matrix_matrix_product_bis.hh │ │ │ │ ├── action_matrix_vector_product.hh │ │ │ │ ├── action_partial_lu.hh │ │ │ │ ├── action_rot.hh │ │ │ │ ├── action_symv.hh │ │ │ │ ├── action_syr2.hh │ │ │ │ ├── action_trisolve.hh │ │ │ │ ├── action_trisolve_matrix.hh │ │ │ │ ├── action_trmm.hh │ │ │ │ └── basic_actions.hh │ │ │ ├── cmake │ │ │ │ ├── FindACML.cmake │ │ │ │ ├── FindATLAS.cmake │ │ │ │ ├── FindBlitz.cmake │ │ │ │ ├── FindCBLAS.cmake │ │ │ │ ├── FindGMM.cmake │ │ │ │ ├── FindGOTO.cmake │ │ │ │ ├── FindGOTO2.cmake │ │ │ │ ├── FindMKL.cmake │ │ │ │ ├── FindMTL4.cmake │ │ │ │ ├── FindPackageHandleStandardArgs.cmake │ │ │ │ ├── FindTvmet.cmake │ │ │ │ └── MacroOptionalAddSubdirectory.cmake │ │ │ ├── data │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── action_settings.txt │ │ │ │ ├── gnuplot_common_settings.hh │ │ │ │ ├── go_mean │ │ │ │ ├── mean.cxx │ │ │ │ ├── mk_gnuplot_script.sh │ │ │ │ ├── mk_mean_script.sh │ │ │ │ ├── mk_new_gnuplot.sh │ │ │ │ ├── perlib_plot_settings.txt │ │ │ │ ├── regularize.cxx │ │ │ │ ├── smooth.cxx │ │ │ │ └── smooth_all.sh │ │ │ ├── generic_bench │ │ │ │ ├── bench.hh │ │ │ │ ├── bench_parameter.hh │ │ │ │ ├── btl.hh │ │ │ │ ├── init │ │ │ │ │ ├── init_function.hh │ │ │ │ │ ├── init_matrix.hh │ │ │ │ │ └── init_vector.hh │ │ │ │ ├── static │ │ │ │ │ ├── bench_static.hh │ │ │ │ │ ├── intel_bench_fixed_size.hh │ │ │ │ │ └── static_size_generator.hh │ │ │ │ ├── timers │ │ │ │ │ ├── STL_perf_analyzer.hh │ │ │ │ │ ├── STL_timer.hh │ │ │ │ │ ├── mixed_perf_analyzer.hh │ │ │ │ │ ├── portable_perf_analyzer.hh │ │ │ │ │ ├── portable_perf_analyzer_old.hh │ │ │ │ │ ├── portable_timer.hh │ │ │ │ │ ├── x86_perf_analyzer.hh │ │ │ │ │ └── x86_timer.hh │ │ │ │ └── utils │ │ │ │ │ ├── size_lin_log.hh │ │ │ │ │ ├── size_log.hh │ │ │ │ │ ├── utilities.h │ │ │ │ │ └── xy_file.hh │ │ │ └── libs │ │ │ │ ├── BLAS │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blas.h │ │ │ │ ├── blas_interface.hh │ │ │ │ ├── blas_interface_impl.hh │ │ │ │ ├── c_interface_base.h │ │ │ │ └── main.cpp │ │ │ │ ├── STL │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── STL_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── blitz │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blitz_LU_solve_interface.hh │ │ │ │ ├── blitz_interface.hh │ │ │ │ ├── btl_blitz.cpp │ │ │ │ ├── btl_tiny_blitz.cpp │ │ │ │ └── tiny_blitz_interface.hh │ │ │ │ ├── eigen2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btl_tiny_eigen2.cpp │ │ │ │ ├── eigen2_interface.hh │ │ │ │ ├── main_adv.cpp │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ └── main_vecmat.cpp │ │ │ │ ├── eigen3 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btl_tiny_eigen3.cpp │ │ │ │ ├── eigen3_interface.hh │ │ │ │ ├── main_adv.cpp │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ └── main_vecmat.cpp │ │ │ │ ├── gmm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gmm_LU_solve_interface.hh │ │ │ │ ├── gmm_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── mtl4 │ │ │ │ ├── .kdbgrc.main │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ ├── mtl4_LU_solve_interface.hh │ │ │ │ └── mtl4_interface.hh │ │ │ │ ├── tvmet │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── tvmet_interface.hh │ │ │ │ └── ublas │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── ublas_interface.hh │ │ ├── check_cache_queries.cpp │ │ ├── eig33.cpp │ │ ├── geometry.cpp │ │ ├── product_threshold.cpp │ │ ├── quat_slerp.cpp │ │ ├── quatmul.cpp │ │ ├── sparse_cholesky.cpp │ │ ├── sparse_dense_product.cpp │ │ ├── sparse_lu.cpp │ │ ├── sparse_product.cpp │ │ ├── sparse_randomsetter.cpp │ │ ├── sparse_setter.cpp │ │ ├── sparse_transpose.cpp │ │ ├── sparse_trisolver.cpp │ │ ├── spbench │ │ │ ├── CMakeLists.txt │ │ │ ├── spbenchsolver.cpp │ │ │ └── spbenchsolver.h │ │ ├── spmv.cpp │ │ └── vdw_new.cpp │ ├── cmake │ │ ├── CMakeDetermineVSServicePack.cmake │ │ ├── EigenConfigureTesting.cmake │ │ ├── EigenDetermineOSVersion.cmake │ │ ├── EigenTesting.cmake │ │ ├── FindAdolc.cmake │ │ ├── FindBLAS.cmake │ │ ├── FindCholmod.cmake │ │ ├── FindEigen2.cmake │ │ ├── FindEigen3.cmake │ │ ├── FindFFTW.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGMP.cmake │ │ ├── FindGSL.cmake │ │ ├── FindGoogleHash.cmake │ │ ├── FindLAPACK.cmake │ │ ├── FindMPFR.cmake │ │ ├── FindMetis.cmake │ │ ├── FindPastix.cmake │ │ ├── FindScotch.cmake │ │ ├── FindStandardMathLibrary.cmake │ │ ├── FindSuperLU.cmake │ │ ├── FindUmfpack.cmake │ │ ├── RegexUtils.cmake │ │ └── language_support.cmake │ ├── demos │ │ ├── CMakeLists.txt │ │ ├── mandelbrot │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── mandelbrot.cpp │ │ │ └── mandelbrot.h │ │ ├── mix_eigen_and_c │ │ │ ├── README │ │ │ ├── binary_library.cpp │ │ │ ├── binary_library.h │ │ │ └── example.c │ │ └── opengl │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── camera.cpp │ │ │ ├── camera.h │ │ │ ├── gpuhelper.cpp │ │ │ ├── gpuhelper.h │ │ │ ├── icosphere.cpp │ │ │ ├── icosphere.h │ │ │ ├── quaternion_demo.cpp │ │ │ ├── quaternion_demo.h │ │ │ ├── trackball.cpp │ │ │ └── trackball.h │ ├── eigen3.pc.in │ ├── failtest │ │ ├── CMakeLists.txt │ │ ├── block_nonconst_ctor_on_const_xpr_0.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_1.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_2.cpp │ │ ├── block_on_const_type_actually_const_0.cpp │ │ ├── block_on_const_type_actually_const_1.cpp │ │ ├── const_qualified_block_method_retval_0.cpp │ │ ├── const_qualified_block_method_retval_1.cpp │ │ ├── const_qualified_diagonal_method_retval.cpp │ │ ├── const_qualified_transpose_method_retval.cpp │ │ ├── diagonal_nonconst_ctor_on_const_xpr.cpp │ │ ├── diagonal_on_const_type_actually_const.cpp │ │ ├── failtest_sanity_check.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_0.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_1.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_2.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_3.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_4.cpp │ │ ├── map_on_const_type_actually_const_0.cpp │ │ ├── map_on_const_type_actually_const_1.cpp │ │ ├── transpose_nonconst_ctor_on_const_xpr.cpp │ │ └── transpose_on_const_type_actually_const.cpp │ ├── lapack │ │ ├── CMakeLists.txt │ │ ├── cholesky.cpp │ │ ├── complex_double.cpp │ │ ├── complex_single.cpp │ │ ├── double.cpp │ │ ├── eigenvalues.cpp │ │ ├── lapack_common.h │ │ ├── lu.cpp │ │ └── single.cpp │ ├── scripts │ │ ├── CMakeLists.txt │ │ ├── buildtests.in │ │ ├── check.in │ │ ├── debug.in │ │ ├── eigen_gen_credits.cpp │ │ ├── eigen_gen_docs │ │ ├── release.in │ │ └── relicense.py │ └── signature_of_eigen3_matrix_library │ ├── cubature │ ├── .DS_Store │ ├── CUBATURE_GENERATOR_EIGEN.cpp │ ├── CUBATURE_GENERATOR_EIGEN.h │ └── CUBATURE_GENERATOR_EIGEN.o │ ├── geometry │ ├── .DS_Store │ ├── FIELD_3D.cpp │ ├── FIELD_3D.h │ ├── FIELD_3D.o │ ├── OBSTACLE.h │ ├── VECTOR3_FIELD_3D.cpp │ ├── VECTOR3_FIELD_3D.h │ └── VECTOR3_FIELD_3D.o │ ├── glvu │ ├── .DS_Store │ ├── camera.h │ ├── glvu.cpp │ ├── glvu.h │ ├── glvu.o │ ├── glvuMat16fv.h │ ├── glvuVec3f.h │ ├── glvuVec3fv.h │ ├── snapshot.h │ ├── text.h │ └── trackball.h │ ├── integrators │ ├── .DS_Store │ ├── FLUID_3D_MIC.cpp │ ├── FLUID_3D_MIC.h │ ├── FLUID_3D_MIC.o │ ├── SUBSPACE_FLUID_3D_EIGEN.cpp │ ├── SUBSPACE_FLUID_3D_EIGEN.h │ └── SUBSPACE_FLUID_3D_EIGEN.o │ ├── linearalgebra │ ├── .DS_Store │ ├── BIG_MATRIX.cpp │ ├── BIG_MATRIX.h │ ├── BIG_MATRIX.o │ ├── EIGEN.cpp │ ├── EIGEN.h │ ├── EIGEN.o │ ├── MATRIX.cpp │ ├── MATRIX.h │ ├── MATRIX.o │ ├── MATRIX3.cpp │ ├── MATRIX3.h │ ├── MATRIX3.o │ ├── NNLS.cpp │ ├── NNLS.h │ ├── NNLS.o │ ├── SPARSE_MATRIX.cpp │ ├── SPARSE_MATRIX.h │ ├── SPARSE_MATRIX.o │ ├── SPARSE_MATRIX_ARRAY.cpp │ ├── SPARSE_MATRIX_ARRAY.h │ ├── SPARSE_MATRIX_ARRAY.o │ ├── VEC2.h │ ├── VEC3.h │ ├── VECTOR.cpp │ ├── VECTOR.h │ └── VECTOR.o │ ├── matlab │ ├── .DS_Store │ ├── analyzeSnapshots.m │ ├── analyzeSnapshots.perl │ ├── bbnnls.m │ ├── bbnnlsFromFile.m │ ├── fnnls.m │ ├── fnnlsFromFile.m │ ├── leastsquares.m │ ├── matlabSVD.perl │ ├── nnls.m │ ├── pinvleastsquares.m │ ├── transposeSVD.perl │ └── writevector.m │ └── util │ ├── .DS_Store │ ├── MERSENNETWISTER.h │ ├── QUICKTIME_MOVIE.h │ ├── SIMPLE_PARSER.cpp │ ├── SIMPLE_PARSER.h │ ├── SIMPLE_PARSER.o │ ├── TIMER.cpp │ ├── TIMER.h │ └── TIMER.o ├── FrontTracking ├── DNS-Solver.pdf ├── LevelSetSculpt │ ├── fastlevelset.cpp │ ├── fastlevelset.h │ └── main.cpp ├── MatchingFluid │ └── voronoi2d │ │ ├── Makefile │ │ ├── Makefile.example_defs │ │ ├── VoronoiFluid2D.sln │ │ ├── VoronoiFluid2D.vcproj │ │ ├── accelerationgrid.cpp │ │ ├── accelerationgrid.h │ │ ├── broadphasegrid.cpp │ │ ├── broadphasegrid.h │ │ ├── common │ │ ├── array1.h │ │ ├── array2.h │ │ ├── blas_wrapper.h │ │ ├── ccd_wrapper.h │ │ ├── collisionqueries.cpp │ │ ├── collisionqueries.h │ │ ├── cubic_ccd_wrapper.cpp │ │ ├── gluvi.cpp │ │ ├── gluvi.h │ │ ├── hashtable.h │ │ ├── makelevelset2.h │ │ ├── marching_triangles.cpp │ │ ├── marching_triangles.h │ │ ├── mat.h │ │ ├── openglutils.cpp │ │ ├── openglutils.h │ │ ├── predicates.cpp │ │ ├── predicates.h │ │ ├── util.h │ │ ├── vec.h │ │ ├── vector_math.h │ │ ├── wallclocktime.cpp │ │ └── wallclocktime.h │ │ ├── dist_funcs.cpp │ │ ├── dist_funcs.h │ │ ├── dualfluidsim.cpp │ │ ├── dualfluidsim.h │ │ ├── dynamicsurface.cpp │ │ ├── dynamicsurface.h │ │ ├── edgemesh.cpp │ │ ├── edgemesh.h │ │ ├── eltopo.cpp │ │ ├── eltopo.h │ │ ├── framestepper.cpp │ │ ├── framestepper.h │ │ ├── geom_routines.cpp │ │ ├── geom_routines.h │ │ ├── interpolator.cpp │ │ ├── interpolator.h │ │ ├── main.cpp │ │ ├── meshlevelset.cpp │ │ ├── meshlevelset.h │ │ ├── newsparse │ │ ├── dense_matrix.cpp │ │ ├── dense_matrix.h │ │ ├── krylov_solvers.cpp │ │ ├── krylov_solvers.h │ │ ├── linear_operator.h │ │ ├── sparse_matrix.cpp │ │ └── sparse_matrix.h │ │ ├── pressure_vor2d.cpp │ │ ├── pressure_vor2d.h │ │ ├── readme.txt │ │ ├── sampleseeder.cpp │ │ ├── sampleseeder.h │ │ ├── scenes.cpp │ │ ├── scenes.h │ │ ├── sparse │ │ ├── cgsolver.h │ │ ├── sparseilu.h │ │ ├── sparsematrix.h │ │ └── sparsemilu.h │ │ ├── surftrack.cpp │ │ ├── surftrack.h │ │ ├── triangle │ │ ├── triangle.c │ │ └── triangle.h │ │ ├── triangle_wrapper.cpp │ │ ├── triangle_wrapper.h │ │ ├── trimesh2d.cpp │ │ └── trimesh2d.h └── skin │ └── src │ ├── Makefile │ ├── README.TXT │ ├── kdTree.H │ ├── kdTree.cpp │ ├── main.cpp │ ├── marchingCube.H │ ├── marchingCube.cpp │ ├── particleIO.H │ ├── particleIO.cpp │ ├── slMatrix.H │ ├── slMatrix.cpp │ ├── slUtil.H │ ├── slUtil.cpp │ ├── slVector.H │ ├── slVector.cpp │ ├── smoothingFilter.H │ ├── smoothingFilter.cpp │ ├── smoothingGrid.H │ └── smoothingGrid.cpp ├── Gemotry ├── AdaptDynamicMeshes │ ├── ADM │ │ ├── .DS_Store │ │ ├── Makefile │ │ ├── README │ │ ├── TML │ │ │ ├── .svn │ │ │ │ ├── entries │ │ │ │ ├── format │ │ │ │ └── text-base │ │ │ │ │ ├── Makefile.svn-base │ │ │ │ │ └── README.svn-base │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── TNT │ │ │ │ ├── .svn │ │ │ │ │ ├── entries │ │ │ │ │ ├── format │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── jama_cholesky.h.svn-base │ │ │ │ │ │ ├── jama_eig.h.svn-base │ │ │ │ │ │ ├── jama_lu.h.svn-base │ │ │ │ │ │ ├── jama_qr.h.svn-base │ │ │ │ │ │ ├── jama_svd.h.svn-base │ │ │ │ │ │ ├── tnt.h.svn-base │ │ │ │ │ │ ├── tnt_array1d.h.svn-base │ │ │ │ │ │ ├── tnt_array1d_utils.h.svn-base │ │ │ │ │ │ ├── tnt_array2d.h.svn-base │ │ │ │ │ │ ├── tnt_array2d_utils.h.svn-base │ │ │ │ │ │ ├── tnt_array3d.h.svn-base │ │ │ │ │ │ ├── tnt_array3d_utils.h.svn-base │ │ │ │ │ │ ├── tnt_cmat.h.svn-base │ │ │ │ │ │ ├── tnt_fortran_array1d.h.svn-base │ │ │ │ │ │ ├── tnt_fortran_array1d_utils.h.svn-base │ │ │ │ │ │ ├── tnt_fortran_array2d.h.svn-base │ │ │ │ │ │ ├── tnt_fortran_array2d_utils.h.svn-base │ │ │ │ │ │ ├── tnt_fortran_array3d.h.svn-base │ │ │ │ │ │ ├── tnt_fortran_array3d_utils.h.svn-base │ │ │ │ │ │ ├── tnt_i_refvec.h.svn-base │ │ │ │ │ │ ├── tnt_math_utils.h.svn-base │ │ │ │ │ │ ├── tnt_sparse_matrix_csr.h.svn-base │ │ │ │ │ │ ├── tnt_stopwatch.h.svn-base │ │ │ │ │ │ ├── tnt_subscript.h.svn-base │ │ │ │ │ │ ├── tnt_vec.h.svn-base │ │ │ │ │ │ └── tnt_version.h.svn-base │ │ │ │ ├── jama_cholesky.h │ │ │ │ ├── jama_eig.h │ │ │ │ ├── jama_lu.h │ │ │ │ ├── jama_qr.h │ │ │ │ ├── jama_svd.h │ │ │ │ ├── tnt.h │ │ │ │ ├── tnt_array1d.h │ │ │ │ ├── tnt_array1d_utils.h │ │ │ │ ├── tnt_array2d.h │ │ │ │ ├── tnt_array2d_utils.h │ │ │ │ ├── tnt_array3d.h │ │ │ │ ├── tnt_array3d_utils.h │ │ │ │ ├── tnt_cmat.h │ │ │ │ ├── tnt_fortran_array1d.h │ │ │ │ ├── tnt_fortran_array1d_utils.h │ │ │ │ ├── tnt_fortran_array2d.h │ │ │ │ ├── tnt_fortran_array2d_utils.h │ │ │ │ ├── tnt_fortran_array3d.h │ │ │ │ ├── tnt_fortran_array3d_utils.h │ │ │ │ ├── tnt_i_refvec.h │ │ │ │ ├── tnt_math_utils.h │ │ │ │ ├── tnt_sparse_matrix_csr.h │ │ │ │ ├── tnt_stopwatch.h │ │ │ │ ├── tnt_subscript.h │ │ │ │ ├── tnt_vec.h │ │ │ │ └── tnt_version.h │ │ │ ├── apps │ │ │ │ ├── .svn │ │ │ │ │ ├── entries │ │ │ │ │ ├── format │ │ │ │ │ └── text-base │ │ │ │ │ │ └── TMLmake.defs.svn-base │ │ │ │ ├── Conversor │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── entries │ │ │ │ │ │ ├── format │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── 3ds2off.cc.svn-base │ │ │ │ │ │ │ ├── Makefile.svn-base │ │ │ │ │ │ │ ├── boundary.cc.svn-base │ │ │ │ │ │ │ ├── components.cc.svn-base │ │ │ │ │ │ │ ├── convert.cc.svn-base │ │ │ │ │ │ │ └── isolated.cc.svn-base │ │ │ │ │ ├── 3ds2off.cc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── boundary.cc │ │ │ │ │ ├── components.cc │ │ │ │ │ ├── convert.cc │ │ │ │ │ └── isolated.cc │ │ │ │ ├── TMLmake.defs │ │ │ │ └── Viewer │ │ │ │ │ ├── .svn │ │ │ │ │ ├── entries │ │ │ │ │ ├── format │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Drawing.cc.svn-base │ │ │ │ │ │ ├── Makefile.svn-base │ │ │ │ │ │ ├── TMViewer.cc.svn-base │ │ │ │ │ │ ├── TMViewer.h.svn-base │ │ │ │ │ │ ├── glViewer.h.svn-base │ │ │ │ │ │ ├── viewer.cc.svn-base │ │ │ │ │ │ └── viewer2.cc.svn-base │ │ │ │ │ ├── Drawing.cc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── TMViewer.cc │ │ │ │ │ ├── TMViewer.h │ │ │ │ │ ├── glViewer.h │ │ │ │ │ ├── viewer.cc │ │ │ │ │ └── viewer2.cc │ │ │ ├── include │ │ │ │ ├── .svn │ │ │ │ │ ├── entries │ │ │ │ │ └── format │ │ │ │ ├── edge.h │ │ │ │ ├── facet.h │ │ │ │ ├── heap.h │ │ │ │ ├── io.h │ │ │ │ ├── r3.h │ │ │ │ ├── rply.h │ │ │ │ ├── tml.h │ │ │ │ ├── trimesh.h │ │ │ │ └── vertex.h │ │ │ ├── lib │ │ │ │ └── .svn │ │ │ │ │ ├── entries │ │ │ │ │ └── format │ │ │ └── src │ │ │ │ ├── .svn │ │ │ │ ├── entries │ │ │ │ ├── format │ │ │ │ └── text-base │ │ │ │ │ ├── Makefile.svn-base │ │ │ │ │ ├── basic_io.cc.svn-base │ │ │ │ │ ├── edge.cc.svn-base │ │ │ │ │ ├── edge.h.svn-base │ │ │ │ │ ├── facet.cc.svn-base │ │ │ │ │ ├── facet.h.svn-base │ │ │ │ │ ├── heap.cc.svn-base │ │ │ │ │ ├── heap.h.svn-base │ │ │ │ │ ├── ifs_io.cc.svn-base │ │ │ │ │ ├── io.h.svn-base │ │ │ │ │ ├── obj_io.cc.svn-base │ │ │ │ │ ├── ply_io.cc.svn-base │ │ │ │ │ ├── quaternion.cc.svn-base │ │ │ │ │ ├── r3.h.svn-base │ │ │ │ │ ├── rply.c.svn-base │ │ │ │ │ ├── rply.h.svn-base │ │ │ │ │ ├── tml.h.svn-base │ │ │ │ │ ├── trimesh.h.svn-base │ │ │ │ │ ├── vertex.cc.svn-base │ │ │ │ │ └── vertex.h.svn-base │ │ │ │ ├── Makefile │ │ │ │ ├── basic_io.cc │ │ │ │ ├── edge.cc │ │ │ │ ├── edge.h │ │ │ │ ├── facet.cc │ │ │ │ ├── facet.h │ │ │ │ ├── heap.cc │ │ │ │ ├── heap.h │ │ │ │ ├── ifs_io.cc │ │ │ │ ├── io.h │ │ │ │ ├── obj_io.cc │ │ │ │ ├── ply_io.cc │ │ │ │ ├── quaternion.cc │ │ │ │ ├── r3.h │ │ │ │ ├── rply.c │ │ │ │ ├── rply.h │ │ │ │ ├── tml.h │ │ │ │ ├── trimesh.h │ │ │ │ ├── vertex.cc │ │ │ │ └── vertex.h │ │ ├── examples │ │ │ ├── .DS_Store │ │ │ ├── ADMmake.defs │ │ │ ├── adm_viewer.h │ │ │ ├── base_mesh │ │ │ │ ├── cube.off │ │ │ │ ├── cylinder.off │ │ │ │ └── plane.off │ │ │ ├── cubelp │ │ │ │ ├── .DS_Store │ │ │ │ ├── Makefile │ │ │ │ ├── lp3d.h │ │ │ │ ├── main.cc │ │ │ │ ├── multi.cc │ │ │ │ └── multi_criteria.h │ │ │ ├── drawing.h │ │ │ ├── ellipsoid │ │ │ │ ├── Makefile │ │ │ │ ├── ellipsoid.h │ │ │ │ └── main.cc │ │ │ ├── extrudelp │ │ │ │ ├── Makefile │ │ │ │ ├── extrudelp.h │ │ │ │ └── main.cc │ │ │ ├── glViewer.h │ │ │ ├── levelset │ │ │ │ ├── .DS_Store │ │ │ │ ├── Makefile │ │ │ │ ├── enright.cc │ │ │ │ ├── enright100.off │ │ │ │ ├── enright100b.off │ │ │ │ ├── jiao.cc │ │ │ │ ├── jiao100.off │ │ │ │ ├── jiao100b.off │ │ │ │ ├── transform.cc │ │ │ │ ├── tri_twospheres.off │ │ │ │ ├── twospheres.cc │ │ │ │ ├── twospheres100.off │ │ │ │ ├── unit.off │ │ │ │ ├── unit2.off │ │ │ │ └── viewer.h │ │ │ ├── sinc │ │ │ │ ├── Makefile │ │ │ │ ├── bump.cc │ │ │ │ ├── height.cc │ │ │ │ ├── sinc.h │ │ │ │ └── viewer.h │ │ │ ├── sinoidal │ │ │ │ ├── Makefile │ │ │ │ ├── main.cc │ │ │ │ └── sinoidal.h │ │ │ ├── sphere │ │ │ │ ├── Makefile │ │ │ │ ├── multi.cc │ │ │ │ ├── multi_criteria.h │ │ │ │ ├── sphere.h │ │ │ │ └── unit.cc │ │ │ ├── timestamp.h │ │ │ └── twist │ │ │ │ ├── Makefile │ │ │ │ ├── main.cc │ │ │ │ ├── twist.cc │ │ │ │ └── twist.h │ │ ├── include │ │ │ ├── adm.h │ │ │ ├── criteria.h │ │ │ ├── edge.h │ │ │ ├── facet.h │ │ │ ├── mesh.h │ │ │ ├── oracle.h │ │ │ └── vertex.h │ │ ├── src │ │ │ ├── .DS_Store │ │ │ ├── Makefile │ │ │ ├── a48elmts.cc │ │ │ ├── adapt.cc │ │ │ ├── adm.h │ │ │ ├── color.cc │ │ │ ├── criteria.h │ │ │ ├── edge.h │ │ │ ├── facet.h │ │ │ ├── front.cc │ │ │ ├── mesh.cc │ │ │ ├── mesh.h │ │ │ ├── oracle.h │ │ │ ├── stellar.cc │ │ │ ├── stochastic.cc │ │ │ ├── triquad.cc │ │ │ └── vertex.h │ │ └── surfaces │ │ │ ├── implicit.h │ │ │ ├── implicit_genus0.h │ │ │ ├── levelset.h │ │ │ └── parametric.h │ └── __MACOSX │ │ └── ADM │ │ ├── ._.DS_Store │ │ ├── TML │ │ └── apps │ │ │ └── Conversor │ │ │ └── ._.DS_Store │ │ ├── examples │ │ ├── ._.DS_Store │ │ ├── cubelp │ │ │ └── ._.DS_Store │ │ └── levelset │ │ │ └── ._.DS_Store │ │ └── src │ │ └── ._.DS_Store ├── BlusNoiseSampling │ ├── Makefile │ ├── README │ ├── common.cc │ ├── common.hh │ ├── param.cc │ ├── param.hh │ └── targetrdf.cc ├── InterferenceAware │ └── iagm │ │ ├── Makefile │ │ ├── README │ │ ├── iagm │ │ ├── Makefile │ │ ├── inc │ │ │ ├── Curve.h │ │ │ └── Intersection.h │ │ ├── make.inc │ │ └── src │ │ │ ├── Curve.cpp │ │ │ ├── Hash.cpp │ │ │ ├── Hash.h │ │ │ ├── InterferenceVolume.cpp │ │ │ ├── InterferenceVolume.h │ │ │ └── rpoly.h │ │ ├── make.inc │ │ ├── spline2D.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── daniele.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── daniele.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ ├── spline2D.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── src │ │ ├── main.cpp │ │ ├── spline2D.1 │ │ ├── state.cpp │ │ ├── state.h │ │ ├── timer.h │ │ ├── visualizer.cpp │ │ └── visualizer.h ├── artcode │ ├── Readme │ ├── density.pgm │ ├── geometry.h │ ├── optimize.cpp │ ├── post-optimize.cpp │ ├── post-optimized.dat │ ├── progressive.cpp │ ├── self-similar.h │ ├── sequence.cpp │ ├── stipple.cpp │ ├── table.dat │ ├── th.cpp │ ├── utils.h │ └── words.h ├── blueNoise │ ├── __MACOSX │ │ ├── ._bnot-src │ │ └── bnot-src │ │ │ ├── ._.DS_Store │ │ │ ├── ._COPYING │ │ │ ├── ._MANUAL │ │ │ ├── ._bbnot │ │ │ ├── ._ibnot │ │ │ ├── ._pbnot │ │ │ ├── bbnot │ │ │ ├── ._.DS_Store │ │ │ ├── ._CMakeLists.txt │ │ │ ├── ._bbnot.ui │ │ │ ├── ._console_color.h │ │ │ ├── ._convex_polygon.h │ │ │ ├── ._dialog.h │ │ │ ├── ._dialog.ui │ │ │ ├── ._domain.h │ │ │ ├── ._energy.cpp │ │ │ ├── ._glviewer.cpp │ │ │ ├── ._glviewer.h │ │ │ ├── ._histogram.cpp │ │ │ ├── ._init.cpp │ │ │ ├── ._io.cpp │ │ │ ├── ._line_search.h │ │ │ ├── ._main.cpp │ │ │ ├── ._matrix │ │ │ ├── ._optimizer.cpp │ │ │ ├── ._primitives.h │ │ │ ├── ._pw_line_search.h │ │ │ ├── ._ramp.h │ │ │ ├── ._random.h │ │ │ ├── ._regularity.cpp │ │ │ ├── ._render.cpp │ │ │ ├── ._rt2.h │ │ │ ├── ._scene.h │ │ │ ├── ._sites.cpp │ │ │ ├── ._timer.h │ │ │ ├── ._types.h │ │ │ ├── ._util.h │ │ │ ├── ._window.cpp │ │ │ ├── ._window.h │ │ │ └── matrix │ │ │ │ ├── ._sparse_array.cpp │ │ │ │ ├── ._sparse_array.h │ │ │ │ ├── ._sparse_matrix.cpp │ │ │ │ ├── ._sparse_matrix.h │ │ │ │ └── ._suite_sparse_qr.h │ │ │ ├── ibnot │ │ │ ├── ._.DS_Store │ │ │ ├── ._CMakeLists.txt │ │ │ ├── ._assign.cpp │ │ │ ├── ._console_color.h │ │ │ ├── ._convex_polygon.h │ │ │ ├── ._dialog.h │ │ │ ├── ._dialog.ui │ │ │ ├── ._domain.h │ │ │ ├── ._energy.cpp │ │ │ ├── ._enriched_segment.h │ │ │ ├── ._glviewer.cpp │ │ │ ├── ._glviewer.h │ │ │ ├── ._grid.h │ │ │ ├── ._histogram.cpp │ │ │ ├── ._ibnot.ui │ │ │ ├── ._init.cpp │ │ │ ├── ._io.cpp │ │ │ ├── ._line_search.h │ │ │ ├── ._main.cpp │ │ │ ├── ._matrix │ │ │ ├── ._optimizer.cpp │ │ │ ├── ._pgm.h │ │ │ ├── ._pixel.h │ │ │ ├── ._primitives.h │ │ │ ├── ._pw_line_search.h │ │ │ ├── ._ramp.h │ │ │ ├── ._random.h │ │ │ ├── ._regularity.cpp │ │ │ ├── ._render.cpp │ │ │ ├── ._rt2.h │ │ │ ├── ._scene.h │ │ │ ├── ._sites.cpp │ │ │ ├── ._timer.h │ │ │ ├── ._types.h │ │ │ ├── ._util.h │ │ │ ├── ._window.cpp │ │ │ ├── ._window.h │ │ │ └── matrix │ │ │ │ ├── ._sparse_array.cpp │ │ │ │ ├── ._sparse_array.h │ │ │ │ ├── ._sparse_matrix.cpp │ │ │ │ ├── ._sparse_matrix.h │ │ │ │ └── ._suite_sparse_qr.h │ │ │ └── pbnot │ │ │ ├── ._.DS_Store │ │ │ ├── ._CMakeLists.txt │ │ │ ├── ._console_color.h │ │ │ ├── ._dialog.h │ │ │ ├── ._dialog.ui │ │ │ ├── ._domain.h │ │ │ ├── ._energy.cpp │ │ │ ├── ._glviewer.cpp │ │ │ ├── ._glviewer.h │ │ │ ├── ._histogram.cpp │ │ │ ├── ._init.cpp │ │ │ ├── ._io.cpp │ │ │ ├── ._line_search.h │ │ │ ├── ._main.cpp │ │ │ ├── ._matrix │ │ │ ├── ._optimizer.cpp │ │ │ ├── ._pbnot.ui │ │ │ ├── ._primitives.h │ │ │ ├── ._pw_line_search.h │ │ │ ├── ._ramp.h │ │ │ ├── ._random.h │ │ │ ├── ._regularity.cpp │ │ │ ├── ._render.cpp │ │ │ ├── ._rt2.h │ │ │ ├── ._scene.h │ │ │ ├── ._sites.cpp │ │ │ ├── ._timer.h │ │ │ ├── ._types.h │ │ │ ├── ._util.h │ │ │ ├── ._window.cpp │ │ │ ├── ._window.h │ │ │ └── matrix │ │ │ ├── ._.DS_Store │ │ │ ├── ._sparse_array.cpp │ │ │ ├── ._sparse_array.h │ │ │ ├── ._sparse_matrix.cpp │ │ │ ├── ._sparse_matrix.h │ │ │ └── ._suite_sparse_qr.h │ └── bnot-src │ │ ├── .DS_Store │ │ ├── COPYING │ │ ├── MANUAL │ │ ├── bbnot │ │ ├── .DS_Store │ │ ├── CMakeLists.txt │ │ ├── bbnot.ui │ │ ├── console_color.h │ │ ├── convex_polygon.h │ │ ├── dialog.h │ │ ├── dialog.ui │ │ ├── domain.h │ │ ├── energy.cpp │ │ ├── glviewer.cpp │ │ ├── glviewer.h │ │ ├── histogram.cpp │ │ ├── init.cpp │ │ ├── io.cpp │ │ ├── line_search.h │ │ ├── main.cpp │ │ ├── matrix │ │ │ ├── sparse_array.cpp │ │ │ ├── sparse_array.h │ │ │ ├── sparse_matrix.cpp │ │ │ ├── sparse_matrix.h │ │ │ └── suite_sparse_qr.h │ │ ├── optimizer.cpp │ │ ├── primitives.h │ │ ├── pw_line_search.h │ │ ├── ramp.h │ │ ├── random.h │ │ ├── regularity.cpp │ │ ├── render.cpp │ │ ├── rt2.h │ │ ├── scene.h │ │ ├── sites.cpp │ │ ├── timer.h │ │ ├── types.h │ │ ├── util.h │ │ ├── window.cpp │ │ └── window.h │ │ ├── ibnot │ │ ├── .DS_Store │ │ ├── CMakeLists.txt │ │ ├── assign.cpp │ │ ├── console_color.h │ │ ├── convex_polygon.h │ │ ├── dialog.h │ │ ├── dialog.ui │ │ ├── domain.h │ │ ├── energy.cpp │ │ ├── enriched_segment.h │ │ ├── glviewer.cpp │ │ ├── glviewer.h │ │ ├── grid.h │ │ ├── histogram.cpp │ │ ├── ibnot.ui │ │ ├── init.cpp │ │ ├── io.cpp │ │ ├── line_search.h │ │ ├── main.cpp │ │ ├── matrix │ │ │ ├── sparse_array.cpp │ │ │ ├── sparse_array.h │ │ │ ├── sparse_matrix.cpp │ │ │ ├── sparse_matrix.h │ │ │ └── suite_sparse_qr.h │ │ ├── optimizer.cpp │ │ ├── pgm.h │ │ ├── pixel.h │ │ ├── primitives.h │ │ ├── pw_line_search.h │ │ ├── ramp.h │ │ ├── random.h │ │ ├── regularity.cpp │ │ ├── render.cpp │ │ ├── rt2.h │ │ ├── scene.h │ │ ├── sites.cpp │ │ ├── timer.h │ │ ├── types.h │ │ ├── util.h │ │ ├── window.cpp │ │ └── window.h │ │ └── pbnot │ │ ├── .DS_Store │ │ ├── CMakeLists.txt │ │ ├── console_color.h │ │ ├── dialog.h │ │ ├── dialog.ui │ │ ├── domain.h │ │ ├── energy.cpp │ │ ├── glviewer.cpp │ │ ├── glviewer.h │ │ ├── histogram.cpp │ │ ├── init.cpp │ │ ├── io.cpp │ │ ├── line_search.h │ │ ├── main.cpp │ │ ├── matrix │ │ ├── .DS_Store │ │ ├── sparse_array.cpp │ │ ├── sparse_array.h │ │ ├── sparse_matrix.cpp │ │ ├── sparse_matrix.h │ │ └── suite_sparse_qr.h │ │ ├── optimizer.cpp │ │ ├── pbnot.ui │ │ ├── primitives.h │ │ ├── pw_line_search.h │ │ ├── ramp.h │ │ ├── random.h │ │ ├── regularity.cpp │ │ ├── render.cpp │ │ ├── rt2.h │ │ ├── scene.h │ │ ├── sites.cpp │ │ ├── timer.h │ │ ├── types.h │ │ ├── util.h │ │ ├── window.cpp │ │ └── window.h ├── c2spline │ └── c2polar_matlab │ │ ├── README.txt │ │ ├── bsp_mul33.m │ │ ├── c1_polar_spline.m │ │ ├── c2_polar_spline.m │ │ ├── draw_periodic_mesh.m │ │ ├── draw_polar_spline33.m │ │ ├── draw_polar_spline36.m │ │ ├── polar_subdiv.m │ │ ├── test_convex.m │ │ ├── test_monkey.m │ │ └── test_saddle.m ├── days │ ├── FIELD_2D.cpp │ ├── FIELD_2D.h │ ├── FIELD_3D.cpp │ ├── FIELD_3D.h │ ├── MARCHING_CUBES_TRIANGLES.include.huge.streaming.64 │ ├── MARCHING_CUBES_VERTICES.include.streaming │ ├── MATRIX3.cpp │ ├── MATRIX3.h │ ├── Makefile │ ├── Makefile.osx │ ├── NONLINEAR_SLICE_CUDA.cu │ ├── NONLINEAR_SLICE_CUDA.h │ ├── POLYNOMIAL_4D.cpp │ ├── POLYNOMIAL_4D.h │ ├── QUATERNION.cpp │ ├── QUATERNION.h │ ├── README.md │ ├── SETTINGS.h │ ├── SIMPLE_PARSER.cpp │ ├── SIMPLE_PARSER.h │ ├── TIMER.cpp │ ├── TIMER.h │ ├── TRIANGLE.cpp │ ├── TRIANGLE.h │ ├── TRIANGLE_MESH.cpp │ ├── TRIANGLE_MESH.h │ ├── VEC3.h │ ├── __MACOSX │ │ ├── ._FIELD_2D.cpp │ │ ├── ._FIELD_2D.h │ │ ├── ._FIELD_3D.cpp │ │ ├── ._FIELD_3D.h │ │ ├── ._MARCHING_CUBES_TRIANGLES.include.huge.streaming.64 │ │ ├── ._MARCHING_CUBES_VERTICES.include.streaming │ │ ├── ._MATRIX3.cpp │ │ ├── ._MATRIX3.h │ │ ├── ._Makefile │ │ ├── ._Makefile.osx │ │ ├── ._NONLINEAR_SLICE_CUDA.cu │ │ ├── ._NONLINEAR_SLICE_CUDA.h │ │ ├── ._POLYNOMIAL_4D.cpp │ │ ├── ._POLYNOMIAL_4D.h │ │ ├── ._QUATERNION.cpp │ │ ├── ._QUATERNION.h │ │ ├── ._README.md │ │ ├── ._SETTINGS.h │ │ ├── ._SIMPLE_PARSER.cpp │ │ ├── ._SIMPLE_PARSER.h │ │ ├── ._TIMER.cpp │ │ ├── ._TIMER.h │ │ ├── ._TRIANGLE.cpp │ │ ├── ._TRIANGLE.h │ │ ├── ._TRIANGLE_MESH.cpp │ │ ├── ._TRIANGLE_MESH.h │ │ ├── ._VEC3.h │ │ ├── ._data │ │ ├── ._include.mk │ │ ├── ._run │ │ ├── ._run_massive │ │ ├── ._teraBunny.cpp │ │ └── data │ │ │ ├── ._bunny_1000.cfg │ │ │ ├── ._bunny_200.cfg │ │ │ ├── ._bunny_500.cfg │ │ │ ├── ._bunny_5000.o3d.txt │ │ │ └── ._bunny_dense_11500.cfg │ ├── data │ │ ├── bunny_1000.cfg │ │ ├── bunny_200.cfg │ │ ├── bunny_500.cfg │ │ ├── bunny_5000.o3d.txt │ │ └── bunny_dense_11500.cfg │ ├── include.mk │ ├── run │ ├── run_massive │ └── teraBunny.cpp ├── laplacian-editing-2D-MATLAB │ ├── LaplacianEditing2D.m │ ├── T.txt │ ├── sine_circle.txt │ └── unicorn.txt ├── phong │ ├── __MACOSX │ │ ├── ._phongDefoCode │ │ └── phongDefoCode │ │ │ ├── ._djames_phongdefoasset.hdanc │ │ │ ├── ._djames_tetbarycoords.hdanc │ │ │ ├── ._phongDefo_CellDemo.hipnc │ │ │ └── ._readme.txt │ └── phongDefoCode │ │ ├── djames_phongdefoasset.hdanc │ │ ├── djames_tetbarycoords.hdanc │ │ ├── phongDefo_CellDemo.hipnc │ │ └── readme.txt ├── simplification │ ├── COPYING │ ├── README │ ├── __MACOSX │ │ ├── ._README │ │ └── pwsrec2D │ │ │ ├── ._.DS_Store │ │ │ ├── ._CMakeLists.txt │ │ │ ├── ._window.cpp │ │ │ └── ._window.h │ ├── examples │ │ ├── blob00.xy │ │ ├── falcon-silhouette.bmp │ │ └── maple_leaf_embroidery.bmp │ └── pwsrec2D │ │ ├── .DS_Store │ │ ├── CMakeLists.txt │ │ ├── console_color.h │ │ ├── cost.h │ │ ├── dialog_options.h │ │ ├── dpqueue.h │ │ ├── dt2.h │ │ ├── glviewer.cpp │ │ ├── glviewer.h │ │ ├── icons │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ ├── prop-base │ │ │ │ ├── Voronoi_diagram_2.png.svn-base │ │ │ │ ├── fileNew.png.svn-base │ │ │ │ ├── fileOpen.png.svn-base │ │ │ │ ├── fileSave.png.svn-base │ │ │ │ ├── fit-page-32.png.svn-base │ │ │ │ ├── inputPoint.png.svn-base │ │ │ │ ├── snapshot.png.svn-base │ │ │ │ ├── triangulation.png.svn-base │ │ │ │ ├── until.png.svn-base │ │ │ │ └── vertex.png.svn-base │ │ │ └── text-base │ │ │ │ ├── Voronoi_diagram_2.png.svn-base │ │ │ │ ├── fileNew.png.svn-base │ │ │ │ ├── fileOpen.png.svn-base │ │ │ │ ├── fileSave.png.svn-base │ │ │ │ ├── fit-page-32.png.svn-base │ │ │ │ ├── inputPoint.png.svn-base │ │ │ │ ├── snapshot.png.svn-base │ │ │ │ ├── triangulation.png.svn-base │ │ │ │ ├── until.png.svn-base │ │ │ │ └── vertex.png.svn-base │ │ ├── Voronoi_diagram_2.png │ │ ├── fileNew.png │ │ ├── fileOpen.png │ │ ├── fileSave.png │ │ ├── fit-page-32.png │ │ ├── inputPoint.png │ │ ├── snapshot.png │ │ ├── triangulation.png │ │ ├── until.png │ │ └── vertex.png │ │ ├── main.cpp │ │ ├── options.ui │ │ ├── pedge.h │ │ ├── primitives.h │ │ ├── pwsrec.h │ │ ├── pwsrec.qrc │ │ ├── pwsrec.ui │ │ ├── random.h │ │ ├── render.cpp │ │ ├── sample.h │ │ ├── scene.h │ │ ├── third │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ └── CImg.h.svn-base │ │ └── CImg.h │ │ ├── types.h │ │ ├── window.cpp │ │ └── window.h └── surfacePatch │ └── 08poly_www │ ├── COPYRIGHT.txt │ ├── DXUT │ ├── Core │ │ ├── DXUT.cpp │ │ ├── DXUT.h │ │ ├── DXUTCore_2003.sln │ │ ├── DXUTCore_2003.vcproj │ │ ├── DXUTCore_2005.sln │ │ ├── DXUTCore_2005.vcproj │ │ ├── DXUTCore_2005.vcproj.SurfLab2007.amyles.user │ │ ├── DXUTenum.cpp │ │ ├── DXUTenum.h │ │ ├── DXUTmisc.cpp │ │ └── DXUTmisc.h │ └── Optional │ │ ├── DXUTOptional_2003.sln │ │ ├── DXUTOptional_2003.vcproj │ │ ├── DXUTOptional_2005.sln │ │ ├── DXUTOptional_2005.vcproj │ │ ├── DXUTShapes.cpp │ │ ├── DXUTShapes.h │ │ ├── DXUTcamera.cpp │ │ ├── DXUTcamera.h │ │ ├── DXUTgui.cpp │ │ ├── DXUTgui.h │ │ ├── DXUTres.cpp │ │ ├── DXUTres.h │ │ ├── DXUTsettingsdlg.cpp │ │ ├── DXUTsettingsdlg.h │ │ ├── SDKmesh.cpp │ │ ├── SDKmesh.h │ │ ├── SDKmisc.cpp │ │ ├── SDKmisc.h │ │ ├── SDKsound.cpp │ │ ├── SDKsound.h │ │ └── directx.ico │ ├── Debug │ └── ngonsurf.exe │ ├── PolygonMesh.h │ ├── README.txt │ ├── Resource.h │ ├── ShaderRules.rules │ ├── d3dx10_36.dll │ ├── data │ ├── dodecahedron.off │ ├── hand.off │ ├── monkey.off │ ├── monsterfrog │ │ ├── monsterfrog_mapped.off │ │ ├── monsterfrog_mapped_00.off │ │ ├── monsterfrog_mapped_01.off │ │ ├── monsterfrog_mapped_02.off │ │ ├── monsterfrog_mapped_03.off │ │ ├── monsterfrog_mapped_04.off │ │ ├── monsterfrog_mapped_05.off │ │ ├── monsterfrog_mapped_06.off │ │ ├── monsterfrog_mapped_07.off │ │ ├── monsterfrog_mapped_08.off │ │ ├── monsterfrog_mapped_09.off │ │ ├── monsterfrog_mapped_10.off │ │ ├── monsterfrog_mapped_11.off │ │ ├── monsterfrog_mapped_12.off │ │ ├── monsterfrog_mapped_13.off │ │ ├── monsterfrog_mapped_14.off │ │ ├── monsterfrog_mapped_15.off │ │ ├── monsterfrog_mapped_16.off │ │ ├── monsterfrog_mapped_17.off │ │ ├── monsterfrog_mapped_18.off │ │ ├── monsterfrog_mapped_19.off │ │ ├── monsterfrog_mapped_20.off │ │ ├── monsterfrog_mapped_21.off │ │ ├── monsterfrog_mapped_22.off │ │ ├── monsterfrog_mapped_23.off │ │ ├── monsterfrog_mapped_24.off │ │ ├── monsterfrog_mapped_25.off │ │ ├── monsterfrog_mapped_26.off │ │ ├── monsterfrog_mapped_27.off │ │ ├── monsterfrog_mapped_28.off │ │ ├── monsterfrog_mapped_29.off │ │ ├── monsterfrog_mapped_30.off │ │ ├── monsterfrog_mapped_31.off │ │ ├── monsterfrog_mapped_32.off │ │ ├── monsterfrog_mapped_33.off │ │ ├── monsterfrog_mapped_34.off │ │ ├── monsterfrog_mapped_35.off │ │ ├── monsterfrog_mapped_36.off │ │ ├── monsterfrog_mapped_37.off │ │ ├── monsterfrog_mapped_38.off │ │ ├── monsterfrog_mapped_39.off │ │ ├── monsterfrog_mapped_40.off │ │ ├── monsterfrog_mapped_41.off │ │ ├── monsterfrog_mapped_42.off │ │ ├── monsterfrog_mapped_43.off │ │ ├── monsterfrog_mapped_44.off │ │ ├── monsterfrog_mapped_45.off │ │ ├── monsterfrog_mapped_46.off │ │ ├── monsterfrog_mapped_47.off │ │ ├── monsterfrog_mapped_48.off │ │ ├── monsterfrog_mapped_49.off │ │ ├── monsterfrog_mapped_50.off │ │ ├── monsterfrog_mapped_51.off │ │ ├── monsterfrog_mapped_52.off │ │ ├── monsterfrog_mapped_53.off │ │ ├── monsterfrog_mapped_54.off │ │ ├── monsterfrog_mapped_55.off │ │ ├── monsterfrog_mapped_56.off │ │ ├── monsterfrog_mapped_57.off │ │ ├── monsterfrog_mapped_58.off │ │ ├── monsterfrog_mapped_59.off │ │ ├── monsterfrog_mapped_60.off │ │ ├── monsterfrog_mapped_61.off │ │ ├── monsterfrog_mapped_62.off │ │ ├── monsterfrog_mapped_63.off │ │ ├── monsterfrog_mapped_64.off │ │ ├── monsterfrog_mapped_65.off │ │ ├── monsterfrog_mapped_66.off │ │ ├── monsterfrog_mapped_67.off │ │ ├── monsterfrog_mapped_68.off │ │ ├── monsterfrog_mapped_69.off │ │ ├── monsterfrog_mapped_70.off │ │ ├── monsterfrog_mapped_71.off │ │ ├── monsterfrog_mapped_72.off │ │ ├── monsterfrog_mapped_73.off │ │ ├── monsterfrog_mapped_74.off │ │ ├── monsterfrog_mapped_75.off │ │ ├── monsterfrog_mapped_76.off │ │ ├── monsterfrog_mapped_77.off │ │ ├── monsterfrog_mapped_78.off │ │ ├── monsterfrog_mapped_79.off │ │ ├── monsterfrog_mapped_80.off │ │ ├── monsterfrog_mapped_81.off │ │ ├── monsterfrog_mapped_82.off │ │ ├── monsterfrog_mapped_83.off │ │ ├── monsterfrog_mapped_84.off │ │ ├── monsterfrog_mapped_85.off │ │ ├── monsterfrog_mapped_86.off │ │ ├── monsterfrog_mapped_87.off │ │ ├── monsterfrog_mapped_88.off │ │ ├── monsterfrog_mapped_89.off │ │ ├── monsterfrog_mapped_90.off │ │ ├── monsterfrog_mapped_91.off │ │ ├── monsterfrog_mapped_92.off │ │ ├── monsterfrog_mapped_93.off │ │ ├── monsterfrog_mapped_94.off │ │ ├── monsterfrog_mapped_95.off │ │ ├── monsterfrog_mapped_96.off │ │ ├── monsterfrog_mapped_97.off │ │ ├── monsterfrog_mapped_98.off │ │ └── monsterfrog_mapped_99.off │ ├── torus.off │ └── triple_torus.off │ ├── defs.h │ ├── defs_app.h │ ├── defs_polymesh.h │ ├── demo_frog.bat │ ├── demo_hand.bat │ ├── demo_monkey.bat │ ├── demos.bat │ ├── event_handlers.h │ ├── initialize.h │ ├── main.cpp │ ├── ngonsurf.sln │ ├── ngonsurf.vcproj │ ├── point2.h │ ├── point3.h │ ├── render.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── surface.fx │ └── util.h ├── Image └── ImageMelding_V1.0.zip ├── LightShadow ├── VirtualSphericalLights │ └── 新建文本文档.txt └── photonbeam │ ├── HG.m │ ├── License.txt │ ├── MonteCarlo_0.1.mat │ ├── PBD_profile.m │ ├── QC1x2.m │ ├── QC2x3.m │ ├── classical_dipole.m │ ├── equiangular_sampling.m │ ├── equiangular_sampling_pdfeval.m │ ├── exponential_sampling.m │ ├── exponential_sampling_pdfeval.m │ ├── fresneltrans.m │ ├── improved_dipole.m │ ├── lerp.m │ ├── linearstep.m │ ├── output.pdf │ ├── plot_BSSRDFs.m │ └── single_scattering_profile.m ├── LinearSystem ├── MatrixDecomposition │ └── LUdecompositionPivot.py ├── NumericalRecipes │ ├── ludecomp.py │ ├── power1dominantEigenValue.py │ └── svd.py ├── Spectral │ ├── NotesCodes4Project.pdf │ └── WorkableCodes │ │ ├── Collocation2ndBVP.m │ │ ├── legslb.m │ │ ├── legslbdiff.m │ │ ├── lepoly.m │ │ └── lepolym.m ├── autodiff │ ├── __MACOSX │ │ ├── ._autoDiffExample_TimLanglois2015 │ │ └── autoDiffExample_TimLanglois2015 │ │ │ ├── ._code │ │ │ ├── ._writeup │ │ │ ├── code │ │ │ ├── ._Makefile │ │ │ ├── ._ceres │ │ │ ├── ._main.cpp │ │ │ └── ceres │ │ │ │ ├── ._fpclassify.h │ │ │ │ └── ._jet.h │ │ │ └── writeup │ │ │ ├── ._makefile │ │ │ ├── ._mls.pdf │ │ │ └── ._mls.tex │ ├── autoDiffExample_TimLanglois2015 │ │ ├── code │ │ │ ├── Makefile │ │ │ ├── ceres │ │ │ │ ├── fpclassify.h │ │ │ │ └── jet.h │ │ │ └── main.cpp │ │ └── writeup │ │ │ ├── makefile │ │ │ ├── mls.pdf │ │ │ └── mls.tex │ └── mls.pdf ├── derivate │ ├── code │ │ ├── SConstruct │ │ ├── example-a.cpp │ │ ├── example-b-step-1.cpp │ │ ├── example-b-step-2.cpp │ │ ├── example-b-step-3.cpp │ │ ├── example-b-step-4.cpp │ │ ├── example-b-step-5.cpp │ │ ├── example-b-step-6.cpp │ │ ├── example-b-step-7.cpp │ │ ├── example-b-step-8.cpp │ │ ├── example-b.cpp │ │ ├── example-b2-step-1.cpp │ │ ├── example-b2-step-2.cpp │ │ ├── example-b2-step-3.cpp │ │ ├── example-b2-step-4.cpp │ │ ├── example-b2-step-5.cpp │ │ ├── example-b2-step-6.cpp │ │ ├── example-b2-step-7.cpp │ │ ├── example-b2.cpp │ │ ├── example-c-step-1.cpp │ │ ├── example-c-step-10.cpp │ │ ├── example-c-step-11.cpp │ │ ├── example-c-step-2.cpp │ │ ├── example-c-step-3.cpp │ │ ├── example-c-step-4.cpp │ │ ├── example-c-step-5.cpp │ │ ├── example-c-step-6.cpp │ │ ├── example-c-step-7.cpp │ │ ├── example-c-step-8.cpp │ │ ├── example-c-step-9.cpp │ │ ├── example-c.cpp │ │ ├── example-eig-dd.cpp │ │ ├── example-eig-uu.cpp │ │ ├── example-svd-dd.cpp │ │ ├── example-svd-uu.cpp │ │ ├── example-svd-uv.cpp │ │ ├── example-svd-vv.cpp │ │ ├── example-tests.cpp │ │ ├── example.cpp │ │ ├── la.h │ │ ├── svd-test.h │ │ ├── symbolic_tensor.cpp │ │ ├── symbolic_tensor.h │ │ ├── symbolic_test.h │ │ ├── testbed-a-step-1.cpp │ │ ├── testbed-a-step-10.cpp │ │ ├── testbed-a-step-2.cpp │ │ ├── testbed-a-step-3.cpp │ │ ├── testbed-a-step-4.cpp │ │ ├── testbed-a-step-5.cpp │ │ ├── testbed-a-step-6.cpp │ │ ├── testbed-a-step-7.cpp │ │ ├── testbed-a-step-8.cpp │ │ ├── testbed-a-step-9.cpp │ │ ├── testbed-a.cpp │ │ ├── testbed-b-step-1.cpp │ │ ├── testbed-b-step-10.cpp │ │ ├── testbed-b-step-2.cpp │ │ ├── testbed-b-step-3.cpp │ │ ├── testbed-b-step-4.cpp │ │ ├── testbed-b-step-5.cpp │ │ ├── testbed-b-step-6.cpp │ │ ├── testbed-b-step-7.cpp │ │ ├── testbed-b-step-8.cpp │ │ ├── testbed-b-step-9.cpp │ │ ├── testbed-b.cpp │ │ ├── testbed-c-step-1.cpp │ │ ├── testbed-c-step-10.cpp │ │ ├── testbed-c-step-11.cpp │ │ ├── testbed-c-step-12.cpp │ │ ├── testbed-c-step-13.cpp │ │ ├── testbed-c-step-14.cpp │ │ ├── testbed-c-step-15.cpp │ │ ├── testbed-c-step-16.cpp │ │ ├── testbed-c-step-17.cpp │ │ ├── testbed-c-step-18.cpp │ │ ├── testbed-c-step-19.cpp │ │ ├── testbed-c-step-2.cpp │ │ ├── testbed-c-step-3.cpp │ │ ├── testbed-c-step-4.cpp │ │ ├── testbed-c-step-5.cpp │ │ ├── testbed-c-step-6.cpp │ │ ├── testbed-c-step-7.cpp │ │ ├── testbed-c-step-8.cpp │ │ ├── testbed-c-step-9.cpp │ │ └── testbed-c.cpp │ └── paper (3).pdf ├── floatingPoint │ └── Singular_Value_Decomposition │ │ ├── Makefile │ │ ├── POINTER_QUEUE.h │ │ ├── PTHREAD_QUEUE.cpp │ │ ├── PTHREAD_QUEUE.h │ │ ├── README │ │ ├── Singular_Value_Decomposition_Givens_QR_Factorization_Kernel.hpp │ │ ├── Singular_Value_Decomposition_Helper.cpp │ │ ├── Singular_Value_Decomposition_Helper.h │ │ ├── Singular_Value_Decomposition_Jacobi_Conjugation_Kernel.hpp │ │ ├── Singular_Value_Decomposition_Kernel_Declarations.hpp │ │ ├── Singular_Value_Decomposition_Main_Kernel_Body.hpp │ │ ├── Singular_Value_Decomposition_Preamble.hpp │ │ ├── Singular_Value_Decomposition_Streaming_Test.cpp │ │ └── Singular_Value_Decomposition_Unit_Test.cpp ├── multipcg │ ├── bridsongreif-2005-multipcg.pdf │ └── multipcg.m └── parallelMultigrid │ └── MGPCG-1.0 │ ├── COPYRIGHT.txt │ ├── Projects │ └── multigrid_poisson_for_pcg │ │ ├── BOX_ITERATOR.h │ │ ├── MG_PRECONDITIONED_CONJUGATE_GRADIENT.h │ │ ├── MULTIGRID_POISSON.cpp │ │ ├── MULTIGRID_POISSON.h │ │ ├── MULTIGRID_POISSON_REFINEMENT.cpp │ │ ├── MULTIGRID_POISSON_REFINEMENT.h │ │ ├── MULTIGRID_POISSON_SOLVER.h │ │ ├── MULTIGRID_POISSON_TESTS.h │ │ ├── Makefile │ │ ├── SConscript │ │ └── main.cpp │ ├── Public_Library │ ├── Advection_Equations │ │ └── ADVECTION_FORWARD.h │ ├── Arrays │ │ ├── ARRAY.h │ │ ├── ARRAYS_1D.h │ │ ├── ARRAYS_2D.h │ │ ├── ARRAYS_3D.h │ │ ├── ARRAYS_FORWARD.h │ │ ├── ARRAYS_ND_BASE.h │ │ ├── ARRAY_BASE.h │ │ ├── ARRAY_DIFFERENCE.h │ │ ├── ARRAY_EXPRESSION.h │ │ ├── ARRAY_LEFT_MULTIPLE.h │ │ ├── ARRAY_NEGATION.h │ │ ├── ARRAY_PLUS_SCALAR.h │ │ ├── ARRAY_PRODUCT.h │ │ ├── ARRAY_SUM.h │ │ ├── IDENTITY_MAP.h │ │ ├── LIST_ARRAY.h │ │ ├── PROJECTED_ARRAY.h │ │ └── RAW_ARRAY.h │ ├── Boundaries │ │ └── BOUNDARY_FORWARD.h │ ├── Collisions_And_Interactions │ │ └── COLLISIONS_FORWARD.h │ ├── Data_Structures │ │ ├── DATA_STRUCTURES_FORWARD.h │ │ ├── ELEMENT_ID.h │ │ └── HASHTABLE.h │ ├── Documentation │ │ └── PHYSBAM_COPYRIGHT.txt │ ├── Geometry │ │ ├── BOX.h │ │ ├── GEOMETRY_FORWARD.h │ │ └── GEOMETRY_POLICY.h │ ├── Grids │ │ ├── GRID_0D.h │ │ ├── GRID_1D.cpp │ │ ├── GRID_1D.h │ │ ├── GRID_2D.cpp │ │ ├── GRID_2D.h │ │ ├── GRID_3D.cpp │ │ ├── GRID_3D.h │ │ ├── GRID_POLICY.h │ │ └── POLICY_UNIFORM.h │ ├── Interpolation │ │ └── INTERPOLATION_FORWARD.h │ ├── Math_Tools │ │ ├── Hash.h │ │ ├── Inverse.h │ │ ├── ZERO.h │ │ ├── argmax.h │ │ ├── argmin.h │ │ ├── clamp.h │ │ ├── constants.h │ │ ├── exchange.h │ │ ├── exchange_sort.h │ │ ├── integer_log.h │ │ ├── max.h │ │ ├── maxabs.h │ │ ├── maxmag.h │ │ ├── min.h │ │ ├── minmag.h │ │ ├── sign.h │ │ ├── sqr.h │ │ └── wrap.h │ ├── Matrices_And_Vectors │ │ ├── ARITHMETIC_POLICY.h │ │ ├── Dot_Product.h │ │ ├── MATRIX_FORWARD.h │ │ ├── Magnitude.h │ │ ├── SCALAR_POLICY.h │ │ ├── VECTOR.h │ │ ├── VECTOR_0D.h │ │ ├── VECTOR_1D.h │ │ ├── VECTOR_2D.h │ │ ├── VECTOR_3D.h │ │ ├── VECTOR_BASE.h │ │ ├── VECTOR_EXPRESSION.h │ │ ├── VECTOR_FORWARD.h │ │ └── VECTOR_POLICY.h │ ├── Particles │ │ └── PARTICLES_FORWARD.h │ ├── Poisson_MGPCG_optimized_kernels │ │ ├── Block_Counting_Helper.cpp │ │ ├── Block_Counting_Helper.h │ │ ├── Block_Enumeration_Helper.cpp │ │ ├── Block_Enumeration_Helper.h │ │ ├── Boundary_Initialization_Helper.cpp │ │ ├── Boundary_Initialization_Helper.h │ │ ├── Coarsened_Discretization_Helper.cpp │ │ ├── Coarsened_Discretization_Helper.h │ │ ├── Combined_Saxpy_Helper.cpp │ │ ├── Combined_Saxpy_Helper.h │ │ ├── Initialize_Interior_Bitmaps_And_Diagonal_Entries_Helper.cpp │ │ ├── Initialize_Interior_Bitmaps_And_Diagonal_Entries_Helper.h │ │ ├── Instantiation_Helpers.h │ │ ├── Multiplication_And_Dot_Product_Helper.cpp │ │ ├── Multiplication_And_Dot_Product_Helper.h │ │ ├── Multiply_And_Compute_Sum_And_Extrema_Helper.cpp │ │ ├── Multiply_And_Compute_Sum_And_Extrema_Helper.h │ │ ├── POINTER_QUEUE.h │ │ ├── PTHREAD_QUEUE.cpp │ │ ├── PTHREAD_QUEUE.h │ │ ├── Prolongation_Helper.cpp │ │ ├── Prolongation_Helper.h │ │ ├── Reduce_Maxabs_Helper.cpp │ │ ├── Reduce_Maxabs_Helper.h │ │ ├── Relaxation_And_Dot_Product_Interior_Helper.cpp │ │ ├── Relaxation_And_Dot_Product_Interior_Helper.h │ │ ├── Relaxation_And_Residual_With_Zero_Initial_Guess_Helper.cpp │ │ ├── Relaxation_And_Residual_With_Zero_Initial_Guess_Helper.h │ │ ├── Relaxation_Boundary_Helper.cpp │ │ ├── Relaxation_Boundary_Helper.h │ │ ├── Relaxation_Interior_Helper.cpp │ │ ├── Relaxation_Interior_Helper.h │ │ ├── Residual_Boundary_Helper.cpp │ │ ├── Residual_Boundary_Helper.h │ │ ├── Restriction_Helper.cpp │ │ ├── Restriction_Helper.h │ │ ├── Saxpy_Helper.cpp │ │ ├── Saxpy_Helper.h │ │ ├── Scalar_Multiply_And_Accumulate_And_Compute_Sum_And_Extrema_Helper.cpp │ │ └── Scalar_Multiply_And_Accumulate_And_Compute_Sum_And_Extrema_Helper.h │ ├── Random_Numbers │ │ └── RANDOM_NUMBERS.h │ ├── Read_Write │ │ ├── FILE_UTILITIES.cpp │ │ ├── FILE_UTILITIES.h │ │ ├── READ_WRITE.h │ │ ├── READ_WRITE_FORWARD.h │ │ ├── READ_WRITE_FUNCTIONS.h │ │ └── TYPED_STREAM.h │ ├── SConscript │ └── Utilities │ │ ├── ARG_DATA.h │ │ ├── DEBUG_UTILITIES.cpp │ │ ├── DEBUG_UTILITIES.h │ │ ├── EXCEPTIONS.cpp │ │ ├── EXCEPTIONS.h │ │ ├── INTERRUPTS.cpp │ │ ├── INTERRUPTS.h │ │ ├── LOG.cpp │ │ ├── LOG.h │ │ ├── LOG_ENTRY.cpp │ │ ├── LOG_ENTRY.h │ │ ├── LOG_SCOPE.h │ │ ├── NONCOPYABLE.h │ │ ├── PARSE_ARGS.cpp │ │ ├── PARSE_ARGS.h │ │ ├── PROCESS_UTILITIES.cpp │ │ ├── PROCESS_UTILITIES.h │ │ ├── STATIC_ASSERT.h │ │ ├── STRING_UTILITIES.cpp │ │ ├── STRING_UTILITIES.h │ │ ├── TIMER.cpp │ │ ├── TIMER.h │ │ ├── TYPE_UTILITIES.h │ │ └── override.h │ ├── README │ └── Scripts │ └── scons │ ├── README │ ├── SConstruct │ ├── SConstruct.options │ ├── setup_scons.py │ └── wrapper_template ├── Math └── Eigen │ └── jacobiSVD.py ├── MeshGeneration └── mesh2d │ ├── centroid_mesh.m │ ├── checkgeometry.m │ ├── circumcircle.m │ ├── connectivity.m │ ├── dist2poly.m │ ├── findedge.m │ ├── fixmesh.m │ ├── inpoly.m │ ├── mesh2d.m │ ├── mesh2d_to_xml.m │ ├── meshfaces.m │ ├── meshpoly.m │ ├── mydelaunayn.m │ ├── mytsearch.m │ ├── quadtree.m │ ├── quality.m │ ├── read.txt │ ├── refine.m │ ├── smoothmesh.m │ ├── tinterp.m │ ├── triarea.m │ └── tsearch_mex.c ├── MultiGrid └── amglab │ ├── ACMeasure.m │ ├── AMGLab.m │ ├── AMGLab_GUI.fig │ ├── AMGLab_GUI.m │ ├── AMGeCoarsen.m │ ├── AMGmCoarsen.m │ ├── AccumulateMatrix.m │ ├── Dirichlet_Correction.m │ ├── GetEdgeElements_Schur.m │ ├── IQMeasure.m │ ├── NodeNeighbors.m │ ├── NodeNeighborsEdges.m │ ├── NodeNeighbourAMGe.m │ ├── README.txt │ ├── README_UF.txt │ ├── RugeStuebenCoarsen.m │ ├── SOR_smoother.m │ ├── SmoothAggregateCoarsen.m │ ├── Synopsis.txt │ ├── UFget.m │ ├── UFget_defaults.m │ ├── UFget_example.m │ ├── UFget_lookup.m │ ├── UFgrep.m │ ├── UFweb.m │ ├── amg_cycle.m │ ├── amg_defaults.m │ ├── amg_example1.m │ ├── amg_globals.m │ ├── amg_setup.m │ ├── amg_solve.m │ ├── amg_usersetFD.m │ ├── amg_usersetFEM.m │ ├── amg_usersetMAT.m │ ├── amg_usersetUF.m │ ├── anisox_81.txt │ ├── beck_coarsen.m │ ├── coarse_solve.m │ ├── descendSort.m │ ├── e32_isb.txt │ ├── gauss_elim.m │ ├── get_settings.m │ ├── interpolate.m │ ├── jacobi_smoother.m │ ├── residual.m │ ├── restrict.m │ ├── richardson_smoother.m │ ├── settingsGUI.fig │ ├── settingsGUI.m │ ├── smooth.m │ ├── spectral_radius.m │ ├── strong.m │ └── strongT.m ├── Physics ├── ManyWorlds │ ├── libtwigg │ │ ├── EulerAngles.c │ │ ├── LICENSE.txt │ │ ├── LICENSE.txt~ │ │ ├── Makefile │ │ ├── TRAFile.cpp │ │ ├── blockmat.cpp │ │ ├── boundingbox.cpp │ │ ├── camera.cpp │ │ ├── exception.cpp │ │ ├── fastTableLookup.cpp │ │ ├── gslWrappers.cpp │ │ ├── imagelib.cpp │ │ ├── interpolation.cpp │ │ ├── ioutil.cpp │ │ ├── keyable.cpp │ │ ├── libtwigg.sln │ │ ├── libtwigg.vcproj │ │ ├── linalg.cpp │ │ ├── nagWrappers.cpp │ │ ├── objfile.cpp │ │ ├── pathUtils.cpp │ │ ├── primitive.cpp │ │ ├── prt.cpp │ │ ├── random.cpp │ │ ├── renderUtils.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── testCoverTree.cpp │ │ ├── tr.c │ │ ├── twigg │ │ │ ├── EulerAngles.h │ │ │ ├── QuatTypes.h │ │ │ ├── TRAFile.h │ │ │ ├── aabbtree.h │ │ │ ├── blockmat.h │ │ │ ├── boundingbox.h │ │ │ ├── camera.h │ │ │ ├── cover_tree.h │ │ │ ├── exception.h │ │ │ ├── fastTableLookup.h │ │ │ ├── gslWrappers.h │ │ │ ├── imagelib.h │ │ │ ├── interpolation.h │ │ │ ├── ioutil.h │ │ │ ├── keyable.h │ │ │ ├── linalg.h │ │ │ ├── magicWrappers.h │ │ │ ├── nagWrappers.h │ │ │ ├── objfile.h │ │ │ ├── pathUtils.h │ │ │ ├── primitive.h │ │ │ ├── prt.h │ │ │ ├── random.h │ │ │ ├── renderutils.h │ │ │ ├── screenSpace.h │ │ │ ├── stlext.h │ │ │ ├── tr.h │ │ │ ├── util.h │ │ │ ├── vlutil.h │ │ │ └── volumeIntegrals.h │ │ ├── util.cpp │ │ └── volumeIntegrals.cpp │ └── mwb │ │ ├── GLView.cpp │ │ ├── GLView.h │ │ ├── LICENSE.txt │ │ ├── OBB.cpp │ │ ├── OBB.h │ │ ├── Resource.h │ │ ├── TimeView.cpp │ │ ├── TimeView.h │ │ ├── action.cpp │ │ ├── action.h │ │ ├── barbicUtils.cpp │ │ ├── barbicUtils.h │ │ ├── bestScoresView.cpp │ │ ├── bestScoresView.h │ │ ├── bulletWrappers.cpp │ │ ├── bulletWrappers.h │ │ ├── checkerboard.h │ │ ├── compress.h │ │ ├── compression.cpp │ │ ├── compression.h │ │ ├── constraints.cpp │ │ ├── constraints.h │ │ ├── distanceField.cpp │ │ ├── distanceField.h │ │ ├── hierarchyView.cpp │ │ ├── hierarchyView.h │ │ ├── mechModel.cpp │ │ ├── mechModel.h │ │ ├── meshes │ │ ├── ballJointLeft.mtl │ │ ├── ballJointLeft.obj │ │ ├── ballJointRight.mtl │ │ ├── ballJointRight.obj │ │ ├── gen.sh │ │ ├── hingeJointLeft.mtl │ │ ├── hingeJointLeft.obj │ │ ├── hingeJointRight.mtl │ │ ├── hingeJointRight.obj │ │ ├── meshes.h │ │ ├── planeConstraint.mb │ │ ├── planeJoint.mtl │ │ ├── planeJoint.obj │ │ ├── univJointLeft.mtl │ │ ├── univJointLeft.obj │ │ ├── univJointRight.mtl │ │ └── univJointRight.obj │ │ ├── mwSample.cpp │ │ ├── mwSample.h │ │ ├── newtonWrappers.cpp │ │ ├── novodexWrappers.cpp │ │ ├── novodexWrappers.h │ │ ├── odeWrappers.cpp │ │ ├── odeWrappers.h │ │ ├── parser.cpp │ │ ├── parser.h │ │ ├── pathTree.cpp │ │ ├── physicsFwd.h │ │ ├── physicsObject.cpp │ │ ├── physicsObject.h │ │ ├── planning.cpp │ │ ├── planning.h │ │ ├── planning.ico │ │ ├── planning.sln │ │ ├── planning.vcproj │ │ ├── planningUI.cpp │ │ ├── planningUI.h │ │ ├── quat.h │ │ ├── renderLines.cpp │ │ ├── renderLines.h │ │ ├── ribFile.cpp │ │ ├── ribFile.h │ │ ├── sampleServer.cpp │ │ ├── scene.cpp │ │ ├── scene.h │ │ ├── simulationTree.cpp │ │ ├── simulationTree.h │ │ ├── small.ico │ │ ├── sound.cpp │ │ ├── sound.h │ │ ├── spatial_tree.cpp │ │ ├── spatial_tree.h │ │ ├── sphere_tree.cpp │ │ ├── sphere_tree.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── testQuat.cpp │ │ ├── threads.cpp │ │ ├── threads.h │ │ ├── voxels.cpp │ │ ├── voxels.h │ │ └── walkTreeHandler.h ├── NumericalConservation │ └── MATLAB Software CS18 │ │ ├── .DS_Store │ │ ├── BurgersC1D.m │ │ ├── BurgersC2D.m │ │ ├── BurgersCDriver1D.m │ │ ├── BurgersCDriver2D.m │ │ ├── BurgersCrhs1D.m │ │ ├── BurgersCrhs2D.m │ │ ├── BurgersDG1D.m │ │ ├── BurgersDGDriver1D.m │ │ ├── BurgersDGrhs1D.m │ │ ├── BurgersENO1D.m │ │ ├── BurgersENODriver1D.m │ │ ├── BurgersENOrhs1D.m │ │ ├── BurgersFL1D.m │ │ ├── BurgersFL2D.m │ │ ├── BurgersFLDriver1D.m │ │ ├── BurgersFLDriver2D.m │ │ ├── BurgersFLrhs1D.m │ │ ├── BurgersFLrhs2D.m │ │ ├── BurgersFlux.m │ │ ├── BurgersFlux2Dx.m │ │ ├── BurgersFlux2Dy.m │ │ ├── BurgersJac.m │ │ ├── BurgersJac2Dx.m │ │ ├── BurgersJac2Dy.m │ │ ├── BurgersLF.m │ │ ├── BurgersLW.m │ │ ├── BurgersM1D.m │ │ ├── BurgersM2D.m │ │ ├── BurgersMDriver1D.m │ │ ├── BurgersMDriver2D.m │ │ ├── BurgersMrhs1D.m │ │ ├── BurgersMrhs2D.m │ │ ├── BurgersRoe.m │ │ ├── BurgersSL1D.m │ │ ├── BurgersSL2D.m │ │ ├── BurgersSLDriver1D.m │ │ ├── BurgersSLDriver2D.m │ │ ├── BurgersSLrhs1D.m │ │ ├── BurgersSLrhs2D.m │ │ ├── BurgersSpec1D.m │ │ ├── BurgersSpecDriver1D.m │ │ ├── BurgersSpecrhs1D.m │ │ ├── BurgersWENO1D.m │ │ ├── BurgersWENO2D.m │ │ ├── BurgersWENODriver1D.m │ │ ├── BurgersWENODriver2D.m │ │ ├── BurgersWENOrhs1D.m │ │ ├── BurgersWENOrhs2D.m │ │ ├── CavityExact.m │ │ ├── CavityExactLong.m │ │ ├── Chebeps.m │ │ ├── Chebtau2p.m │ │ ├── DmatrixDG.m │ │ ├── ENO.m │ │ ├── Entvisc.m │ │ ├── EulerC1D.m │ │ ├── EulerC2D.m │ │ ├── EulerCDriver1D.m │ │ ├── EulerCDriver2D.m │ │ ├── EulerChar.m │ │ ├── EulerCrhs1D.m │ │ ├── EulerCrhs2D.m │ │ ├── EulerDG1D.m │ │ ├── EulerDGDriver1D.m │ │ ├── EulerDGrhs1D.m │ │ ├── EulerENO1D.m │ │ ├── EulerENODriver1D.m │ │ ├── EulerENOrhs1D.m │ │ ├── EulerFL1D.m │ │ ├── EulerFLDriver1D.m │ │ ├── EulerFLcharrhs1D.m │ │ ├── EulerFLrhs1D.m │ │ ├── EulerFlux.m │ │ ├── EulerFlux2Dx.m │ │ ├── EulerFlux2Dy.m │ │ ├── EulerHLL.m │ │ ├── EulerHLL2Dx.m │ │ ├── EulerHLL2Dy.m │ │ ├── EulerHLLC.m │ │ ├── EulerJac.m │ │ ├── EulerJac2Dx.m │ │ ├── EulerJac2Dy.m │ │ ├── EulerLF.m │ │ ├── EulerLF2Dx.m │ │ ├── EulerLF2Dy.m │ │ ├── EulerLLF.m │ │ ├── EulerLW.m │ │ ├── EulerM1D.m │ │ ├── EulerM2D.m │ │ ├── EulerMDriver1D.m │ │ ├── EulerMDriver2D.m │ │ ├── EulerMrhs1D.m │ │ ├── EulerMrhs2D.m │ │ ├── EulerQtoRDG.m │ │ ├── EulerRoe.m │ │ ├── EulerRtoQDG.m │ │ ├── EulerSL1D.m │ │ ├── EulerSL2D.m │ │ ├── EulerSLDriver1D.m │ │ ├── EulerSLDriver2D.m │ │ ├── EulerSLcharrhs1D.m │ │ ├── EulerSLrhs1D.m │ │ ├── EulerSLrhs2D.m │ │ ├── EulerSpec1D.m │ │ ├── EulerSpecDriver1D.m │ │ ├── EulerSpecrhs1D.m │ │ ├── EulerWENO1D.m │ │ ├── EulerWENO2D.m │ │ ├── EulerWENODriver1D.m │ │ ├── EulerWENODriver2D.m │ │ ├── EulerWENOcharrhs1D.m │ │ ├── EulerWENOrhs1D.m │ │ ├── EulerWENOrhs2D.m │ │ ├── FilterDG.m │ │ ├── FilterFD.m │ │ ├── FluxLimit.m │ │ ├── FourierD.m │ │ ├── FourierF.m │ │ ├── FourierPade.m │ │ ├── FourierVanishHypVisc.m │ │ ├── Fourierdx.m │ │ ├── GegenbauerGQ.m │ │ ├── GegenbauerP.m │ │ ├── GegenbauerPade.m │ │ ├── GegenbauerRecon.m │ │ ├── GradLegendreP.m │ │ ├── GradVandermondeDG.m │ │ ├── HeatDGrhs1D.m │ │ ├── HeatFlux.m │ │ ├── IsentropicVortex2D.m │ │ ├── KPPC2D.m │ │ ├── KPPCDriver2D.m │ │ ├── KPPCrhs2D.m │ │ ├── KPPFlux2Dx.m │ │ ├── KPPFlux2Dy.m │ │ ├── KPPJac2Dx.m │ │ ├── KPPJac2Dy.m │ │ ├── KPPM2D.m │ │ ├── KPPMDriver2D.m │ │ ├── KPPMrhs2D.m │ │ ├── KPPWENO2D.m │ │ ├── KPPWENODriver2D.m │ │ ├── KPPWENOrhs2D.m │ │ ├── KPPxLF.m │ │ ├── KPPyLF.m │ │ ├── LegendreGL.m │ │ ├── LegendreGQ.m │ │ ├── LegendreP.m │ │ ├── LinearWeights.m │ │ ├── LinwaveC1D.m │ │ ├── LinwaveCDriver1D.m │ │ ├── LinwaveCrhs1D.m │ │ ├── LinwaveDG1D.m │ │ ├── LinwaveDGDriver1D.m │ │ ├── LinwaveDGrhs1D.m │ │ ├── LinwaveFL1D.m │ │ ├── LinwaveFLDriver1D.m │ │ ├── LinwaveFLrhs1D.m │ │ ├── LinwaveLF.m │ │ ├── LinwaveLW.m │ │ ├── LinwaveM1D.m │ │ ├── LinwaveMDriver1D.m │ │ ├── LinwaveMrhs1D.m │ │ ├── LinwaveSL1D.m │ │ ├── LinwaveSLDriver1D.m │ │ ├── LinwaveSLrhs1D.m │ │ ├── MaxwellDG1D.m │ │ ├── MaxwellDGDriver1D.m │ │ ├── MaxwellDGrhs1D.m │ │ ├── MaxwellENO1D.m │ │ ├── MaxwellENODriver1D.m │ │ ├── MaxwellENOrhs1D.m │ │ ├── MaxwellLF.m │ │ ├── MaxwellLW.m │ │ ├── MaxwellM1D.m │ │ ├── MaxwellMDriver1D.m │ │ ├── MaxwellMrhs1D.m │ │ ├── MaxwellSpec1D.m │ │ ├── MaxwellSpecDriver1D.m │ │ ├── MaxwellSpecrhs1D.m │ │ ├── MaxwellUpwind.m │ │ ├── MaxwellWENO1D.m │ │ ├── MaxwellWENODriver1D.m │ │ ├── MaxwellWENOrhs1D.m │ │ ├── MomentLimitDG.m │ │ ├── Nonvisc1.m │ │ ├── Nonvisc2.m │ │ ├── Qcalc.m │ │ ├── ReconstructWeights.m │ │ ├── Riemann2D.m │ │ ├── SingularFourierPade.m │ │ ├── SlopeLimit.m │ │ ├── SlopeLimitBSBDG.m │ │ ├── SlopeLimitCSDG.m │ │ ├── VandermondeDG.m │ │ ├── WENO.m │ │ ├── WENODGWeights.m │ │ ├── WENOlimitDG.m │ │ ├── betarcalc.m │ │ ├── ddnewton.m │ │ ├── extend.m │ │ ├── extendDG.m │ │ ├── extendstag.m │ │ ├── extprelimitDG.m │ │ ├── lagrangeweights.m │ │ ├── maxmod.m │ │ ├── minmod.m │ │ ├── minmodTVB.m │ │ └── wavetest.m └── PhysicsBasedAnimation │ ├── code │ ├── .DS_Store │ ├── array3D.h │ ├── explicitfem.cpp │ ├── explicitfem.h │ ├── fluid.cpp │ ├── fluid.h │ ├── implicitfem.cpp │ ├── implicitfem.h │ ├── inputs │ │ ├── cubeandspheres.mesh │ │ ├── explicitfem.json │ │ ├── fem.mesh │ │ ├── fluid.json │ │ ├── implicitfem.json │ │ ├── input.mesh │ │ ├── input.rb │ │ ├── input.sm │ │ ├── particles.in │ │ ├── rb.json │ │ └── springmass.json │ ├── json │ │ ├── json-forwards.h │ │ └── json.h │ ├── jsoncpp.cpp │ ├── makefile │ ├── partviewer.cpp │ ├── rigidbody.cpp │ ├── rigidbody.h │ ├── springmass.cpp │ └── springmass.h │ ├── explicitFem.py │ └── implicitFem.py ├── Plastic └── localRemeshing │ └── Stellar-1.1.tgz ├── README.md ├── Siggraph └── HighlyAdaptive │ └── code │ ├── .DS_Store │ ├── ReadMe.txt │ ├── femflip2 │ ├── .DS_Store │ ├── Makefile │ └── src │ │ ├── .DS_Store │ │ ├── adaptive2.cpp │ │ ├── adaptive2.h │ │ ├── ann │ │ ├── ANN.cpp │ │ ├── ANN.h │ │ ├── ANNperf.h │ │ ├── ANNx.h │ │ ├── bd_fix_rad_search.cpp │ │ ├── bd_pr_search.cpp │ │ ├── bd_search.cpp │ │ ├── bd_tree.cpp │ │ ├── bd_tree.h │ │ ├── brute.cpp │ │ ├── kd_dump.cpp │ │ ├── kd_fix_rad_search.cpp │ │ ├── kd_fix_rad_search.h │ │ ├── kd_pr_search.cpp │ │ ├── kd_pr_search.h │ │ ├── kd_search.cpp │ │ ├── kd_search.h │ │ ├── kd_split.cpp │ │ ├── kd_split.h │ │ ├── kd_tree.cpp │ │ ├── kd_tree.h │ │ ├── kd_util.cpp │ │ ├── kd_util.h │ │ ├── perf.cpp │ │ ├── pr_queue.h │ │ └── pr_queue_k.h │ │ ├── ann2.h │ │ ├── annsorter2.cpp │ │ ├── annsorter2.h │ │ ├── array2.h │ │ ├── bcc2.cpp │ │ ├── bcc2.h │ │ ├── bccmesher2.cpp │ │ ├── bccmesher2.h │ │ ├── bccsurf2.cpp │ │ ├── bccsurf2.h │ │ ├── camera2.cpp │ │ ├── camera2.h │ │ ├── cellsurf2.cpp │ │ ├── cellsurf2.h │ │ ├── corrector2.cpp │ │ ├── corrector2.h │ │ ├── email.cpp │ │ ├── email.h │ │ ├── extsurf2.cpp │ │ ├── extsurf2.h │ │ ├── fastmarch2.cpp │ │ ├── fastmarch2.h │ │ ├── femfluid2.cpp │ │ ├── femfluid2.h │ │ ├── flip2.cpp │ │ ├── flip2.h │ │ ├── fluid2.h │ │ ├── fvmfluid2.cpp │ │ ├── fvmfluid2.h │ │ ├── glhelpviewer.cpp │ │ ├── glhelpviewer.h │ │ ├── glut.h │ │ ├── glviewer.cpp │ │ ├── glviewer.h │ │ ├── kernel.h │ │ ├── levelset2.cpp │ │ ├── levelset2.h │ │ ├── macfluid2.cpp │ │ ├── macfluid2.h │ │ ├── macros.h │ │ ├── main.cpp │ │ ├── mesher2.cpp │ │ ├── mesher2.h │ │ ├── meshsurf2.cpp │ │ ├── meshsurf2.h │ │ ├── octfluid2.cpp │ │ ├── octfluid2.h │ │ ├── octgrid2.h │ │ ├── octhash2.h │ │ ├── octlevelset2.h │ │ ├── octree2.cpp │ │ ├── octree2.h │ │ ├── opengl.h │ │ ├── pann2.h │ │ ├── particle2.cpp │ │ ├── particle2.h │ │ ├── pcgsolver │ │ ├── blas_wrapper.h │ │ ├── matutil.h │ │ ├── pcg_solver.h │ │ ├── sparse_matrix.h │ │ └── util.h │ │ ├── sizefunc2.h │ │ ├── sorter2.h │ │ ├── surf2.cpp │ │ ├── surf2.h │ │ ├── svd2.h │ │ ├── testcase.h │ │ ├── umesher2.cpp │ │ ├── umesher2.h │ │ ├── util2.h │ │ ├── vec2.h │ │ ├── write_bmp.cpp │ │ └── write_bmp.h │ └── femflip3 │ ├── .DS_Store │ ├── Makefile │ └── src │ ├── .DS_Store │ ├── adaptive3.cpp │ ├── adaptive3.h │ ├── ann │ ├── ANN.cpp │ ├── ANN.h │ ├── ANNperf.h │ ├── ANNx.h │ ├── bd_fix_rad_search.cpp │ ├── bd_pr_search.cpp │ ├── bd_search.cpp │ ├── bd_tree.cpp │ ├── bd_tree.h │ ├── brute.cpp │ ├── kd_dump.cpp │ ├── kd_fix_rad_search.cpp │ ├── kd_fix_rad_search.h │ ├── kd_pr_search.cpp │ ├── kd_pr_search.h │ ├── kd_search.cpp │ ├── kd_search.h │ ├── kd_split.cpp │ ├── kd_split.h │ ├── kd_tree.cpp │ ├── kd_tree.h │ ├── kd_util.cpp │ ├── kd_util.h │ ├── perf.cpp │ ├── pr_queue.h │ └── pr_queue_k.h │ ├── ann3.h │ ├── annsorter3.cpp │ ├── annsorter3.h │ ├── array3.h │ ├── bcc3.cpp │ ├── bcc3.h │ ├── bccmesher3.cpp │ ├── bccmesher3.h │ ├── bccsurf3.cpp │ ├── bccsurf3.h │ ├── camera3.cpp │ ├── camera3.h │ ├── cellsurf3.cpp │ ├── cellsurf3.h │ ├── corrector3.cpp │ ├── corrector3.h │ ├── email.cpp │ ├── email.h │ ├── exporter3.cpp │ ├── exporter3.h │ ├── extsurf3.cpp │ ├── extsurf3.h │ ├── fastmarch3.cpp │ ├── fastmarch3.h │ ├── femfluid3.cpp │ ├── femfluid3.h │ ├── flip3.cpp │ ├── flip3.h │ ├── fluid3.h │ ├── flycamera3.h │ ├── fvmfluid3.cpp │ ├── fvmfluid3.h │ ├── glviewer.cpp │ ├── glviewer.h │ ├── kernel.h │ ├── levelset3.cpp │ ├── levelset3.h │ ├── livemem.h │ ├── macfluid3.cpp │ ├── macfluid3.h │ ├── macros.h │ ├── main.cpp │ ├── mesher3.cpp │ ├── mesher3.h │ ├── meshsurf3.cpp │ ├── meshsurf3.h │ ├── mitsuba │ ├── envmap_particle.exr │ ├── envmap_wire.exr │ ├── fancy.xml │ ├── fix_f.sh │ ├── fix_o.sh │ ├── fix_p.sh │ ├── fix_view.sh │ ├── fix_w.sh │ ├── opaque.xml │ ├── particles.xml │ ├── render_f.sh │ ├── render_o.sh │ ├── render_p.sh │ ├── render_top.sh │ ├── render_view.sh │ ├── render_w.sh │ ├── transparent.serialized │ ├── transparent.xml │ └── wireframe.xml │ ├── mkmovie.sh │ ├── object3.h │ ├── octfluid3.cpp │ ├── octfluid3.h │ ├── octgrid3.h │ ├── octhash3.h │ ├── octlevelset3.h │ ├── octree3.cpp │ ├── octree3.h │ ├── opengl.h │ ├── pann3.h │ ├── particle3.cpp │ ├── particle3.h │ ├── pbrt │ ├── attributes.pbrt │ ├── env.pbrt │ ├── fix.sh │ ├── material.pbrt │ ├── render.sh │ └── template.pbrt │ ├── pcgsolver │ ├── blas_wrapper.h │ ├── matutil.h │ ├── pcg_solver.h │ ├── sparse_matrix.h │ └── util.h │ ├── rchandra │ ├── BinVoxReader.cpp │ ├── BinVoxReader.h │ ├── CIsoSurface.cpp │ ├── CIsoSurface.h │ ├── Vectors.cpp │ ├── Vectors.h │ ├── glm.cpp │ └── glm.h │ ├── rply │ ├── rply.c │ └── rply.h │ ├── sizefunc3.h │ ├── sorter3.h │ ├── surf3.cpp │ ├── surf3.h │ ├── svd3.cpp │ ├── svd3.h │ ├── testcase.h │ ├── tetgen │ ├── LICENSE │ ├── README │ ├── example.poly │ ├── makefile │ ├── predicates.cxx │ ├── tetgen.cxx │ └── tetgen.h │ ├── util3.cpp │ ├── util3.h │ ├── vec3.h │ ├── write_bmp.cpp │ └── write_bmp.h ├── SkinSkeletonBone └── NeoHookeanFlesh │ ├── Cube.py │ ├── CubeSolver.py │ ├── __pycache__ │ ├── Cube.cpython-37.pyc │ └── CubeSolver.cpython-37.pyc │ ├── neo.py │ ├── snh_code │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ ├── cmake │ │ └── FindEigen3.cmake │ ├── cubesim │ │ ├── CGInterface.cpp │ │ ├── CGInterface.h │ │ ├── CGSolverType.h │ │ ├── CMakeLists.txt │ │ ├── Cube.cpp │ │ ├── Cube.h │ │ ├── CubeMesh.cpp │ │ ├── CubeMesh.h │ │ ├── CubeNewtonSolver.cpp │ │ ├── CubeNewtonSolver.h │ │ ├── EigenCG.cpp │ │ ├── EigenCG.h │ │ ├── InitialMesh.h │ │ ├── LineSearches.h │ │ ├── LocalHessianLocation.h │ │ ├── Material.cpp │ │ ├── Material.h │ │ ├── QuasistaticSolveResult.cpp │ │ ├── QuasistaticSolveResult.h │ │ ├── Settings.h │ │ ├── StableNeoHookean.cpp │ │ ├── StableNeoHookean.h │ │ ├── TetMesh.cpp │ │ ├── TetMesh.h │ │ └── TetNewtonSolver.h │ ├── download_eigen.sh │ ├── eigen_found.sh │ ├── hexcli │ │ ├── CMakeLists.txt │ │ └── hexcli.cpp │ └── tetcli │ │ ├── CMakeLists.txt │ │ └── tetcli.cpp │ └── sur.py ├── Sound └── PrecomputedTransfer │ ├── fastPAT.cpp │ ├── matrixIO.cpp │ ├── matrixIO.h │ ├── performanceCounter.cpp │ └── performanceCounter.h ├── Volumetric ├── DiffusionSurfaces_src.zip └── volfill │ └── volfill │ ├── ActiveGrid.cc │ ├── ActiveGrid.h │ ├── ChunkAllocator.cc │ ├── ChunkAllocator.h │ ├── ChunkLink.cc │ ├── ChunkLink.h │ ├── Linear.h │ ├── Makefile │ ├── Matrix2f.cc │ ├── Matrix2f.h │ ├── Matrix3f.cc │ ├── Matrix3f.h │ ├── Matrix4f.cc │ ├── Matrix4f.h │ ├── OccGrid.cc │ ├── OccGrid.h │ ├── OccGridRLE.cc │ ├── OccGridRLE.h │ ├── Quaternion.cc │ ├── Quaternion.h │ ├── README │ ├── Vec3f.cc │ ├── Vec3f.h │ ├── defines.h │ ├── fb.cc │ ├── fb.h │ ├── main.cc │ ├── util.cc │ ├── util.h │ ├── volfill │ └── vrip.h ├── WaterFlowFluid ├── FEMFluid │ ├── FemFluid.pdf │ ├── advectMacCormack.m │ ├── advectSemiLagrange.m │ ├── advectionCore.m │ ├── applyForces.m │ ├── calcDivergence.m │ ├── calcFrame.m │ ├── calcGradient.m │ ├── cellsToNodes.m │ ├── distanceFieldToFluidNodes.m │ ├── enforceBoundaryCondition.m │ ├── fluidNodesToDistanceField.m │ ├── getFluidCells.m │ ├── getInterfaceNodes.m │ ├── jacobi.m │ ├── loadScenario.m │ ├── main.m │ ├── mainUnitTest.m │ ├── reinitDistances.m │ ├── runSimulation.m │ ├── saveImage.m │ ├── saveVideo.m │ ├── setAirVelocity.m │ ├── solvePressure.m │ └── subtractPressureGradient.m ├── FSWW-master │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README │ ├── Textures │ │ ├── harbour.png │ │ ├── island.png │ │ ├── line_hd.png │ │ └── test.png │ ├── build │ │ ├── configure-builds │ │ ├── external │ │ │ ├── .gitignore │ │ │ ├── README.org │ │ │ ├── bin │ │ │ │ └── configure-build │ │ │ └── etc │ │ │ │ ├── cget │ │ │ │ └── recipes │ │ │ │ │ ├── corrade.v2018.02 │ │ │ │ │ └── package.txt │ │ │ │ │ ├── corrade │ │ │ │ │ └── package.txt │ │ │ │ │ ├── hana.v1.4.0 │ │ │ │ │ └── package.txt │ │ │ │ │ ├── imgui.v1.53 │ │ │ │ │ ├── build.cmake │ │ │ │ │ └── package.txt │ │ │ │ │ ├── imgui.v1.60 │ │ │ │ │ ├── build.cmake │ │ │ │ │ └── package.txt │ │ │ │ │ ├── magnum-imgui.v0.1 │ │ │ │ │ ├── package.txt │ │ │ │ │ └── requirements.txt │ │ │ │ │ ├── magnum-imgui.v0.3 │ │ │ │ │ ├── package.txt │ │ │ │ │ └── requirements.txt │ │ │ │ │ ├── magnum-imgui │ │ │ │ │ ├── package.txt │ │ │ │ │ └── requirements.txt │ │ │ │ │ ├── magnum.v2018.02 │ │ │ │ │ ├── package.txt │ │ │ │ │ └── requirements.txt │ │ │ │ │ ├── magnum │ │ │ │ │ ├── package.txt │ │ │ │ │ └── requirements.txt │ │ │ │ │ └── rtags.v2.18 │ │ │ │ │ └── package.txt │ │ │ │ └── toolchains │ │ │ │ ├── generic │ │ │ │ ├── Emscripten-wasm.cmake │ │ │ │ └── Emscripten.cmake │ │ │ │ └── modules │ │ │ │ ├── Platform │ │ │ │ └── Emscripten.cmake │ │ │ │ └── UseEmscripten.cmake │ │ └── install-dependencies │ ├── conf │ │ ├── circle_interactive.conf │ │ ├── circle_static.conf │ │ ├── test_interactive.conf │ │ ├── test_interactive_neumann.conf │ │ ├── test_static.conf │ │ └── texture_static.conf │ ├── imgui.ini │ ├── modules │ │ ├── FindCorrade.cmake │ │ ├── FindEGL.cmake │ │ ├── FindEigen.cmake │ │ ├── FindMagnum.cmake │ │ ├── FindOpenGLES2.cmake │ │ ├── FindOpenGLES3.cmake │ │ └── FindSDL2.cmake │ ├── read.txt │ └── src │ │ ├── CMakeLists.txt │ │ ├── CircularObstacle.cpp │ │ ├── CircularObstacle.hpp │ │ ├── CudaWaterSurface.cu │ │ ├── CudaWaterSurface.hpp │ │ ├── DataFile.cpp │ │ ├── DataFile.hpp │ │ ├── DrawingPrimitives.cpp │ │ ├── DrawingPrimitives.hpp │ │ ├── EquivalentSource.cpp │ │ ├── EquivalentSource.hpp │ │ ├── ExceptionSimu.hpp │ │ ├── Grid.cpp │ │ ├── Grid.hpp │ │ ├── InputPoint.cpp │ │ ├── InputPoint.hpp │ │ ├── LinearWave.cpp │ │ ├── LinearWave.hpp │ │ ├── MovingEquivalentSource.cpp │ │ ├── MovingEquivalentSource.hpp │ │ ├── Obstacle.cpp │ │ ├── Obstacle.hpp │ │ ├── ProjectedGrid.cpp │ │ ├── ProjectedGrid.hpp │ │ ├── SquareObstacle.cpp │ │ ├── SquareObstacle.hpp │ │ ├── TextureObstacle.cpp │ │ ├── TextureObstacle.hpp │ │ ├── Times.cpp │ │ ├── Times.hpp │ │ ├── Viewer.cpp │ │ ├── Viewer.hpp │ │ ├── WaterSurface.cpp │ │ ├── WaterSurface.hpp │ │ ├── Wave.cpp │ │ ├── Wave.hpp │ │ ├── WavyObstacle.cpp │ │ ├── WavyObstacle.hpp │ │ ├── definitions.cpp │ │ ├── definitions.hpp │ │ ├── error.cpp │ │ ├── error.hpp │ │ ├── main.cpp │ │ ├── settings.cpp │ │ ├── settings.hpp │ │ ├── ui_parameters.cpp │ │ └── ui_parameters.hpp ├── LaplacianEigen │ ├── SourceCodes │ │ ├── LE.class │ │ ├── LE.java │ │ ├── SparseMatrix.class │ │ ├── SparseMatrix.java │ │ ├── WebContainer.class │ │ ├── WebContainer.java │ │ ├── index.htm │ │ └── index.htm~ │ └── java.py ├── Synthetic │ └── turb │ │ ├── .svn │ │ ├── all-wcprops │ │ ├── entries │ │ ├── prop-base │ │ │ ├── compile_check.sh.svn-base │ │ │ ├── makebu.sh.svn-base │ │ │ └── update_lastgood_parser.sh.svn-base │ │ └── text-base │ │ │ ├── CMakeLists.txt.svn-base │ │ │ ├── ChangeLog.svn-base │ │ │ ├── compile_check.sh.svn-base │ │ │ ├── config.h.cmake.svn-base │ │ │ ├── makebu.sh.svn-base │ │ │ ├── testCmakeCalls.txt.svn-base │ │ │ └── update_lastgood_parser.sh.svn-base │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README.txt │ │ ├── render.sh │ │ ├── render │ │ ├── dyn_scene.pbrt │ │ └── sta_scene.pbrt │ │ ├── scene │ │ └── anim.txt │ │ ├── source │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ ├── prop-base │ │ │ │ └── vortexplugins.cpp.svn-base │ │ │ └── text-base │ │ │ │ ├── advectionplugins.cpp.svn-base │ │ │ │ ├── animplugins.cpp.svn-base │ │ │ │ ├── asciiFileReader.cpp.svn-base │ │ │ │ ├── asciiFileReader.h.svn-base │ │ │ │ ├── clusterTracking.cpp.svn-base │ │ │ │ ├── clusterTracking.h.svn-base │ │ │ │ ├── conjugategrad.cpp.svn-base │ │ │ │ ├── conjugategrad.h.svn-base │ │ │ │ ├── convert.cpp.svn-base │ │ │ │ ├── convert.h.svn-base │ │ │ │ ├── fastiterativeeikonal.cpp.svn-base │ │ │ │ ├── fastiterativeeikonal.h.svn-base │ │ │ │ ├── fastmarch.h.svn-base │ │ │ │ ├── fastsweepingeikonal.cpp.svn-base │ │ │ │ ├── fastsweepingeikonal.h.svn-base │ │ │ │ ├── fileio.cpp.svn-base │ │ │ │ ├── fluidMatchingPlugins.cpp.svn-base │ │ │ │ ├── fluidsolver.cpp.svn-base │ │ │ │ ├── fluidsolver.h.svn-base │ │ │ │ ├── freesurfaceplugins.cpp.svn-base │ │ │ │ ├── glutgui.cpp.svn-base │ │ │ │ ├── grid.h.svn-base │ │ │ │ ├── gridOpPlugins.cpp.svn-base │ │ │ │ ├── guihelpers.cpp.svn-base │ │ │ │ ├── initplugins.cpp.svn-base │ │ │ │ ├── levelset.cpp.svn-base │ │ │ │ ├── levelset.h.svn-base │ │ │ │ ├── main.cpp.svn-base │ │ │ │ ├── main_noparser.cpp.svn-base │ │ │ │ ├── obstacle2Dplugins.cpp.svn-base │ │ │ │ ├── operators.h.svn-base │ │ │ │ ├── particles.h.svn-base │ │ │ │ ├── patches.cpp.svn-base │ │ │ │ ├── patches.h.svn-base │ │ │ │ ├── pointsurface.cpp.svn-base │ │ │ │ ├── pointsurface.h.svn-base │ │ │ │ ├── poissonsolvers.cpp.svn-base │ │ │ │ ├── reynoldsplugins.cpp.svn-base │ │ │ │ ├── smokeplugins.cpp.svn-base │ │ │ │ ├── solverinit.cpp.svn-base │ │ │ │ ├── solverinit.h.svn-base │ │ │ │ ├── solverparams.cpp.svn-base │ │ │ │ ├── solverparams.h.svn-base │ │ │ │ ├── solverplugin.h.svn-base │ │ │ │ ├── stdplugins.cpp.svn-base │ │ │ │ ├── testplugins.cpp.svn-base │ │ │ │ ├── viscoelasplugins.cpp.svn-base │ │ │ │ ├── volumetricFluidMipMap.cpp.svn-base │ │ │ │ ├── volumetricFluidMipMap.h.svn-base │ │ │ │ ├── vortexpart.cpp.svn-base │ │ │ │ ├── vortexpart.h.svn-base │ │ │ │ ├── vortexplugins.cpp.svn-base │ │ │ │ └── wlturbplugins.cpp.svn-base │ │ ├── advectionplugins.cpp │ │ ├── animplugins.cpp │ │ ├── conjugategrad.cpp │ │ ├── conjugategrad.h │ │ ├── fileio.cpp │ │ ├── fluidsolver.cpp │ │ ├── fluidsolver.h │ │ ├── glutgui.cpp │ │ ├── grid.h │ │ ├── guihelpers.cpp │ │ ├── initplugins.cpp │ │ ├── main.cpp │ │ ├── operators.h │ │ ├── poissonsolvers.cpp │ │ ├── smokeplugins.cpp │ │ ├── solverinit.cpp │ │ ├── solverinit.h │ │ ├── solverparams.cpp │ │ ├── solverparams.h │ │ ├── solverplugin.h │ │ ├── stdplugins.cpp │ │ ├── vortexpart.cpp │ │ ├── vortexpart.h │ │ └── vortexplugins.cpp │ │ └── util │ │ ├── .svn │ │ ├── all-wcprops │ │ ├── entries │ │ ├── prop-base │ │ │ ├── GLFontData.h.svn-base │ │ │ ├── GLFontRenderer.cpp.svn-base │ │ │ └── GLFontRenderer.h.svn-base │ │ └── text-base │ │ │ ├── GLFontData.h.svn-base │ │ │ ├── GLFontRenderer.cpp.svn-base │ │ │ ├── GLFontRenderer.h.svn-base │ │ │ ├── arrays.h.svn-base │ │ │ ├── boundbox.h.svn-base │ │ │ ├── geomfile.cpp.svn-base │ │ │ ├── geomfile.h.svn-base │ │ │ ├── globals.cpp.svn-base │ │ │ ├── globals.h.svn-base │ │ │ ├── imageio.cpp.svn-base │ │ │ ├── imageio.h.svn-base │ │ │ ├── isosurface.cpp.svn-base │ │ │ ├── isosurface.h.svn-base │ │ │ ├── lic.cpp.svn-base │ │ │ ├── lic.h.svn-base │ │ │ ├── matrixbase.h.svn-base │ │ │ ├── mcubes_tables.h.svn-base │ │ │ ├── md5.cc.svn-base │ │ │ ├── md5.hh.svn-base │ │ │ ├── opengl_includes.h.svn-base │ │ │ ├── paramset.cpp.svn-base │ │ │ ├── paramset.h.svn-base │ │ │ ├── parser.cpp.svn-base │ │ │ ├── parser.h.svn-base │ │ │ ├── pbrtlex.l.svn-base │ │ │ ├── pbrtparse.y.svn-base │ │ │ ├── quaternion.h.svn-base │ │ │ ├── quicklist.h.svn-base │ │ │ ├── randomlib.cpp.svn-base │ │ │ ├── randomlib.h.svn-base │ │ │ ├── randomstream.h.svn-base │ │ │ ├── vectorbase.h.svn-base │ │ │ └── waveletnoise.h.svn-base │ │ ├── boundbox.h │ │ ├── globals.cpp │ │ ├── globals.h │ │ ├── matrixbase.h │ │ ├── paramset.cpp │ │ ├── paramset.h │ │ ├── quaternion.h │ │ ├── randomstream.h │ │ ├── vectorbase.h │ │ └── waveletnoise.h ├── UnInclude │ └── tbb │ │ ├── fun.py │ │ └── note.md ├── clebsch │ └── code (7).zip ├── close │ ├── .vs │ │ ├── VSWorkspaceState.json │ │ ├── close │ │ │ └── v16 │ │ │ │ ├── .suo │ │ │ │ └── Browse.VC.db │ │ └── slnx.sqlite │ ├── CPT │ │ ├── .DS_Store │ │ ├── Makefile │ │ ├── Makefile.ubuntu │ │ ├── SETTINGS.h │ │ ├── data │ │ │ ├── .DS_Store │ │ │ └── houdini_input │ │ │ │ └── paddle_example.hipnc │ │ ├── iWaveHoudini.cpp │ │ ├── iWavePhysBAM.cpp │ │ ├── render │ │ │ ├── .DS_Store │ │ │ ├── pbrt_modifications │ │ │ │ ├── FIELD_3D.cpp │ │ │ │ ├── FIELD_3D.h │ │ │ │ ├── README.txt │ │ │ │ ├── VEC3.h │ │ │ │ ├── api.cpp │ │ │ │ ├── api.h │ │ │ │ ├── field.cpp │ │ │ │ └── field.h │ │ │ ├── pbrt_scenes │ │ │ │ ├── PhysBAM.pbrt │ │ │ │ ├── PhysBAM_scene_geometry.pbrt │ │ │ │ ├── env.exr │ │ │ │ ├── houdini.pbrt │ │ │ │ ├── houdini_scene_geometry.pbrt │ │ │ │ └── skylight-sunset.exr │ │ │ ├── render_PhysBAM.pl │ │ │ └── render_houdini.pl │ │ └── src │ │ │ ├── .DS_Store │ │ │ ├── BOX.cpp │ │ │ ├── BOX.h │ │ │ ├── FIELD_2D.cpp │ │ │ ├── FIELD_2D.h │ │ │ ├── FIELD_3D.cpp │ │ │ ├── FIELD_3D.h │ │ │ ├── IWAVE_3D.cpp │ │ │ ├── IWAVE_3D.h │ │ │ ├── MATRIX3.cpp │ │ │ ├── MATRIX3.h │ │ │ ├── SURFACE.h │ │ │ ├── TIMER.cpp │ │ │ ├── TIMER.h │ │ │ ├── TRIANGLE.cpp │ │ │ ├── TRIANGLE.h │ │ │ ├── TRIANGLE_MESH.cpp │ │ │ ├── TRIANGLE_MESH.h │ │ │ ├── VEC3.h │ │ │ ├── VECTOR3_FIELD_3D.cpp │ │ │ ├── VECTOR3_FIELD_3D.h │ │ │ └── glvu │ │ │ ├── camera.h │ │ │ ├── glvu.cpp │ │ │ ├── glvu.h │ │ │ ├── glvuMat16fv.h │ │ │ ├── glvuVec3f.h │ │ │ ├── glvuVec3fv.h │ │ │ ├── snapshot.h │ │ │ ├── text.h │ │ │ └── trackball.h │ └── CPT_source.tar.gz ├── curlNoise │ ├── bluenoise.h │ ├── curlnoise.h │ ├── example_2dfancy.cpp │ ├── example_2dfancy.h │ ├── example_2dmouse.cpp │ ├── example_2dmouse.h │ ├── example_2dwake.cpp │ ├── example_2dwake.h │ ├── example_3dplume.cpp │ ├── example_3dplume.h │ ├── gluvi.cpp │ ├── gluvi.h │ ├── interp.h │ ├── main2.cpp │ ├── main3.cpp │ ├── noise.cpp │ ├── noise.h │ ├── rigidshape2.h │ ├── util.h │ └── vec.h ├── eigenFluid │ ├── DCT.py │ ├── MIC.py │ ├── SourceCodes │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── __MACOSX │ │ │ ├── ._CMakeLists.txt │ │ │ ├── ._README.md │ │ │ ├── ._applications │ │ │ ├── ._cmake │ │ │ ├── ._compile.sh │ │ │ ├── ._density_source │ │ │ ├── ._fluid2D.cfg │ │ │ ├── ._fluid3D.perl │ │ │ ├── ._fluid3D_DCT.perl │ │ │ ├── ._fluid3D_stam3D.perl │ │ │ ├── ._fluid_3D_paddle.cfg │ │ │ ├── ._fluid_moving_sphere.cfg │ │ │ ├── ._fluid_two_phase_pulse.cfg │ │ │ ├── ._libraries │ │ │ ├── ._obstacles │ │ │ ├── ._precompute_2Dtensor.pl │ │ │ ├── ._precompute_3Dtensor.pl │ │ │ ├── ._run_fluid2D.perl │ │ │ ├── ._run_stam.perl │ │ │ ├── ._scripts │ │ │ ├── ._src │ │ │ ├── ._stam.flags │ │ │ ├── ._ted_cfgs │ │ │ ├── applications │ │ │ │ ├── ._CMakeLists.txt │ │ │ │ ├── ._drop_tensor_entries.cpp │ │ │ │ ├── ._fluidStam3D.cpp │ │ │ │ ├── ._fluid_DCT_sim3D.cpp │ │ │ │ ├── ._laplacian_fluid_sim2D.cpp │ │ │ │ ├── ._laplacian_fluid_sim3D.cpp │ │ │ │ ├── ._precompute_2D_tensor.cpp │ │ │ │ └── ._precompute_3D_tensor.cpp │ │ │ ├── cmake │ │ │ │ ├── ._FindEigen.cmake │ │ │ │ ├── ._FindFFTW.cmake │ │ │ │ ├── ._FindGflags.cmake │ │ │ │ └── ._FindGlog.cmake │ │ │ ├── density_source │ │ │ │ ├── ._jetcollide.txt │ │ │ │ ├── ._single_phase_source.txt │ │ │ │ ├── ._six_plume_source_pos.txt │ │ │ │ └── ._two_phase_source.txt │ │ │ ├── libraries │ │ │ │ ├── ._CMakeLists.txt │ │ │ │ ├── ._Eigen │ │ │ │ ├── ._glvu │ │ │ │ ├── ._stlplus3 │ │ │ │ ├── Eigen │ │ │ │ │ ├── ._Array │ │ │ │ │ ├── ._Cholesky │ │ │ │ │ ├── ._CholmodSupport │ │ │ │ │ ├── ._Core │ │ │ │ │ ├── ._Dense │ │ │ │ │ ├── ._Eigen │ │ │ │ │ ├── ._Eigen2Support │ │ │ │ │ ├── ._Eigenvalues │ │ │ │ │ ├── ._Geometry │ │ │ │ │ ├── ._Householder │ │ │ │ │ ├── ._IterativeLinearSolvers │ │ │ │ │ ├── ._Jacobi │ │ │ │ │ ├── ._LU │ │ │ │ │ ├── ._LeastSquares │ │ │ │ │ ├── ._MetisSupport │ │ │ │ │ ├── ._OrderingMethods │ │ │ │ │ ├── ._PaStiXSupport │ │ │ │ │ ├── ._PardisoSupport │ │ │ │ │ ├── ._QR │ │ │ │ │ ├── ._QtAlignedMalloc │ │ │ │ │ ├── ._SPQRSupport │ │ │ │ │ ├── ._SVD │ │ │ │ │ ├── ._Sparse │ │ │ │ │ ├── ._SparseCholesky │ │ │ │ │ ├── ._SparseCore │ │ │ │ │ ├── ._SparseLU │ │ │ │ │ ├── ._SparseQR │ │ │ │ │ ├── ._StdDeque │ │ │ │ │ ├── ._StdList │ │ │ │ │ ├── ._StdVector │ │ │ │ │ ├── ._SuperLUSupport │ │ │ │ │ ├── ._UmfPackSupport │ │ │ │ │ ├── ._src │ │ │ │ │ └── src │ │ │ │ │ │ ├── ._Cholesky │ │ │ │ │ │ ├── ._CholmodSupport │ │ │ │ │ │ ├── ._Core │ │ │ │ │ │ ├── ._Eigen2Support │ │ │ │ │ │ ├── ._Eigenvalues │ │ │ │ │ │ ├── ._Geometry │ │ │ │ │ │ ├── ._Householder │ │ │ │ │ │ ├── ._IterativeLinearSolvers │ │ │ │ │ │ ├── ._Jacobi │ │ │ │ │ │ ├── ._LU │ │ │ │ │ │ ├── ._MetisSupport │ │ │ │ │ │ ├── ._OrderingMethods │ │ │ │ │ │ ├── ._PaStiXSupport │ │ │ │ │ │ ├── ._PardisoSupport │ │ │ │ │ │ ├── ._QR │ │ │ │ │ │ ├── ._SPQRSupport │ │ │ │ │ │ ├── ._SVD │ │ │ │ │ │ ├── ._SparseCholesky │ │ │ │ │ │ ├── ._SparseCore │ │ │ │ │ │ ├── ._SparseLU │ │ │ │ │ │ ├── ._SparseQR │ │ │ │ │ │ ├── ._StlSupport │ │ │ │ │ │ ├── ._SuperLUSupport │ │ │ │ │ │ ├── ._UmfPackSupport │ │ │ │ │ │ ├── ._misc │ │ │ │ │ │ ├── ._plugins │ │ │ │ │ │ ├── Cholesky │ │ │ │ │ │ ├── ._LDLT.h │ │ │ │ │ │ ├── ._LLT.h │ │ │ │ │ │ ├── ._LLT_LAPACKE.h │ │ │ │ │ │ └── ._LLT_MKL.h │ │ │ │ │ │ ├── CholmodSupport │ │ │ │ │ │ └── ._CholmodSupport.h │ │ │ │ │ │ ├── Core │ │ │ │ │ │ ├── ._Array.h │ │ │ │ │ │ ├── ._ArrayBase.h │ │ │ │ │ │ ├── ._ArrayWrapper.h │ │ │ │ │ │ ├── ._Assign.h │ │ │ │ │ │ ├── ._AssignEvaluator.h │ │ │ │ │ │ ├── ._Assign_MKL.h │ │ │ │ │ │ ├── ._BandMatrix.h │ │ │ │ │ │ ├── ._Block.h │ │ │ │ │ │ ├── ._BooleanRedux.h │ │ │ │ │ │ ├── ._CommaInitializer.h │ │ │ │ │ │ ├── ._ConditionEstimator.h │ │ │ │ │ │ ├── ._CoreEvaluators.h │ │ │ │ │ │ ├── ._CoreIterators.h │ │ │ │ │ │ ├── ._CwiseBinaryOp.h │ │ │ │ │ │ ├── ._CwiseNullaryOp.h │ │ │ │ │ │ ├── ._CwiseTernaryOp.h │ │ │ │ │ │ ├── ._CwiseUnaryOp.h │ │ │ │ │ │ ├── ._CwiseUnaryView.h │ │ │ │ │ │ ├── ._DenseBase.h │ │ │ │ │ │ ├── ._DenseCoeffsBase.h │ │ │ │ │ │ ├── ._DenseStorage.h │ │ │ │ │ │ ├── ._Diagonal.h │ │ │ │ │ │ ├── ._DiagonalMatrix.h │ │ │ │ │ │ ├── ._DiagonalProduct.h │ │ │ │ │ │ ├── ._Dot.h │ │ │ │ │ │ ├── ._EigenBase.h │ │ │ │ │ │ ├── ._Flagged.h │ │ │ │ │ │ ├── ._ForceAlignedAccess.h │ │ │ │ │ │ ├── ._Functors.h │ │ │ │ │ │ ├── ._Fuzzy.h │ │ │ │ │ │ ├── ._GeneralProduct.h │ │ │ │ │ │ ├── ._GenericPacketMath.h │ │ │ │ │ │ ├── ._GlobalFunctions.h │ │ │ │ │ │ ├── ._IO.h │ │ │ │ │ │ ├── ._Inverse.h │ │ │ │ │ │ ├── ._Map.h │ │ │ │ │ │ ├── ._MapBase.h │ │ │ │ │ │ ├── ._MathFunctions.h │ │ │ │ │ │ ├── ._MathFunctionsImpl.h │ │ │ │ │ │ ├── ._Matrix.h │ │ │ │ │ │ ├── ._MatrixBase.h │ │ │ │ │ │ ├── ._NestByValue.h │ │ │ │ │ │ ├── ._NoAlias.h │ │ │ │ │ │ ├── ._NumTraits.h │ │ │ │ │ │ ├── ._PermutationMatrix.h │ │ │ │ │ │ ├── ._PlainObjectBase.h │ │ │ │ │ │ ├── ._Product.h │ │ │ │ │ │ ├── ._ProductBase.h │ │ │ │ │ │ ├── ._ProductEvaluators.h │ │ │ │ │ │ ├── ._Random.h │ │ │ │ │ │ ├── ._Redux.h │ │ │ │ │ │ ├── ._Ref.h │ │ │ │ │ │ ├── ._Replicate.h │ │ │ │ │ │ ├── ._ReturnByValue.h │ │ │ │ │ │ ├── ._Reverse.h │ │ │ │ │ │ ├── ._Select.h │ │ │ │ │ │ ├── ._SelfAdjointView.h │ │ │ │ │ │ ├── ._SelfCwiseBinaryOp.h │ │ │ │ │ │ ├── ._Solve.h │ │ │ │ │ │ ├── ._SolveTriangular.h │ │ │ │ │ │ ├── ._SolverBase.h │ │ │ │ │ │ ├── ._StableNorm.h │ │ │ │ │ │ ├── ._Stride.h │ │ │ │ │ │ ├── ._Swap.h │ │ │ │ │ │ ├── ._Transpose.h │ │ │ │ │ │ ├── ._Transpositions.h │ │ │ │ │ │ ├── ._TriangularMatrix.h │ │ │ │ │ │ ├── ._VectorBlock.h │ │ │ │ │ │ ├── ._VectorwiseOp.h │ │ │ │ │ │ ├── ._Visitor.h │ │ │ │ │ │ ├── ._arch │ │ │ │ │ │ ├── ._functors │ │ │ │ │ │ ├── ._products │ │ │ │ │ │ ├── ._util │ │ │ │ │ │ ├── arch │ │ │ │ │ │ │ ├── ._AVX │ │ │ │ │ │ │ ├── ._AVX512 │ │ │ │ │ │ │ ├── ._AltiVec │ │ │ │ │ │ │ ├── ._CUDA │ │ │ │ │ │ │ ├── ._Default │ │ │ │ │ │ │ ├── ._NEON │ │ │ │ │ │ │ ├── ._SSE │ │ │ │ │ │ │ ├── ._ZVector │ │ │ │ │ │ │ ├── AVX │ │ │ │ │ │ │ │ ├── ._Complex.h │ │ │ │ │ │ │ │ ├── ._MathFunctions.h │ │ │ │ │ │ │ │ ├── ._PacketMath.h │ │ │ │ │ │ │ │ └── ._TypeCasting.h │ │ │ │ │ │ │ ├── AVX512 │ │ │ │ │ │ │ │ ├── ._MathFunctions.h │ │ │ │ │ │ │ │ └── ._PacketMath.h │ │ │ │ │ │ │ ├── AltiVec │ │ │ │ │ │ │ │ ├── ._Complex.h │ │ │ │ │ │ │ │ ├── ._MathFunctions.h │ │ │ │ │ │ │ │ └── ._PacketMath.h │ │ │ │ │ │ │ ├── CUDA │ │ │ │ │ │ │ │ ├── ._Complex.h │ │ │ │ │ │ │ │ ├── ._Half.h │ │ │ │ │ │ │ │ ├── ._MathFunctions.h │ │ │ │ │ │ │ │ ├── ._PacketMath.h │ │ │ │ │ │ │ │ ├── ._PacketMathHalf.h │ │ │ │ │ │ │ │ └── ._TypeCasting.h │ │ │ │ │ │ │ ├── Default │ │ │ │ │ │ │ │ └── ._Settings.h │ │ │ │ │ │ │ ├── NEON │ │ │ │ │ │ │ │ ├── ._Complex.h │ │ │ │ │ │ │ │ ├── ._MathFunctions.h │ │ │ │ │ │ │ │ └── ._PacketMath.h │ │ │ │ │ │ │ ├── SSE │ │ │ │ │ │ │ │ ├── ._Complex.h │ │ │ │ │ │ │ │ ├── ._MathFunctions.h │ │ │ │ │ │ │ │ ├── ._PacketMath.h │ │ │ │ │ │ │ │ └── ._TypeCasting.h │ │ │ │ │ │ │ └── ZVector │ │ │ │ │ │ │ │ ├── ._Complex.h │ │ │ │ │ │ │ │ ├── ._MathFunctions.h │ │ │ │ │ │ │ │ └── ._PacketMath.h │ │ │ │ │ │ ├── functors │ │ │ │ │ │ │ ├── ._AssignmentFunctors.h │ │ │ │ │ │ │ ├── ._BinaryFunctors.h │ │ │ │ │ │ │ ├── ._NullaryFunctors.h │ │ │ │ │ │ │ ├── ._StlFunctors.h │ │ │ │ │ │ │ ├── ._TernaryFunctors.h │ │ │ │ │ │ │ └── ._UnaryFunctors.h │ │ │ │ │ │ ├── products │ │ │ │ │ │ │ ├── ._CoeffBasedProduct.h │ │ │ │ │ │ │ ├── ._GeneralBlockPanelKernel.h │ │ │ │ │ │ │ ├── ._GeneralMatrixMatrix.h │ │ │ │ │ │ │ ├── ._GeneralMatrixMatrixTriangular.h │ │ │ │ │ │ │ ├── ._GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ │ │ │ ├── ._GeneralMatrixMatrixTriangular_MKL.h │ │ │ │ │ │ │ ├── ._GeneralMatrixMatrix_BLAS.h │ │ │ │ │ │ │ ├── ._GeneralMatrixMatrix_MKL.h │ │ │ │ │ │ │ ├── ._GeneralMatrixVector.h │ │ │ │ │ │ │ ├── ._GeneralMatrixVector_BLAS.h │ │ │ │ │ │ │ ├── ._GeneralMatrixVector_MKL.h │ │ │ │ │ │ │ ├── ._Parallelizer.h │ │ │ │ │ │ │ ├── ._SelfadjointMatrixMatrix.h │ │ │ │ │ │ │ ├── ._SelfadjointMatrixMatrix_BLAS.h │ │ │ │ │ │ │ ├── ._SelfadjointMatrixMatrix_MKL.h │ │ │ │ │ │ │ ├── ._SelfadjointMatrixVector.h │ │ │ │ │ │ │ ├── ._SelfadjointMatrixVector_BLAS.h │ │ │ │ │ │ │ ├── ._SelfadjointMatrixVector_MKL.h │ │ │ │ │ │ │ ├── ._SelfadjointProduct.h │ │ │ │ │ │ │ ├── ._SelfadjointRank2Update.h │ │ │ │ │ │ │ ├── ._TriangularMatrixMatrix.h │ │ │ │ │ │ │ ├── ._TriangularMatrixMatrix_BLAS.h │ │ │ │ │ │ │ ├── ._TriangularMatrixMatrix_MKL.h │ │ │ │ │ │ │ ├── ._TriangularMatrixVector.h │ │ │ │ │ │ │ ├── ._TriangularMatrixVector_BLAS.h │ │ │ │ │ │ │ ├── ._TriangularMatrixVector_MKL.h │ │ │ │ │ │ │ ├── ._TriangularSolverMatrix.h │ │ │ │ │ │ │ ├── ._TriangularSolverMatrix_BLAS.h │ │ │ │ │ │ │ ├── ._TriangularSolverMatrix_MKL.h │ │ │ │ │ │ │ └── ._TriangularSolverVector.h │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── ._BlasUtil.h │ │ │ │ │ │ │ ├── ._Constants.h │ │ │ │ │ │ │ ├── ._DisableStupidWarnings.h │ │ │ │ │ │ │ ├── ._ForwardDeclarations.h │ │ │ │ │ │ │ ├── ._MKL_support.h │ │ │ │ │ │ │ ├── ._Macros.h │ │ │ │ │ │ │ ├── ._Memory.h │ │ │ │ │ │ │ ├── ._Meta.h │ │ │ │ │ │ │ ├── ._NonMPL2.h │ │ │ │ │ │ │ ├── ._ReenableStupidWarnings.h │ │ │ │ │ │ │ ├── ._StaticAssert.h │ │ │ │ │ │ │ └── ._XprHelper.h │ │ │ │ │ │ ├── Eigen2Support │ │ │ │ │ │ ├── ._Block.h │ │ │ │ │ │ ├── ._Cwise.h │ │ │ │ │ │ ├── ._CwiseOperators.h │ │ │ │ │ │ ├── ._Geometry │ │ │ │ │ │ ├── ._LU.h │ │ │ │ │ │ ├── ._Lazy.h │ │ │ │ │ │ ├── ._LeastSquares.h │ │ │ │ │ │ ├── ._Macros.h │ │ │ │ │ │ ├── ._MathFunctions.h │ │ │ │ │ │ ├── ._Memory.h │ │ │ │ │ │ ├── ._Meta.h │ │ │ │ │ │ ├── ._Minor.h │ │ │ │ │ │ ├── ._QR.h │ │ │ │ │ │ ├── ._SVD.h │ │ │ │ │ │ ├── ._TriangularSolver.h │ │ │ │ │ │ ├── ._VectorBlock.h │ │ │ │ │ │ └── Geometry │ │ │ │ │ │ │ ├── ._AlignedBox.h │ │ │ │ │ │ │ ├── ._All.h │ │ │ │ │ │ │ ├── ._AngleAxis.h │ │ │ │ │ │ │ ├── ._Hyperplane.h │ │ │ │ │ │ │ ├── ._ParametrizedLine.h │ │ │ │ │ │ │ ├── ._Quaternion.h │ │ │ │ │ │ │ ├── ._Rotation2D.h │ │ │ │ │ │ │ ├── ._RotationBase.h │ │ │ │ │ │ │ ├── ._Scaling.h │ │ │ │ │ │ │ ├── ._Transform.h │ │ │ │ │ │ │ └── ._Translation.h │ │ │ │ │ │ ├── Eigenvalues │ │ │ │ │ │ ├── ._ComplexEigenSolver.h │ │ │ │ │ │ ├── ._ComplexSchur.h │ │ │ │ │ │ ├── ._ComplexSchur_LAPACKE.h │ │ │ │ │ │ ├── ._ComplexSchur_MKL.h │ │ │ │ │ │ ├── ._EigenSolver.h │ │ │ │ │ │ ├── ._GeneralizedEigenSolver.h │ │ │ │ │ │ ├── ._GeneralizedSelfAdjointEigenSolver.h │ │ │ │ │ │ ├── ._HessenbergDecomposition.h │ │ │ │ │ │ ├── ._MatrixBaseEigenvalues.h │ │ │ │ │ │ ├── ._RealQZ.h │ │ │ │ │ │ ├── ._RealSchur.h │ │ │ │ │ │ ├── ._RealSchur_LAPACKE.h │ │ │ │ │ │ ├── ._RealSchur_MKL.h │ │ │ │ │ │ ├── ._SelfAdjointEigenSolver.h │ │ │ │ │ │ ├── ._SelfAdjointEigenSolver_LAPACKE.h │ │ │ │ │ │ ├── ._SelfAdjointEigenSolver_MKL.h │ │ │ │ │ │ └── ._Tridiagonalization.h │ │ │ │ │ │ ├── Geometry │ │ │ │ │ │ ├── ._AlignedBox.h │ │ │ │ │ │ ├── ._AngleAxis.h │ │ │ │ │ │ ├── ._EulerAngles.h │ │ │ │ │ │ ├── ._Homogeneous.h │ │ │ │ │ │ ├── ._Hyperplane.h │ │ │ │ │ │ ├── ._OrthoMethods.h │ │ │ │ │ │ ├── ._ParametrizedLine.h │ │ │ │ │ │ ├── ._Quaternion.h │ │ │ │ │ │ ├── ._Rotation2D.h │ │ │ │ │ │ ├── ._RotationBase.h │ │ │ │ │ │ ├── ._Scaling.h │ │ │ │ │ │ ├── ._Transform.h │ │ │ │ │ │ ├── ._Translation.h │ │ │ │ │ │ ├── ._Umeyama.h │ │ │ │ │ │ ├── ._arch │ │ │ │ │ │ └── arch │ │ │ │ │ │ │ └── ._Geometry_SSE.h │ │ │ │ │ │ ├── Householder │ │ │ │ │ │ ├── ._BlockHouseholder.h │ │ │ │ │ │ ├── ._Householder.h │ │ │ │ │ │ └── ._HouseholderSequence.h │ │ │ │ │ │ ├── IterativeLinearSolvers │ │ │ │ │ │ ├── ._BasicPreconditioners.h │ │ │ │ │ │ ├── ._BiCGSTAB.h │ │ │ │ │ │ ├── ._ConjugateGradient.h │ │ │ │ │ │ ├── ._IncompleteCholesky.h │ │ │ │ │ │ ├── ._IncompleteLUT.h │ │ │ │ │ │ ├── ._IterativeSolverBase.h │ │ │ │ │ │ ├── ._LeastSquareConjugateGradient.h │ │ │ │ │ │ └── ._SolveWithGuess.h │ │ │ │ │ │ ├── Jacobi │ │ │ │ │ │ └── ._Jacobi.h │ │ │ │ │ │ ├── LU │ │ │ │ │ │ ├── ._Determinant.h │ │ │ │ │ │ ├── ._FullPivLU.h │ │ │ │ │ │ ├── ._Inverse.h │ │ │ │ │ │ ├── ._InverseImpl.h │ │ │ │ │ │ ├── ._PartialPivLU.h │ │ │ │ │ │ ├── ._PartialPivLU_LAPACKE.h │ │ │ │ │ │ ├── ._PartialPivLU_MKL.h │ │ │ │ │ │ ├── ._arch │ │ │ │ │ │ └── arch │ │ │ │ │ │ │ └── ._Inverse_SSE.h │ │ │ │ │ │ ├── MetisSupport │ │ │ │ │ │ └── ._MetisSupport.h │ │ │ │ │ │ ├── OrderingMethods │ │ │ │ │ │ ├── ._Amd.h │ │ │ │ │ │ ├── ._Eigen_Colamd.h │ │ │ │ │ │ └── ._Ordering.h │ │ │ │ │ │ ├── PaStiXSupport │ │ │ │ │ │ └── ._PaStiXSupport.h │ │ │ │ │ │ ├── PardisoSupport │ │ │ │ │ │ └── ._PardisoSupport.h │ │ │ │ │ │ ├── QR │ │ │ │ │ │ ├── ._ColPivHouseholderQR.h │ │ │ │ │ │ ├── ._ColPivHouseholderQR_LAPACKE.h │ │ │ │ │ │ ├── ._ColPivHouseholderQR_MKL.h │ │ │ │ │ │ ├── ._CompleteOrthogonalDecomposition.h │ │ │ │ │ │ ├── ._FullPivHouseholderQR.h │ │ │ │ │ │ ├── ._HouseholderQR.h │ │ │ │ │ │ ├── ._HouseholderQR_LAPACKE.h │ │ │ │ │ │ └── ._HouseholderQR_MKL.h │ │ │ │ │ │ ├── SPQRSupport │ │ │ │ │ │ └── ._SuiteSparseQRSupport.h │ │ │ │ │ │ ├── SVD │ │ │ │ │ │ ├── ._BDCSVD.h │ │ │ │ │ │ ├── ._JacobiSVD.h │ │ │ │ │ │ ├── ._JacobiSVD_LAPACKE.h │ │ │ │ │ │ ├── ._JacobiSVD_MKL.h │ │ │ │ │ │ ├── ._SVDBase.h │ │ │ │ │ │ └── ._UpperBidiagonalization.h │ │ │ │ │ │ ├── SparseCholesky │ │ │ │ │ │ ├── ._SimplicialCholesky.h │ │ │ │ │ │ └── ._SimplicialCholesky_impl.h │ │ │ │ │ │ ├── SparseCore │ │ │ │ │ │ ├── ._AmbiVector.h │ │ │ │ │ │ ├── ._CompressedStorage.h │ │ │ │ │ │ ├── ._ConservativeSparseSparseProduct.h │ │ │ │ │ │ ├── ._MappedSparseMatrix.h │ │ │ │ │ │ ├── ._SparseAssign.h │ │ │ │ │ │ ├── ._SparseBlock.h │ │ │ │ │ │ ├── ._SparseColEtree.h │ │ │ │ │ │ ├── ._SparseCompressedBase.h │ │ │ │ │ │ ├── ._SparseCwiseBinaryOp.h │ │ │ │ │ │ ├── ._SparseCwiseUnaryOp.h │ │ │ │ │ │ ├── ._SparseDenseProduct.h │ │ │ │ │ │ ├── ._SparseDiagonalProduct.h │ │ │ │ │ │ ├── ._SparseDot.h │ │ │ │ │ │ ├── ._SparseFuzzy.h │ │ │ │ │ │ ├── ._SparseMap.h │ │ │ │ │ │ ├── ._SparseMatrix.h │ │ │ │ │ │ ├── ._SparseMatrixBase.h │ │ │ │ │ │ ├── ._SparsePermutation.h │ │ │ │ │ │ ├── ._SparseProduct.h │ │ │ │ │ │ ├── ._SparseRedux.h │ │ │ │ │ │ ├── ._SparseRef.h │ │ │ │ │ │ ├── ._SparseSelfAdjointView.h │ │ │ │ │ │ ├── ._SparseSolverBase.h │ │ │ │ │ │ ├── ._SparseSparseProductWithPruning.h │ │ │ │ │ │ ├── ._SparseTranspose.h │ │ │ │ │ │ ├── ._SparseTriangularView.h │ │ │ │ │ │ ├── ._SparseUtil.h │ │ │ │ │ │ ├── ._SparseVector.h │ │ │ │ │ │ ├── ._SparseView.h │ │ │ │ │ │ └── ._TriangularSolver.h │ │ │ │ │ │ ├── SparseLU │ │ │ │ │ │ ├── ._SparseLU.h │ │ │ │ │ │ ├── ._SparseLUImpl.h │ │ │ │ │ │ ├── ._SparseLU_Memory.h │ │ │ │ │ │ ├── ._SparseLU_Structs.h │ │ │ │ │ │ ├── ._SparseLU_SupernodalMatrix.h │ │ │ │ │ │ ├── ._SparseLU_Utils.h │ │ │ │ │ │ ├── ._SparseLU_column_bmod.h │ │ │ │ │ │ ├── ._SparseLU_column_dfs.h │ │ │ │ │ │ ├── ._SparseLU_copy_to_ucol.h │ │ │ │ │ │ ├── ._SparseLU_gemm_kernel.h │ │ │ │ │ │ ├── ._SparseLU_heap_relax_snode.h │ │ │ │ │ │ ├── ._SparseLU_kernel_bmod.h │ │ │ │ │ │ ├── ._SparseLU_panel_bmod.h │ │ │ │ │ │ ├── ._SparseLU_panel_dfs.h │ │ │ │ │ │ ├── ._SparseLU_pivotL.h │ │ │ │ │ │ ├── ._SparseLU_pruneL.h │ │ │ │ │ │ └── ._SparseLU_relax_snode.h │ │ │ │ │ │ ├── SparseQR │ │ │ │ │ │ └── ._SparseQR.h │ │ │ │ │ │ ├── StlSupport │ │ │ │ │ │ ├── ._StdDeque.h │ │ │ │ │ │ ├── ._StdList.h │ │ │ │ │ │ ├── ._StdVector.h │ │ │ │ │ │ └── ._details.h │ │ │ │ │ │ ├── SuperLUSupport │ │ │ │ │ │ └── ._SuperLUSupport.h │ │ │ │ │ │ ├── UmfPackSupport │ │ │ │ │ │ └── ._UmfPackSupport.h │ │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── ._Image.h │ │ │ │ │ │ ├── ._Kernel.h │ │ │ │ │ │ ├── ._RealSvd2x2.h │ │ │ │ │ │ ├── ._Solve.h │ │ │ │ │ │ ├── ._SparseSolve.h │ │ │ │ │ │ ├── ._blas.h │ │ │ │ │ │ ├── ._lapack.h │ │ │ │ │ │ ├── ._lapacke.h │ │ │ │ │ │ └── ._lapacke_mangling.h │ │ │ │ │ │ └── plugins │ │ │ │ │ │ ├── ._ArrayCwiseBinaryOps.h │ │ │ │ │ │ ├── ._ArrayCwiseUnaryOps.h │ │ │ │ │ │ ├── ._BlockMethods.h │ │ │ │ │ │ ├── ._CommonCwiseBinaryOps.h │ │ │ │ │ │ ├── ._CommonCwiseUnaryOps.h │ │ │ │ │ │ ├── ._MatrixCwiseBinaryOps.h │ │ │ │ │ │ └── ._MatrixCwiseUnaryOps.h │ │ │ │ ├── glvu │ │ │ │ │ ├── ._.DS_Store │ │ │ │ │ ├── ._camera.h │ │ │ │ │ ├── ._glvu.cpp │ │ │ │ │ ├── ._glvu.h │ │ │ │ │ ├── ._glvu.o │ │ │ │ │ ├── ._glvuMat16fv.h │ │ │ │ │ ├── ._glvuVec3f.h │ │ │ │ │ ├── ._glvuVec3fv.h │ │ │ │ │ ├── ._snapshot.h │ │ │ │ │ ├── ._text.h │ │ │ │ │ └── ._trackball.h │ │ │ │ └── stlplus3 │ │ │ │ │ ├── ._.DS_Store │ │ │ │ │ ├── ._CMakeLists.txt │ │ │ │ │ ├── ._file_system.cpp │ │ │ │ │ ├── ._file_system.hpp │ │ │ │ │ ├── ._portability_fixes.cpp │ │ │ │ │ ├── ._portability_fixes.hpp │ │ │ │ │ ├── ._wildcard.cpp │ │ │ │ │ └── ._wildcard.hpp │ │ │ ├── obstacles │ │ │ │ ├── ._boundary_paddle_master.txt │ │ │ │ ├── ._box1.txt │ │ │ │ ├── ._box2.txt │ │ │ │ ├── ._boxes.jpg │ │ │ │ ├── ._boxes1.jpg │ │ │ │ ├── ._concave.jpg │ │ │ │ ├── ._concave1.jpg │ │ │ │ ├── ._cylinde_direct.txt │ │ │ │ ├── ._cylinde_direct_pos.txt │ │ │ │ ├── ._cylinde_paddle.txt │ │ │ │ ├── ._cylinder_interact │ │ │ │ ├── ._cylinder_middle_big.txt │ │ │ │ ├── ._cylinder_small │ │ │ │ ├── ._cylinder_small_list.txt │ │ │ │ ├── ._cylinder_static.txt │ │ │ │ ├── ._cylinder_static1.txt │ │ │ │ ├── ._cylinder_static2.txt │ │ │ │ ├── ._cylinder_static3.txt │ │ │ │ ├── ._cylinder_static4.txt │ │ │ │ ├── ._cylinder_static5.txt │ │ │ │ ├── ._cylinder_static6.txt │ │ │ │ ├── ._cylinder_static_horizontal.txt │ │ │ │ ├── ._moving_sphere.txt │ │ │ │ ├── ._multiple_plumes.txt │ │ │ │ ├── ._obstacle_list_six_cylinder.txt │ │ │ │ ├── ._obstacle_master.txt │ │ │ │ ├── ._obstacle_master_movingsphere.txt │ │ │ │ ├── ._obstacle_paddle.txt │ │ │ │ ├── ._random.jpg │ │ │ │ ├── ._single_cylinder_comparison.txt │ │ │ │ ├── ._small_sphere1.txt │ │ │ │ ├── ._small_sphere2.txt │ │ │ │ ├── ._small_sphere3.txt │ │ │ │ ├── ._small_sphere4.txt │ │ │ │ ├── ._small_sphere5.txt │ │ │ │ ├── ._small_sphere6.txt │ │ │ │ ├── ._sphere.jpg │ │ │ │ ├── ._sphere.txt │ │ │ │ ├── ._sphere_center.txt │ │ │ │ ├── ._triangle.jpg │ │ │ │ ├── cylinder_interact │ │ │ │ │ ├── ._cylinder_interact.txt │ │ │ │ │ └── ._cylinder_interact_list.txt │ │ │ │ └── cylinder_small │ │ │ │ │ ├── ._cylinder_small1.txt │ │ │ │ │ ├── ._cylinder_small10.txt │ │ │ │ │ ├── ._cylinder_small11.txt │ │ │ │ │ ├── ._cylinder_small12.txt │ │ │ │ │ ├── ._cylinder_small2.txt │ │ │ │ │ ├── ._cylinder_small3.txt │ │ │ │ │ ├── ._cylinder_small4.txt │ │ │ │ │ ├── ._cylinder_small5.txt │ │ │ │ │ ├── ._cylinder_small6.txt │ │ │ │ │ ├── ._cylinder_small7.txt │ │ │ │ │ ├── ._cylinder_small7_1.txt │ │ │ │ │ ├── ._cylinder_small8.txt │ │ │ │ │ └── ._cylinder_small9.txt │ │ │ ├── scripts │ │ │ │ ├── ._Anacomp.nb │ │ │ │ ├── ._CompTOneNeumann.m │ │ │ │ ├── ._CompVariationalDirichlet.m │ │ │ │ ├── ._CompVariationalOneNeumann.m │ │ │ │ ├── ._ComputeError.m │ │ │ │ ├── ._ComputeTensorEntry.m │ │ │ │ ├── ._ComputeTransferMatrix.m │ │ │ │ ├── ._ComputeTwoNeumannTensor.m │ │ │ │ ├── ._ComputeTwoNeumannTensorEntry.m │ │ │ │ ├── ._Dirichlet3Dparaview.m │ │ │ │ ├── ._E_visc0.0001.txt │ │ │ │ ├── ._E_visc0.0002.txt │ │ │ │ ├── ._E_visc0.txt │ │ │ │ ├── ._FourierNeumannDiffOnly.py │ │ │ │ ├── ._FourierNeumannRotation.py │ │ │ │ ├── ._FourierNeumannSkewSymm.py │ │ │ │ ├── ._Lookup.m │ │ │ │ ├── ._Output3DParaview.m │ │ │ │ ├── ._PlotErrorTest.m │ │ │ │ ├── ._TensorEntVarDirich.m │ │ │ │ ├── ._TwoNeumann.nb │ │ │ │ ├── ._Untitled-1.nb │ │ │ │ ├── ._cp_decomp_tensor.m │ │ │ │ ├── ._hist_T2_1010.txt │ │ │ │ ├── ._hist_T2_3577.txt │ │ │ │ ├── ._hist_T2_8162.txt │ │ │ │ ├── ._hist_T4_3360.txt │ │ │ │ ├── ._hist_T6_2691.txt │ │ │ │ ├── ._plot_Dedalus_energy.py │ │ │ │ ├── ._plot_basis_weight.py │ │ │ │ ├── ._plot_compressed_l2_error.py │ │ │ │ ├── ._plot_eigenValues.py │ │ │ │ ├── ._plot_energy.py │ │ │ │ ├── ._plot_energy_visc.py │ │ │ │ ├── ._plot_graph.m │ │ │ │ └── ._plot_historgram.py │ │ │ ├── src │ │ │ │ ├── ._2D │ │ │ │ ├── ._3D │ │ │ │ ├── ._Alg │ │ │ │ ├── ._CMakeLists.txt │ │ │ │ ├── ._setting.h │ │ │ │ ├── ._solver │ │ │ │ ├── ._util │ │ │ │ ├── 2D │ │ │ │ │ ├── ._FIELD2D.cpp │ │ │ │ │ ├── ._FIELD2D.h │ │ │ │ │ ├── ._FLUID2D.cpp │ │ │ │ │ ├── ._FLUID2D.h │ │ │ │ │ ├── ._VFIELD2D.cpp │ │ │ │ │ ├── ._VFIELD2D.h │ │ │ │ │ ├── ._all_dirichlet_basis_2D.cpp │ │ │ │ │ ├── ._all_dirichlet_basis_2D.h │ │ │ │ │ ├── ._all_dirichlet_basis_2D_test.cpp │ │ │ │ │ ├── ._basis_lookup_2D.cpp │ │ │ │ │ ├── ._basis_lookup_2D.h │ │ │ │ │ ├── ._drawer_2d.cpp │ │ │ │ │ ├── ._drawer_2d.h │ │ │ │ │ ├── ._laplacian_basis_2D.cpp │ │ │ │ │ ├── ._laplacian_basis_2D.h │ │ │ │ │ ├── ._laplacian_fluid_2D.cpp │ │ │ │ │ ├── ._laplacian_fluid_2D.h │ │ │ │ │ ├── ._obstacle_2d.cpp │ │ │ │ │ ├── ._obstacle_2d.h │ │ │ │ │ ├── ._obstacle_2d_test.cpp │ │ │ │ │ ├── ._particle_2d.h │ │ │ │ │ ├── ._three_dirichlet_one_neumann.cpp │ │ │ │ │ ├── ._three_dirichlet_one_neumann.h │ │ │ │ │ ├── ._three_dirichlet_one_neumann_test.cpp │ │ │ │ │ ├── ._two_neumann_basis_2D.cpp │ │ │ │ │ ├── ._two_neumann_basis_2D.h │ │ │ │ │ ├── ._two_neumann_x_2D.cpp │ │ │ │ │ ├── ._two_neumann_x_2D.h │ │ │ │ │ └── ._two_neumann_x_2D_test.cpp │ │ │ │ ├── 3D │ │ │ │ │ ├── ._FIELD_3D.cpp │ │ │ │ │ ├── ._FIELD_3D.h │ │ │ │ │ ├── ._FLUID_3D_MIC.cpp │ │ │ │ │ ├── ._FLUID_3D_MIC.h │ │ │ │ │ ├── ._Ted_obstacle.h │ │ │ │ │ ├── ._VECTOR3_FIELD_3D.cpp │ │ │ │ │ ├── ._VECTOR3_FIELD_3D.h │ │ │ │ │ ├── ._density_warpper.cpp │ │ │ │ │ ├── ._density_warpper.h │ │ │ │ │ ├── ._dirichlet_basis_3d.cpp │ │ │ │ │ ├── ._dirichlet_basis_3d.h │ │ │ │ │ ├── ._dirichlet_basis_set_3d.cpp │ │ │ │ │ ├── ._dirichlet_basis_set_3d.h │ │ │ │ │ ├── ._dirichlet_basis_set_3d_test.cpp │ │ │ │ │ ├── ._drawer_3d.cpp │ │ │ │ │ ├── ._drawer_3d.h │ │ │ │ │ ├── ._fluid_3D_DCT.cpp │ │ │ │ │ ├── ._fluid_3D_DCT.h │ │ │ │ │ ├── ._four_neumann_basis_3d.cpp │ │ │ │ │ ├── ._four_neumann_basis_3d.h │ │ │ │ │ ├── ._four_neumann_basis_set_3d.cpp │ │ │ │ │ ├── ._four_neumann_basis_set_3d.h │ │ │ │ │ ├── ._four_neumann_basis_set_3d_test.cpp │ │ │ │ │ ├── ._laplacian_basis_3d.h │ │ │ │ │ ├── ._laplacian_basis_set_3d.cpp │ │ │ │ │ ├── ._laplacian_basis_set_3d.h │ │ │ │ │ ├── ._laplacian_fluid_3d.cpp │ │ │ │ │ ├── ._laplacian_fluid_3d.h │ │ │ │ │ ├── ._obstacle_3d.h │ │ │ │ │ ├── ._obstacle_box_3d.cpp │ │ │ │ │ ├── ._obstacle_box_3d.h │ │ │ │ │ ├── ._obstacle_cylinder_3d.cpp │ │ │ │ │ ├── ._obstacle_cylinder_3d.h │ │ │ │ │ ├── ._obstacle_cylinder_interact.cpp │ │ │ │ │ ├── ._obstacle_cylinder_interact.h │ │ │ │ │ ├── ._obstacle_cylinder_static_3d.cpp │ │ │ │ │ ├── ._obstacle_cylinder_static_3d.h │ │ │ │ │ ├── ._obstacle_sphere_3d.cpp │ │ │ │ │ ├── ._obstacle_sphere_3d.h │ │ │ │ │ ├── ._obstacle_wrapper_3d.cpp │ │ │ │ │ ├── ._obstacle_wrapper_3d.h │ │ │ │ │ ├── ._one_neumann_basis_3d.cpp │ │ │ │ │ ├── ._one_neumann_basis_3d.h │ │ │ │ │ ├── ._one_neumann_basis_set_3d.cpp │ │ │ │ │ ├── ._one_neumann_basis_set_3d.h │ │ │ │ │ ├── ._one_neumann_basis_set_3d_test.cpp │ │ │ │ │ ├── ._particle_3d.cpp │ │ │ │ │ ├── ._particle_3d.h │ │ │ │ │ ├── ._six_neumann_basis_3d.cpp │ │ │ │ │ ├── ._six_neumann_basis_3d.h │ │ │ │ │ ├── ._six_neumann_basis_set_3d.cpp │ │ │ │ │ ├── ._six_neumann_basis_set_3d.h │ │ │ │ │ ├── ._six_neumann_basis_set_3d_test.cpp │ │ │ │ │ ├── ._trig_integral_3d.cpp │ │ │ │ │ ├── ._trig_integral_3d.h │ │ │ │ │ ├── ._trig_integral_3d_test.cpp │ │ │ │ │ ├── ._two_neumann_x_3d_basis.cpp │ │ │ │ │ ├── ._two_neumann_x_3d_basis.h │ │ │ │ │ ├── ._two_neumann_x_3d_basis_set.cpp │ │ │ │ │ ├── ._two_neumann_x_3d_basis_set.h │ │ │ │ │ └── ._two_neumann_x_3d_basis_set_test.cpp │ │ │ │ ├── Alg │ │ │ │ │ ├── ._MATRIX3.cpp │ │ │ │ │ ├── ._MATRIX3.h │ │ │ │ │ ├── ._VEC2.h │ │ │ │ │ ├── ._VEC3.h │ │ │ │ │ ├── ._VECTOR.cpp │ │ │ │ │ └── ._VECTOR.h │ │ │ │ ├── solver │ │ │ │ │ ├── ._integrator_2d.cpp │ │ │ │ │ ├── ._integrator_2d.h │ │ │ │ │ ├── ._integrator_RK4.cpp │ │ │ │ │ ├── ._integrator_RK4.h │ │ │ │ │ ├── ._integrator_semi_implicit.cpp │ │ │ │ │ ├── ._integrator_semi_implicit.h │ │ │ │ │ ├── ._obstacle_solver.cpp │ │ │ │ │ ├── ._obstacle_solver.h │ │ │ │ │ ├── ._trapezoidal.cpp │ │ │ │ │ └── ._trapezoidal.h │ │ │ │ └── util │ │ │ │ │ ├── ._QUICKTIME_MOVIE.h │ │ │ │ │ ├── ._SIMPLE_PARSER.cpp │ │ │ │ │ ├── ._SIMPLE_PARSER.h │ │ │ │ │ ├── ._block_3d_dct.cpp │ │ │ │ │ ├── ._block_3d_dct.h │ │ │ │ │ ├── ._get_current_time.h │ │ │ │ │ ├── ._glPrintString.cpp │ │ │ │ │ ├── ._glPrintString.h │ │ │ │ │ ├── ._read_write_tensor.cpp │ │ │ │ │ ├── ._read_write_tensor.h │ │ │ │ │ ├── ._solve_quadratic.cpp │ │ │ │ │ ├── ._solve_quadratic.h │ │ │ │ │ ├── ._stringprintf.cc │ │ │ │ │ ├── ._stringprintf.h │ │ │ │ │ ├── ._timer.cpp │ │ │ │ │ ├── ._timer.h │ │ │ │ │ ├── ._trackball.cpp │ │ │ │ │ ├── ._trackball.h │ │ │ │ │ ├── ._util.cpp │ │ │ │ │ ├── ._util.h │ │ │ │ │ ├── ._write_density_pbrt.cpp │ │ │ │ │ └── ._write_density_pbrt.h │ │ │ └── ted_cfgs │ │ │ │ ├── ._fluid_DCT.cfg │ │ │ │ ├── ._paddle.cfg │ │ │ │ ├── ._small_cylinders.cfg │ │ │ │ └── ._stam.64.cfg │ │ ├── applications │ │ │ ├── CMakeLists.txt │ │ │ ├── drop_tensor_entries.cpp │ │ │ ├── fluidStam3D.cpp │ │ │ ├── fluid_DCT_sim3D.cpp │ │ │ ├── laplacian_fluid_sim2D.cpp │ │ │ ├── laplacian_fluid_sim3D.cpp │ │ │ ├── precompute_2D_tensor.cpp │ │ │ └── precompute_3D_tensor.cpp │ │ ├── cmake │ │ │ ├── FindEigen.cmake │ │ │ ├── FindFFTW.cmake │ │ │ ├── FindGflags.cmake │ │ │ └── FindGlog.cmake │ │ ├── compile.sh │ │ ├── density_source │ │ │ ├── jetcollide.txt │ │ │ ├── single_phase_source.txt │ │ │ ├── six_plume_source_pos.txt │ │ │ └── two_phase_source.txt │ │ ├── fluid2D.cfg │ │ ├── fluid3D.perl │ │ ├── fluid3D_DCT.perl │ │ ├── fluid3D_stam3D.perl │ │ ├── fluid_3D_paddle.cfg │ │ ├── fluid_moving_sphere.cfg │ │ ├── fluid_two_phase_pulse.cfg │ │ ├── libraries │ │ │ ├── CMakeLists.txt │ │ │ ├── Eigen │ │ │ │ ├── Array │ │ │ │ ├── Cholesky │ │ │ │ ├── CholmodSupport │ │ │ │ ├── Core │ │ │ │ ├── Dense │ │ │ │ ├── Eigen │ │ │ │ ├── Eigen2Support │ │ │ │ ├── Eigenvalues │ │ │ │ ├── Geometry │ │ │ │ ├── Householder │ │ │ │ ├── IterativeLinearSolvers │ │ │ │ ├── Jacobi │ │ │ │ ├── LU │ │ │ │ ├── LeastSquares │ │ │ │ ├── MetisSupport │ │ │ │ ├── OrderingMethods │ │ │ │ ├── PaStiXSupport │ │ │ │ ├── PardisoSupport │ │ │ │ ├── QR │ │ │ │ ├── QtAlignedMalloc │ │ │ │ ├── SPQRSupport │ │ │ │ ├── SVD │ │ │ │ ├── Sparse │ │ │ │ ├── SparseCholesky │ │ │ │ ├── SparseCore │ │ │ │ ├── SparseLU │ │ │ │ ├── SparseQR │ │ │ │ ├── StdDeque │ │ │ │ ├── StdList │ │ │ │ ├── StdVector │ │ │ │ ├── SuperLUSupport │ │ │ │ ├── UmfPackSupport │ │ │ │ └── src │ │ │ │ │ ├── Cholesky │ │ │ │ │ ├── LDLT.h │ │ │ │ │ ├── LLT.h │ │ │ │ │ ├── LLT_LAPACKE.h │ │ │ │ │ └── LLT_MKL.h │ │ │ │ │ ├── CholmodSupport │ │ │ │ │ └── CholmodSupport.h │ │ │ │ │ ├── Core │ │ │ │ │ ├── Array.h │ │ │ │ │ ├── ArrayBase.h │ │ │ │ │ ├── ArrayWrapper.h │ │ │ │ │ ├── Assign.h │ │ │ │ │ ├── AssignEvaluator.h │ │ │ │ │ ├── Assign_MKL.h │ │ │ │ │ ├── BandMatrix.h │ │ │ │ │ ├── Block.h │ │ │ │ │ ├── BooleanRedux.h │ │ │ │ │ ├── CommaInitializer.h │ │ │ │ │ ├── ConditionEstimator.h │ │ │ │ │ ├── CoreEvaluators.h │ │ │ │ │ ├── CoreIterators.h │ │ │ │ │ ├── CwiseBinaryOp.h │ │ │ │ │ ├── CwiseNullaryOp.h │ │ │ │ │ ├── CwiseTernaryOp.h │ │ │ │ │ ├── CwiseUnaryOp.h │ │ │ │ │ ├── CwiseUnaryView.h │ │ │ │ │ ├── DenseBase.h │ │ │ │ │ ├── DenseCoeffsBase.h │ │ │ │ │ ├── DenseStorage.h │ │ │ │ │ ├── Diagonal.h │ │ │ │ │ ├── DiagonalMatrix.h │ │ │ │ │ ├── DiagonalProduct.h │ │ │ │ │ ├── Dot.h │ │ │ │ │ ├── EigenBase.h │ │ │ │ │ ├── Flagged.h │ │ │ │ │ ├── ForceAlignedAccess.h │ │ │ │ │ ├── Functors.h │ │ │ │ │ ├── Fuzzy.h │ │ │ │ │ ├── GeneralProduct.h │ │ │ │ │ ├── GenericPacketMath.h │ │ │ │ │ ├── GlobalFunctions.h │ │ │ │ │ ├── IO.h │ │ │ │ │ ├── Inverse.h │ │ │ │ │ ├── Map.h │ │ │ │ │ ├── MapBase.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── MathFunctionsImpl.h │ │ │ │ │ ├── Matrix.h │ │ │ │ │ ├── MatrixBase.h │ │ │ │ │ ├── NestByValue.h │ │ │ │ │ ├── NoAlias.h │ │ │ │ │ ├── NumTraits.h │ │ │ │ │ ├── PermutationMatrix.h │ │ │ │ │ ├── PlainObjectBase.h │ │ │ │ │ ├── Product.h │ │ │ │ │ ├── ProductBase.h │ │ │ │ │ ├── ProductEvaluators.h │ │ │ │ │ ├── Random.h │ │ │ │ │ ├── Redux.h │ │ │ │ │ ├── Ref.h │ │ │ │ │ ├── Replicate.h │ │ │ │ │ ├── ReturnByValue.h │ │ │ │ │ ├── Reverse.h │ │ │ │ │ ├── Select.h │ │ │ │ │ ├── SelfAdjointView.h │ │ │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ │ │ ├── Solve.h │ │ │ │ │ ├── SolveTriangular.h │ │ │ │ │ ├── SolverBase.h │ │ │ │ │ ├── StableNorm.h │ │ │ │ │ ├── Stride.h │ │ │ │ │ ├── Swap.h │ │ │ │ │ ├── Transpose.h │ │ │ │ │ ├── Transpositions.h │ │ │ │ │ ├── TriangularMatrix.h │ │ │ │ │ ├── VectorBlock.h │ │ │ │ │ ├── VectorwiseOp.h │ │ │ │ │ ├── Visitor.h │ │ │ │ │ ├── arch │ │ │ │ │ │ ├── AVX │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ ├── AVX512 │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ ├── AltiVec │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ ├── CUDA │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── Half.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ ├── PacketMathHalf.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ ├── Default │ │ │ │ │ │ │ └── Settings.h │ │ │ │ │ │ ├── NEON │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ ├── SSE │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ └── ZVector │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── functors │ │ │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ │ │ ├── BinaryFunctors.h │ │ │ │ │ │ ├── NullaryFunctors.h │ │ │ │ │ │ ├── StlFunctors.h │ │ │ │ │ │ ├── TernaryFunctors.h │ │ │ │ │ │ └── UnaryFunctors.h │ │ │ │ │ ├── products │ │ │ │ │ │ ├── CoeffBasedProduct.h │ │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ │ │ ├── GeneralMatrixMatrixTriangular_MKL.h │ │ │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ │ │ ├── GeneralMatrixMatrix_MKL.h │ │ │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ │ │ ├── GeneralMatrixVector_MKL.h │ │ │ │ │ │ ├── Parallelizer.h │ │ │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ │ │ ├── SelfadjointMatrixMatrix_MKL.h │ │ │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ │ │ ├── SelfadjointMatrixVector_MKL.h │ │ │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ │ │ ├── TriangularMatrixMatrix_MKL.h │ │ │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ │ │ ├── TriangularMatrixVector_MKL.h │ │ │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ │ │ ├── TriangularSolverMatrix_MKL.h │ │ │ │ │ │ └── TriangularSolverVector.h │ │ │ │ │ └── util │ │ │ │ │ │ ├── BlasUtil.h │ │ │ │ │ │ ├── Constants.h │ │ │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ │ │ ├── MKL_support.h │ │ │ │ │ │ ├── Macros.h │ │ │ │ │ │ ├── Memory.h │ │ │ │ │ │ ├── Meta.h │ │ │ │ │ │ ├── NonMPL2.h │ │ │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ │ │ ├── StaticAssert.h │ │ │ │ │ │ └── XprHelper.h │ │ │ │ │ ├── Eigen2Support │ │ │ │ │ ├── Block.h │ │ │ │ │ ├── Cwise.h │ │ │ │ │ ├── CwiseOperators.h │ │ │ │ │ ├── Geometry │ │ │ │ │ │ ├── AlignedBox.h │ │ │ │ │ │ ├── All.h │ │ │ │ │ │ ├── AngleAxis.h │ │ │ │ │ │ ├── Hyperplane.h │ │ │ │ │ │ ├── ParametrizedLine.h │ │ │ │ │ │ ├── Quaternion.h │ │ │ │ │ │ ├── Rotation2D.h │ │ │ │ │ │ ├── RotationBase.h │ │ │ │ │ │ ├── Scaling.h │ │ │ │ │ │ ├── Transform.h │ │ │ │ │ │ └── Translation.h │ │ │ │ │ ├── LU.h │ │ │ │ │ ├── Lazy.h │ │ │ │ │ ├── LeastSquares.h │ │ │ │ │ ├── Macros.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── Memory.h │ │ │ │ │ ├── Meta.h │ │ │ │ │ ├── Minor.h │ │ │ │ │ ├── QR.h │ │ │ │ │ ├── SVD.h │ │ │ │ │ ├── TriangularSolver.h │ │ │ │ │ └── VectorBlock.h │ │ │ │ │ ├── Eigenvalues │ │ │ │ │ ├── ComplexEigenSolver.h │ │ │ │ │ ├── ComplexSchur.h │ │ │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ │ │ ├── ComplexSchur_MKL.h │ │ │ │ │ ├── EigenSolver.h │ │ │ │ │ ├── GeneralizedEigenSolver.h │ │ │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ │ │ ├── HessenbergDecomposition.h │ │ │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ │ │ ├── RealQZ.h │ │ │ │ │ ├── RealSchur.h │ │ │ │ │ ├── RealSchur_LAPACKE.h │ │ │ │ │ ├── RealSchur_MKL.h │ │ │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ │ │ ├── SelfAdjointEigenSolver_MKL.h │ │ │ │ │ └── Tridiagonalization.h │ │ │ │ │ ├── Geometry │ │ │ │ │ ├── AlignedBox.h │ │ │ │ │ ├── AngleAxis.h │ │ │ │ │ ├── EulerAngles.h │ │ │ │ │ ├── Homogeneous.h │ │ │ │ │ ├── Hyperplane.h │ │ │ │ │ ├── OrthoMethods.h │ │ │ │ │ ├── ParametrizedLine.h │ │ │ │ │ ├── Quaternion.h │ │ │ │ │ ├── Rotation2D.h │ │ │ │ │ ├── RotationBase.h │ │ │ │ │ ├── Scaling.h │ │ │ │ │ ├── Transform.h │ │ │ │ │ ├── Translation.h │ │ │ │ │ ├── Umeyama.h │ │ │ │ │ └── arch │ │ │ │ │ │ └── Geometry_SSE.h │ │ │ │ │ ├── Householder │ │ │ │ │ ├── BlockHouseholder.h │ │ │ │ │ ├── Householder.h │ │ │ │ │ └── HouseholderSequence.h │ │ │ │ │ ├── IterativeLinearSolvers │ │ │ │ │ ├── BasicPreconditioners.h │ │ │ │ │ ├── BiCGSTAB.h │ │ │ │ │ ├── ConjugateGradient.h │ │ │ │ │ ├── IncompleteCholesky.h │ │ │ │ │ ├── IncompleteLUT.h │ │ │ │ │ ├── IterativeSolverBase.h │ │ │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ │ │ └── SolveWithGuess.h │ │ │ │ │ ├── Jacobi │ │ │ │ │ └── Jacobi.h │ │ │ │ │ ├── LU │ │ │ │ │ ├── Determinant.h │ │ │ │ │ ├── FullPivLU.h │ │ │ │ │ ├── Inverse.h │ │ │ │ │ ├── InverseImpl.h │ │ │ │ │ ├── PartialPivLU.h │ │ │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ │ │ ├── PartialPivLU_MKL.h │ │ │ │ │ └── arch │ │ │ │ │ │ └── Inverse_SSE.h │ │ │ │ │ ├── MetisSupport │ │ │ │ │ └── MetisSupport.h │ │ │ │ │ ├── OrderingMethods │ │ │ │ │ ├── Amd.h │ │ │ │ │ ├── Eigen_Colamd.h │ │ │ │ │ └── Ordering.h │ │ │ │ │ ├── PaStiXSupport │ │ │ │ │ └── PaStiXSupport.h │ │ │ │ │ ├── PardisoSupport │ │ │ │ │ └── PardisoSupport.h │ │ │ │ │ ├── QR │ │ │ │ │ ├── ColPivHouseholderQR.h │ │ │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ │ │ ├── ColPivHouseholderQR_MKL.h │ │ │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ │ │ ├── FullPivHouseholderQR.h │ │ │ │ │ ├── HouseholderQR.h │ │ │ │ │ ├── HouseholderQR_LAPACKE.h │ │ │ │ │ └── HouseholderQR_MKL.h │ │ │ │ │ ├── SPQRSupport │ │ │ │ │ └── SuiteSparseQRSupport.h │ │ │ │ │ ├── SVD │ │ │ │ │ ├── BDCSVD.h │ │ │ │ │ ├── JacobiSVD.h │ │ │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ │ │ ├── JacobiSVD_MKL.h │ │ │ │ │ ├── SVDBase.h │ │ │ │ │ └── UpperBidiagonalization.h │ │ │ │ │ ├── SparseCholesky │ │ │ │ │ ├── SimplicialCholesky.h │ │ │ │ │ └── SimplicialCholesky_impl.h │ │ │ │ │ ├── SparseCore │ │ │ │ │ ├── AmbiVector.h │ │ │ │ │ ├── CompressedStorage.h │ │ │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ │ │ ├── MappedSparseMatrix.h │ │ │ │ │ ├── SparseAssign.h │ │ │ │ │ ├── SparseBlock.h │ │ │ │ │ ├── SparseColEtree.h │ │ │ │ │ ├── SparseCompressedBase.h │ │ │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ │ │ ├── SparseDenseProduct.h │ │ │ │ │ ├── SparseDiagonalProduct.h │ │ │ │ │ ├── SparseDot.h │ │ │ │ │ ├── SparseFuzzy.h │ │ │ │ │ ├── SparseMap.h │ │ │ │ │ ├── SparseMatrix.h │ │ │ │ │ ├── SparseMatrixBase.h │ │ │ │ │ ├── SparsePermutation.h │ │ │ │ │ ├── SparseProduct.h │ │ │ │ │ ├── SparseRedux.h │ │ │ │ │ ├── SparseRef.h │ │ │ │ │ ├── SparseSelfAdjointView.h │ │ │ │ │ ├── SparseSolverBase.h │ │ │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ │ │ ├── SparseTranspose.h │ │ │ │ │ ├── SparseTriangularView.h │ │ │ │ │ ├── SparseUtil.h │ │ │ │ │ ├── SparseVector.h │ │ │ │ │ ├── SparseView.h │ │ │ │ │ └── TriangularSolver.h │ │ │ │ │ ├── SparseLU │ │ │ │ │ ├── SparseLU.h │ │ │ │ │ ├── SparseLUImpl.h │ │ │ │ │ ├── SparseLU_Memory.h │ │ │ │ │ ├── SparseLU_Structs.h │ │ │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ │ │ ├── SparseLU_Utils.h │ │ │ │ │ ├── SparseLU_column_bmod.h │ │ │ │ │ ├── SparseLU_column_dfs.h │ │ │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ │ │ ├── SparseLU_panel_bmod.h │ │ │ │ │ ├── SparseLU_panel_dfs.h │ │ │ │ │ ├── SparseLU_pivotL.h │ │ │ │ │ ├── SparseLU_pruneL.h │ │ │ │ │ └── SparseLU_relax_snode.h │ │ │ │ │ ├── SparseQR │ │ │ │ │ └── SparseQR.h │ │ │ │ │ ├── StlSupport │ │ │ │ │ ├── StdDeque.h │ │ │ │ │ ├── StdList.h │ │ │ │ │ ├── StdVector.h │ │ │ │ │ └── details.h │ │ │ │ │ ├── SuperLUSupport │ │ │ │ │ └── SuperLUSupport.h │ │ │ │ │ ├── UmfPackSupport │ │ │ │ │ └── UmfPackSupport.h │ │ │ │ │ ├── misc │ │ │ │ │ ├── Image.h │ │ │ │ │ ├── Kernel.h │ │ │ │ │ ├── RealSvd2x2.h │ │ │ │ │ ├── Solve.h │ │ │ │ │ ├── SparseSolve.h │ │ │ │ │ ├── blas.h │ │ │ │ │ ├── lapack.h │ │ │ │ │ ├── lapacke.h │ │ │ │ │ └── lapacke_mangling.h │ │ │ │ │ └── plugins │ │ │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ │ │ ├── BlockMethods.h │ │ │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ │ │ └── MatrixCwiseUnaryOps.h │ │ │ ├── glvu │ │ │ │ ├── .DS_Store │ │ │ │ ├── camera.h │ │ │ │ ├── glvu.cpp │ │ │ │ ├── glvu.h │ │ │ │ ├── glvu.o │ │ │ │ ├── glvuMat16fv.h │ │ │ │ ├── glvuVec3f.h │ │ │ │ ├── glvuVec3fv.h │ │ │ │ ├── snapshot.h │ │ │ │ ├── text.h │ │ │ │ └── trackball.h │ │ │ └── stlplus3 │ │ │ │ ├── .DS_Store │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── file_system.cpp │ │ │ │ ├── file_system.hpp │ │ │ │ ├── portability_fixes.cpp │ │ │ │ ├── portability_fixes.hpp │ │ │ │ ├── wildcard.cpp │ │ │ │ └── wildcard.hpp │ │ ├── obstacles │ │ │ ├── boundary_paddle_master.txt │ │ │ ├── box1.txt │ │ │ ├── box2.txt │ │ │ ├── boxes.jpg │ │ │ ├── boxes1.jpg │ │ │ ├── concave.jpg │ │ │ ├── concave1.jpg │ │ │ ├── cylinde_direct.txt │ │ │ ├── cylinde_direct_pos.txt │ │ │ ├── cylinde_paddle.txt │ │ │ ├── cylinder_interact │ │ │ │ ├── cylinder_interact.txt │ │ │ │ └── cylinder_interact_list.txt │ │ │ ├── cylinder_middle_big.txt │ │ │ ├── cylinder_small │ │ │ │ ├── cylinder_small1.txt │ │ │ │ ├── cylinder_small10.txt │ │ │ │ ├── cylinder_small11.txt │ │ │ │ ├── cylinder_small12.txt │ │ │ │ ├── cylinder_small2.txt │ │ │ │ ├── cylinder_small3.txt │ │ │ │ ├── cylinder_small4.txt │ │ │ │ ├── cylinder_small5.txt │ │ │ │ ├── cylinder_small6.txt │ │ │ │ ├── cylinder_small7.txt │ │ │ │ ├── cylinder_small7_1.txt │ │ │ │ ├── cylinder_small8.txt │ │ │ │ └── cylinder_small9.txt │ │ │ ├── cylinder_small_list.txt │ │ │ ├── cylinder_static.txt │ │ │ ├── cylinder_static1.txt │ │ │ ├── cylinder_static2.txt │ │ │ ├── cylinder_static3.txt │ │ │ ├── cylinder_static4.txt │ │ │ ├── cylinder_static5.txt │ │ │ ├── cylinder_static6.txt │ │ │ ├── cylinder_static_horizontal.txt │ │ │ ├── moving_sphere.txt │ │ │ ├── multiple_plumes.txt │ │ │ ├── obstacle_list_six_cylinder.txt │ │ │ ├── obstacle_master.txt │ │ │ ├── obstacle_master_movingsphere.txt │ │ │ ├── obstacle_paddle.txt │ │ │ ├── random.jpg │ │ │ ├── single_cylinder_comparison.txt │ │ │ ├── small_sphere1.txt │ │ │ ├── small_sphere2.txt │ │ │ ├── small_sphere3.txt │ │ │ ├── small_sphere4.txt │ │ │ ├── small_sphere5.txt │ │ │ ├── small_sphere6.txt │ │ │ ├── sphere.jpg │ │ │ ├── sphere.txt │ │ │ ├── sphere_center.txt │ │ │ └── triangle.jpg │ │ ├── precompute_2Dtensor.pl │ │ ├── precompute_3Dtensor.pl │ │ ├── run_fluid2D.perl │ │ ├── run_stam.perl │ │ ├── scripts │ │ │ ├── Anacomp.nb │ │ │ ├── CompTOneNeumann.m │ │ │ ├── CompVariationalDirichlet.m │ │ │ ├── CompVariationalOneNeumann.m │ │ │ ├── ComputeError.m │ │ │ ├── ComputeTensorEntry.m │ │ │ ├── ComputeTransferMatrix.m │ │ │ ├── ComputeTwoNeumannTensor.m │ │ │ ├── ComputeTwoNeumannTensorEntry.m │ │ │ ├── Dirichlet3Dparaview.m │ │ │ ├── E_visc0.0001.txt │ │ │ ├── E_visc0.0002.txt │ │ │ ├── E_visc0.txt │ │ │ ├── FourierNeumannDiffOnly.py │ │ │ ├── FourierNeumannRotation.py │ │ │ ├── FourierNeumannSkewSymm.py │ │ │ ├── Lookup.m │ │ │ ├── Output3DParaview.m │ │ │ ├── PlotErrorTest.m │ │ │ ├── TensorEntVarDirich.m │ │ │ ├── TwoNeumann.nb │ │ │ ├── Untitled-1.nb │ │ │ ├── cp_decomp_tensor.m │ │ │ ├── hist_T2_1010.txt │ │ │ ├── hist_T2_3577.txt │ │ │ ├── hist_T2_8162.txt │ │ │ ├── hist_T4_3360.txt │ │ │ ├── hist_T6_2691.txt │ │ │ ├── plot_Dedalus_energy.py │ │ │ ├── plot_basis_weight.py │ │ │ ├── plot_compressed_l2_error.py │ │ │ ├── plot_eigenValues.py │ │ │ ├── plot_energy.py │ │ │ ├── plot_energy_visc.py │ │ │ ├── plot_graph.m │ │ │ └── plot_historgram.py │ │ ├── src │ │ │ ├── 2D │ │ │ │ ├── FIELD2D.cpp │ │ │ │ ├── FIELD2D.h │ │ │ │ ├── FLUID2D.cpp │ │ │ │ ├── FLUID2D.h │ │ │ │ ├── VFIELD2D.cpp │ │ │ │ ├── VFIELD2D.h │ │ │ │ ├── all_dirichlet_basis_2D.cpp │ │ │ │ ├── all_dirichlet_basis_2D.h │ │ │ │ ├── all_dirichlet_basis_2D_test.cpp │ │ │ │ ├── basis_lookup_2D.cpp │ │ │ │ ├── basis_lookup_2D.h │ │ │ │ ├── drawer_2d.cpp │ │ │ │ ├── drawer_2d.h │ │ │ │ ├── laplacian_basis_2D.cpp │ │ │ │ ├── laplacian_basis_2D.h │ │ │ │ ├── laplacian_fluid_2D.cpp │ │ │ │ ├── laplacian_fluid_2D.h │ │ │ │ ├── obstacle_2d.cpp │ │ │ │ ├── obstacle_2d.h │ │ │ │ ├── obstacle_2d_test.cpp │ │ │ │ ├── particle_2d.h │ │ │ │ ├── three_dirichlet_one_neumann.cpp │ │ │ │ ├── three_dirichlet_one_neumann.h │ │ │ │ ├── three_dirichlet_one_neumann_test.cpp │ │ │ │ ├── two_neumann_basis_2D.cpp │ │ │ │ ├── two_neumann_basis_2D.h │ │ │ │ ├── two_neumann_x_2D.cpp │ │ │ │ ├── two_neumann_x_2D.h │ │ │ │ └── two_neumann_x_2D_test.cpp │ │ │ ├── 3D │ │ │ │ ├── FIELD_3D.cpp │ │ │ │ ├── FIELD_3D.h │ │ │ │ ├── FLUID_3D_MIC.cpp │ │ │ │ ├── FLUID_3D_MIC.h │ │ │ │ ├── Ted_obstacle.h │ │ │ │ ├── VECTOR3_FIELD_3D.cpp │ │ │ │ ├── VECTOR3_FIELD_3D.h │ │ │ │ ├── density_warpper.cpp │ │ │ │ ├── density_warpper.h │ │ │ │ ├── dirichlet_basis_3d.cpp │ │ │ │ ├── dirichlet_basis_3d.h │ │ │ │ ├── dirichlet_basis_set_3d.cpp │ │ │ │ ├── dirichlet_basis_set_3d.h │ │ │ │ ├── dirichlet_basis_set_3d_test.cpp │ │ │ │ ├── drawer_3d.cpp │ │ │ │ ├── drawer_3d.h │ │ │ │ ├── fluid_3D_DCT.cpp │ │ │ │ ├── fluid_3D_DCT.h │ │ │ │ ├── four_neumann_basis_3d.cpp │ │ │ │ ├── four_neumann_basis_3d.h │ │ │ │ ├── four_neumann_basis_set_3d.cpp │ │ │ │ ├── four_neumann_basis_set_3d.h │ │ │ │ ├── four_neumann_basis_set_3d_test.cpp │ │ │ │ ├── laplacian_basis_3d.h │ │ │ │ ├── laplacian_basis_set_3d.cpp │ │ │ │ ├── laplacian_basis_set_3d.h │ │ │ │ ├── laplacian_fluid_3d.cpp │ │ │ │ ├── laplacian_fluid_3d.h │ │ │ │ ├── obstacle_3d.h │ │ │ │ ├── obstacle_box_3d.cpp │ │ │ │ ├── obstacle_box_3d.h │ │ │ │ ├── obstacle_cylinder_3d.cpp │ │ │ │ ├── obstacle_cylinder_3d.h │ │ │ │ ├── obstacle_cylinder_interact.cpp │ │ │ │ ├── obstacle_cylinder_interact.h │ │ │ │ ├── obstacle_cylinder_static_3d.cpp │ │ │ │ ├── obstacle_cylinder_static_3d.h │ │ │ │ ├── obstacle_sphere_3d.cpp │ │ │ │ ├── obstacle_sphere_3d.h │ │ │ │ ├── obstacle_wrapper_3d.cpp │ │ │ │ ├── obstacle_wrapper_3d.h │ │ │ │ ├── one_neumann_basis_3d.cpp │ │ │ │ ├── one_neumann_basis_3d.h │ │ │ │ ├── one_neumann_basis_set_3d.cpp │ │ │ │ ├── one_neumann_basis_set_3d.h │ │ │ │ ├── one_neumann_basis_set_3d_test.cpp │ │ │ │ ├── particle_3d.cpp │ │ │ │ ├── particle_3d.h │ │ │ │ ├── six_neumann_basis_3d.cpp │ │ │ │ ├── six_neumann_basis_3d.h │ │ │ │ ├── six_neumann_basis_set_3d.cpp │ │ │ │ ├── six_neumann_basis_set_3d.h │ │ │ │ ├── six_neumann_basis_set_3d_test.cpp │ │ │ │ ├── trig_integral_3d.cpp │ │ │ │ ├── trig_integral_3d.h │ │ │ │ ├── trig_integral_3d_test.cpp │ │ │ │ ├── two_neumann_x_3d_basis.cpp │ │ │ │ ├── two_neumann_x_3d_basis.h │ │ │ │ ├── two_neumann_x_3d_basis_set.cpp │ │ │ │ ├── two_neumann_x_3d_basis_set.h │ │ │ │ └── two_neumann_x_3d_basis_set_test.cpp │ │ │ ├── Alg │ │ │ │ ├── MATRIX3.cpp │ │ │ │ ├── MATRIX3.h │ │ │ │ ├── VEC2.h │ │ │ │ ├── VEC3.h │ │ │ │ ├── VECTOR.cpp │ │ │ │ └── VECTOR.h │ │ │ ├── CMakeLists.txt │ │ │ ├── setting.h │ │ │ ├── solver │ │ │ │ ├── integrator_2d.cpp │ │ │ │ ├── integrator_2d.h │ │ │ │ ├── integrator_RK4.cpp │ │ │ │ ├── integrator_RK4.h │ │ │ │ ├── integrator_semi_implicit.cpp │ │ │ │ ├── integrator_semi_implicit.h │ │ │ │ ├── obstacle_solver.cpp │ │ │ │ ├── obstacle_solver.h │ │ │ │ ├── trapezoidal.cpp │ │ │ │ └── trapezoidal.h │ │ │ └── util │ │ │ │ ├── QUICKTIME_MOVIE.h │ │ │ │ ├── SIMPLE_PARSER.cpp │ │ │ │ ├── SIMPLE_PARSER.h │ │ │ │ ├── block_3d_dct.cpp │ │ │ │ ├── block_3d_dct.h │ │ │ │ ├── get_current_time.h │ │ │ │ ├── glPrintString.cpp │ │ │ │ ├── glPrintString.h │ │ │ │ ├── read_write_tensor.cpp │ │ │ │ ├── read_write_tensor.h │ │ │ │ ├── solve_quadratic.cpp │ │ │ │ ├── solve_quadratic.h │ │ │ │ ├── stringprintf.cc │ │ │ │ ├── stringprintf.h │ │ │ │ ├── timer.cpp │ │ │ │ ├── timer.h │ │ │ │ ├── trackball.cpp │ │ │ │ ├── trackball.h │ │ │ │ ├── util.cpp │ │ │ │ ├── util.h │ │ │ │ ├── write_density_pbrt.cpp │ │ │ │ └── write_density_pbrt.h │ │ ├── stam.flags │ │ └── ted_cfgs │ │ │ ├── fluid_DCT.cfg │ │ │ ├── paddle.cfg │ │ │ ├── small_cylinders.cfg │ │ │ └── stam.64.cfg │ └── note.md ├── flux │ └── flux_code │ │ ├── facecutter.h │ │ └── main.cpp ├── perceptual │ └── code │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Doxyfile.in │ │ ├── INSTALLING │ │ ├── dependencies │ │ └── zlib-1.2.8 │ │ │ ├── adler32.c │ │ │ ├── compress.c │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── gzclose.c │ │ │ ├── gzguts.h │ │ │ ├── gzlib.c │ │ │ ├── gzread.c │ │ │ ├── gzwrite.c │ │ │ ├── infback.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── zconf.h │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ ├── resources │ │ ├── help.png │ │ ├── keyboard.png │ │ ├── pause.png │ │ ├── play.png │ │ ├── res.qrc │ │ └── stop.png │ │ ├── scenes │ │ ├── grid_apic.py │ │ ├── grid_flip.py │ │ ├── grid_lsm.py │ │ ├── grid_mp.py │ │ ├── sph_ii.py │ │ ├── sph_wbc.py │ │ └── sph_wc.py │ │ ├── source │ │ ├── commonkernels.h │ │ ├── conjugategrad.cpp │ │ ├── conjugategrad.h │ │ ├── cuda │ │ │ ├── buoyancy.cu │ │ │ ├── cudatools.h │ │ │ ├── curlnoise.cu │ │ │ ├── curlnoise.h │ │ │ ├── meshtools.cu │ │ │ ├── particle.cu │ │ │ └── turbulence.cu │ │ ├── edgecollapse.cpp │ │ ├── edgecollapse.h │ │ ├── fastmarch.cpp │ │ ├── fastmarch.h │ │ ├── fileio.cpp │ │ ├── fileio.h │ │ ├── fluidsolver.cpp │ │ ├── fluidsolver.h │ │ ├── general.cpp │ │ ├── general.h │ │ ├── grid.cpp │ │ ├── grid.h │ │ ├── grid4d.cpp │ │ ├── grid4d.h │ │ ├── gui │ │ │ ├── customctrl.cpp │ │ │ ├── customctrl.h │ │ │ ├── glwidget.cpp │ │ │ ├── glwidget.h │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ ├── meshpainter.cpp │ │ │ ├── meshpainter.h │ │ │ ├── painter.cpp │ │ │ ├── painter.h │ │ │ ├── particlepainter.cpp │ │ │ ├── particlepainter.h │ │ │ ├── qtmain.cpp │ │ │ └── qtmain.h │ │ ├── kernel.cpp │ │ ├── kernel.h │ │ ├── levelset.cpp │ │ ├── levelset.h │ │ ├── mesh.cpp │ │ ├── mesh.h │ │ ├── movingobs.cpp │ │ ├── movingobs.h │ │ ├── multigrid.cpp │ │ ├── multigrid.h │ │ ├── noisefield.cpp │ │ ├── noisefield.h │ │ ├── nopython │ │ │ ├── manta.h │ │ │ ├── pclass.cpp │ │ │ └── pclass.h │ │ ├── particle.cpp │ │ ├── particle.h │ │ ├── plugin │ │ │ ├── advection.cpp │ │ │ ├── apic.cpp │ │ │ ├── extforces.cpp │ │ │ ├── fire.cpp │ │ │ ├── flip.cpp │ │ │ ├── fluidguiding.cpp │ │ │ ├── initplugins.cpp │ │ │ ├── kepsilon.cpp │ │ │ ├── meshplugins.cpp │ │ │ ├── pressure.cpp │ │ │ ├── sph.cpp │ │ │ ├── surfaceturbulence.cpp │ │ │ ├── vortexplugins.cpp │ │ │ ├── waveletturbulence.cpp │ │ │ └── waves.cpp │ │ ├── pneighbors.cpp │ │ ├── pneighbors.h │ │ ├── preprocessor │ │ │ ├── code.cpp │ │ │ ├── code.h │ │ │ ├── codegen_kernel.cpp │ │ │ ├── codegen_python.cpp │ │ │ ├── main.cpp │ │ │ ├── merge.cpp │ │ │ ├── parse.cpp │ │ │ ├── prep.h │ │ │ ├── tokenize.cpp │ │ │ ├── tokenize.h │ │ │ ├── util.cpp │ │ │ └── util.h │ │ ├── pwrapper │ │ │ ├── manta.h │ │ │ ├── pclass.cpp │ │ │ ├── pclass.h │ │ │ ├── pconvert.cpp │ │ │ ├── pconvert.h │ │ │ ├── pvec3.cpp │ │ │ ├── pymain.cpp │ │ │ ├── pythonInclude.h │ │ │ ├── registry.cpp │ │ │ └── registry.h │ │ ├── python │ │ │ └── defines.py │ │ ├── shapes.cpp │ │ ├── shapes.h │ │ ├── sphkernel.h │ │ ├── sphsolver.h │ │ ├── test.cpp │ │ ├── timing.cpp │ │ ├── timing.h │ │ ├── turbulencepart.cpp │ │ ├── turbulencepart.h │ │ ├── util │ │ │ ├── integrator.h │ │ │ ├── interpol.h │ │ │ ├── interpolHigh.h │ │ │ ├── matrixbase.h │ │ │ ├── mcubes.h │ │ │ ├── quaternion.h │ │ │ ├── randomstream.h │ │ │ ├── rcmatrix.h │ │ │ ├── simpleimage.cpp │ │ │ ├── simpleimage.h │ │ │ ├── solvana.h │ │ │ ├── vector4d.cpp │ │ │ ├── vector4d.h │ │ │ ├── vectorbase.cpp │ │ │ └── vectorbase.h │ │ ├── vortexpart.cpp │ │ ├── vortexpart.h │ │ ├── vortexsheet.cpp │ │ └── vortexsheet.h │ │ └── tools │ │ ├── cmake │ │ └── FindTBB.cmake │ │ ├── getGitVersion.py │ │ ├── maya │ │ ├── AEbobjFluidObjectTemplate.mel │ │ ├── AEfluidGridObjectTemplate.mel │ │ ├── Makefile │ │ ├── README.txt │ │ ├── bobjFluidObject.cpp │ │ ├── bobjloader.mll │ │ ├── bobjloader.vcxproj │ │ ├── buildconfig.linux │ │ ├── buildconfig.osx │ │ ├── createBobjLoader.mel │ │ ├── createDensityLoader.mel │ │ ├── densityloader.cpp │ │ ├── densityloader.mll │ │ ├── densityloader.vcxproj │ │ └── mayaplugins.sln │ │ ├── sh_scripts │ │ ├── plot.particles.sh │ │ └── plot.sh │ │ ├── testdata │ │ └── readme.txt │ │ ├── testdataDouble │ │ └── readme.txt │ │ └── tests │ │ ├── helperBuildInfo.py │ │ ├── helperGeneric.py │ │ ├── helperInclude.py │ │ ├── reader.py │ │ ├── runTests.py │ │ ├── test_0010_io.py │ │ ├── test_0011_inverted.py │ │ ├── test_0020_shapes.py │ │ ├── test_0030_gridop.py │ │ ├── test_0032_grid4dop.py │ │ ├── test_0040_interpol2d.py │ │ ├── test_0041_interpol3d.py │ │ ├── test_0042_interpol4d.py │ │ ├── test_0050_meshload.obj │ │ ├── test_0050_meshload.py │ │ ├── test_0100_psolve.py │ │ ├── test_0110_mgsolve.py │ │ ├── test_0500_pdataop.py │ │ ├── test_1010_plume2d.py │ │ ├── test_1020_uvs.py │ │ ├── test_1030_waveeq.py │ │ ├── test_1040_secOrderBnd.py │ │ ├── test_1050_guiding2d.py │ │ ├── test_1070_flip2d.py │ │ ├── test_1075_secorderBndFlip.py │ │ ├── test_2005_symmAdv.py │ │ ├── test_2010_plume3d.py │ │ ├── test_2011_plume3d_open.py │ │ ├── test_2020_obstacle.py │ │ ├── test_2025_turb.py │ │ ├── test_2045_fallingDrop.py │ │ ├── test_2050_freesurface.py │ │ ├── test_2065_partIo.py │ │ ├── test_2070_falldropFlip.py │ │ ├── test_2075_flipBrdam.py │ │ ├── test_2080_nb.py │ │ └── test_2100_surfTurb.py └── waveletTurbulence │ ├── waveTurbulence.py │ └── wavelet_turbulence │ ├── EIGENVALUE_HELPER.h │ ├── FLUID_3D.cpp │ ├── FLUID_3D.h │ ├── FLUID_3D_SOLVERS.cpp │ ├── FLUID_3D_STATIC.cpp │ ├── IMAGE.h │ ├── INTERPOLATE.h │ ├── LICENSE.txt │ ├── LU_HELPER.h │ ├── MERSENNETWISTER.h │ ├── Makefile.FFT │ ├── Makefile.cygwin │ ├── Makefile.linux │ ├── Makefile.mac │ ├── OBSTACLE.h │ ├── SPHERE.cpp │ ├── SPHERE.h │ ├── VEC3.h │ ├── WAVELET_NOISE.h │ ├── WTURBULENCE.cpp │ ├── WTURBULENCE.h │ ├── main.cpp │ ├── main.o │ ├── noiseFFT.cpp │ ├── render │ ├── render.pl │ └── scene.pbrt │ └── tnt │ ├── jama_eig.h │ ├── jama_lu.h │ ├── tnt.h │ ├── tnt_array1d.h │ ├── tnt_array1d_utils.h │ ├── tnt_array2d.h │ ├── tnt_array2d_utils.h │ ├── tnt_array3d.h │ ├── tnt_array3d_utils.h │ ├── tnt_cmat.h │ ├── tnt_fortran_array1d.h │ ├── tnt_fortran_array1d_utils.h │ ├── tnt_fortran_array2d.h │ ├── tnt_fortran_array2d_utils.h │ ├── tnt_fortran_array3d.h │ ├── tnt_fortran_array3d_utils.h │ ├── tnt_i_refvec.h │ ├── tnt_math_utils.h │ ├── tnt_sparse_matrix_csr.h │ ├── tnt_stopwatch.h │ ├── tnt_subscript.h │ ├── tnt_vec.h │ └── tnt_version.h └── Waves └── PhysicsOfOscillationsAndWaves ├── ch13Diffraction ├── allocateArrays.m ├── diffraction.m ├── generateExcitation.m ├── generateRelPositionData.m ├── linewidth.m ├── parameters.m ├── plotDiffraction.m ├── plotTheoreticalSingleSlit.m ├── summation.m └── writeToFile.m ├── ch15Coherence ├── antennaDiagram3.m └── crossCorrAbs.m ├── ch8Dispersion ├── pg_animer.m ├── pg_fft.m ├── pg_omega.m ├── pg_wave.m └── pg_wpack.m ├── diffraction.py ├── phase_and_group.py ├── trost_wavelet.py ├── wave_time_propagation.py └── wavelet_example.py /Bubble/AcousticBubbles/bubble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Bubble/AcousticBubbles/bubble.py -------------------------------------------------------------------------------- /Bubble/boiling/Boiling.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Bubble/boiling/Boiling.sln -------------------------------------------------------------------------------- /Bubble/boiling/Boiling.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Bubble/boiling/Boiling.vcproj -------------------------------------------------------------------------------- /Bubble/boiling/ExtendedYanagita.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Bubble/boiling/ExtendedYanagita.h -------------------------------------------------------------------------------- /Bubble/boiling/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Bubble/boiling/Makefile -------------------------------------------------------------------------------- /Bubble/boiling/OriginalYanagita.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Bubble/boiling/OriginalYanagita.h -------------------------------------------------------------------------------- /Bubble/boiling/boiling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Bubble/boiling/boiling.cpp -------------------------------------------------------------------------------- /Deformation/Practicalities/ARAP_Hessian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/Practicalities/ARAP_Hessian.m -------------------------------------------------------------------------------- /Deformation/Practicalities/DRDF_Clean_2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/Practicalities/DRDF_Clean_2D.m -------------------------------------------------------------------------------- /Deformation/Practicalities/DRDF_Clean_3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/Practicalities/DRDF_Clean_3D.m -------------------------------------------------------------------------------- /Deformation/Practicalities/DRDF_Column.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/Practicalities/DRDF_Column.m -------------------------------------------------------------------------------- /Deformation/Practicalities/DRDF_Horrible.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/Practicalities/DRDF_Horrible.m -------------------------------------------------------------------------------- /Deformation/Practicalities/Get_SNH_System.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/Practicalities/Get_SNH_System.m -------------------------------------------------------------------------------- /Deformation/Practicalities/InFaceRegion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/Practicalities/InFaceRegion.m -------------------------------------------------------------------------------- /Deformation/Practicalities/PFPx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/Practicalities/PFPx.cpp -------------------------------------------------------------------------------- /Deformation/Practicalities/__MACOSX/._vec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/Practicalities/__MACOSX/._vec.m -------------------------------------------------------------------------------- /Deformation/Practicalities/cube_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/Practicalities/cube_cache.cpp -------------------------------------------------------------------------------- /Deformation/Practicalities/experimenting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/Practicalities/experimenting.m -------------------------------------------------------------------------------- /Deformation/Practicalities/flatten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/Practicalities/flatten.cpp -------------------------------------------------------------------------------- /Deformation/Practicalities/gradientJ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/Practicalities/gradientJ.m -------------------------------------------------------------------------------- /Deformation/Practicalities/hessianJ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/Practicalities/hessianJ.m -------------------------------------------------------------------------------- /Deformation/Practicalities/svd_rv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/Practicalities/svd_rv.m -------------------------------------------------------------------------------- /Deformation/Practicalities/vec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/Practicalities/vec.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/README -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/alligator.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/alligator.obj -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/alligator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/alligator.png -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/avgedge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/avgedge.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/barycenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/barycenter.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/bbw_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/bbw_demo.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/cotmatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/cotmatrix.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/cotmatrix3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/cotmatrix3.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/doublearea.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/doublearea.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/dualquatlbs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/dualquatlbs.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/edges.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/edges.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/lbs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/lbs.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/limit_faces.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/limit_faces.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/load_mesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/load_mesh.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/mask2poly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/mask2poly.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/massmatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/massmatrix.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/massmatrix3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/massmatrix3.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/normrow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/normrow.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/outline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/outline.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/png2mesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/png2mesh.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/png2poly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/png2poly.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/poly2VEH.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/poly2VEH.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/quat2mat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/quat2mat.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/readEDGE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/readEDGE.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/readELE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/readELE.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/readNODE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/readNODE.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/readOBJ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/readOBJ.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/readOBJfast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/readOBJfast.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/readOFF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/readOFF.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/readTGF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/readTGF.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/stacktimes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/stacktimes.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/tempprefix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/tempprefix.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/tilefigs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/tilefigs.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/triangle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/triangle.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/tsurf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/tsurf.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/upsample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/upsample.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/woody.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/woody.obj -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/woody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/woody.png -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/woody.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/woody.poly -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/writeELE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/writeELE.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/writeNODE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/writeNODE.m -------------------------------------------------------------------------------- /Deformation/boundedBiharmonic/writePOLY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/boundedBiharmonic/writePOLY.m -------------------------------------------------------------------------------- /Deformation/cubica/cubica-1.0/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/cubica/cubica-1.0/.DS_Store -------------------------------------------------------------------------------- /Deformation/cubica/cubica-1.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/cubica/cubica-1.0/Makefile -------------------------------------------------------------------------------- /Deformation/cubica/cubica-1.0/SETTINGS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/cubica/cubica-1.0/SETTINGS.h -------------------------------------------------------------------------------- /Deformation/cubica/cubica-1.0/cfg/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/cubica/cubica-1.0/cfg/.DS_Store -------------------------------------------------------------------------------- /Deformation/cubica/cubica-1.0/cfg/bunny.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/cubica/cubica-1.0/cfg/bunny.cfg -------------------------------------------------------------------------------- /Deformation/cubica/cubica-1.0/src/util/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/cubica/cubica-1.0/src/util/IO.h -------------------------------------------------------------------------------- /Deformation/dynamicDeformables/note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/dynamicDeformables/note.md -------------------------------------------------------------------------------- /Deformation/interactive/modeDef.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/interactive/modeDef.tar.gz -------------------------------------------------------------------------------- /Deformation/shapeAware/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/README -------------------------------------------------------------------------------- /Deformation/shapeAware/avgedge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/avgedge.m -------------------------------------------------------------------------------- /Deformation/shapeAware/axisangle2quat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/axisangle2quat.m -------------------------------------------------------------------------------- /Deformation/shapeAware/axisanglebetween.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/axisanglebetween.m -------------------------------------------------------------------------------- /Deformation/shapeAware/biharmonic_bounded.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/biharmonic_bounded.m -------------------------------------------------------------------------------- /Deformation/shapeAware/cactus.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/cactus.obj -------------------------------------------------------------------------------- /Deformation/shapeAware/cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/cactus.png -------------------------------------------------------------------------------- /Deformation/shapeAware/cactus_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/cactus_demo.m -------------------------------------------------------------------------------- /Deformation/shapeAware/conic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/conic.m -------------------------------------------------------------------------------- /Deformation/shapeAware/cotmatrix3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/cotmatrix3.m -------------------------------------------------------------------------------- /Deformation/shapeAware/cotmatrix_embedded.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/cotmatrix_embedded.m -------------------------------------------------------------------------------- /Deformation/shapeAware/doublearea.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/doublearea.m -------------------------------------------------------------------------------- /Deformation/shapeAware/dpsimplify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/dpsimplify.m -------------------------------------------------------------------------------- /Deformation/shapeAware/dualquatlbs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/dualquatlbs.m -------------------------------------------------------------------------------- /Deformation/shapeAware/edges.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/edges.m -------------------------------------------------------------------------------- /Deformation/shapeAware/faces_first.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/faces_first.m -------------------------------------------------------------------------------- /Deformation/shapeAware/get_control_points.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/get_control_points.m -------------------------------------------------------------------------------- /Deformation/shapeAware/grad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/grad.m -------------------------------------------------------------------------------- /Deformation/shapeAware/harmonic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/harmonic.m -------------------------------------------------------------------------------- /Deformation/shapeAware/lbs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/lbs.m -------------------------------------------------------------------------------- /Deformation/shapeAware/load_mesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/load_mesh.m -------------------------------------------------------------------------------- /Deformation/shapeAware/local_max.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/local_max.m -------------------------------------------------------------------------------- /Deformation/shapeAware/local_min.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/local_min.m -------------------------------------------------------------------------------- /Deformation/shapeAware/mark_extrema.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/mark_extrema.m -------------------------------------------------------------------------------- /Deformation/shapeAware/mask2poly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/mask2poly.m -------------------------------------------------------------------------------- /Deformation/shapeAware/massmatrix3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/massmatrix3.m -------------------------------------------------------------------------------- /Deformation/shapeAware/maxnz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/maxnz.m -------------------------------------------------------------------------------- /Deformation/shapeAware/minnz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/minnz.m -------------------------------------------------------------------------------- /Deformation/shapeAware/mosekopt.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/mosekopt.mexmaci64 -------------------------------------------------------------------------------- /Deformation/shapeAware/mskcheck.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/mskcheck.m -------------------------------------------------------------------------------- /Deformation/shapeAware/mskeflag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/mskeflag.m -------------------------------------------------------------------------------- /Deformation/shapeAware/mskerrmsg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/mskerrmsg.m -------------------------------------------------------------------------------- /Deformation/shapeAware/mskoptnam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/mskoptnam.m -------------------------------------------------------------------------------- /Deformation/shapeAware/mskoutput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/mskoutput.m -------------------------------------------------------------------------------- /Deformation/shapeAware/msksetup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/msksetup.m -------------------------------------------------------------------------------- /Deformation/shapeAware/mskstatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/mskstatus.m -------------------------------------------------------------------------------- /Deformation/shapeAware/mskwrnmsg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/mskwrnmsg.m -------------------------------------------------------------------------------- /Deformation/shapeAware/normalizerow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/normalizerow.m -------------------------------------------------------------------------------- /Deformation/shapeAware/normrow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/normrow.m -------------------------------------------------------------------------------- /Deformation/shapeAware/optimset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/optimset.m -------------------------------------------------------------------------------- /Deformation/shapeAware/png2mesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/png2mesh.m -------------------------------------------------------------------------------- /Deformation/shapeAware/png2poly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/png2poly.m -------------------------------------------------------------------------------- /Deformation/shapeAware/point.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/point.m -------------------------------------------------------------------------------- /Deformation/shapeAware/poly2VEH.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/poly2VEH.m -------------------------------------------------------------------------------- /Deformation/shapeAware/project_to_lines.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/project_to_lines.m -------------------------------------------------------------------------------- /Deformation/shapeAware/pseudoedge_dof.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/pseudoedge_dof.m -------------------------------------------------------------------------------- /Deformation/shapeAware/quadprog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/quadprog.m -------------------------------------------------------------------------------- /Deformation/shapeAware/quat2mat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/quat2mat.m -------------------------------------------------------------------------------- /Deformation/shapeAware/quatmultiply.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/quatmultiply.m -------------------------------------------------------------------------------- /Deformation/shapeAware/quattrans2udq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/quattrans2udq.m -------------------------------------------------------------------------------- /Deformation/shapeAware/readEDGE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/readEDGE.m -------------------------------------------------------------------------------- /Deformation/shapeAware/readELE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/readELE.m -------------------------------------------------------------------------------- /Deformation/shapeAware/readNODE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/readNODE.m -------------------------------------------------------------------------------- /Deformation/shapeAware/readOBJ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/readOBJ.m -------------------------------------------------------------------------------- /Deformation/shapeAware/readOBJfast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/readOBJfast.m -------------------------------------------------------------------------------- /Deformation/shapeAware/readOFF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/readOFF.m -------------------------------------------------------------------------------- /Deformation/shapeAware/repdiag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/repdiag.m -------------------------------------------------------------------------------- /Deformation/shapeAware/report_mosek_error.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/report_mosek_error.m -------------------------------------------------------------------------------- /Deformation/shapeAware/simple_deform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/simple_deform.m -------------------------------------------------------------------------------- /Deformation/shapeAware/stacktimes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/stacktimes.m -------------------------------------------------------------------------------- /Deformation/shapeAware/tempprefix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/tempprefix.m -------------------------------------------------------------------------------- /Deformation/shapeAware/tilefigs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/tilefigs.m -------------------------------------------------------------------------------- /Deformation/shapeAware/triangle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/triangle.m -------------------------------------------------------------------------------- /Deformation/shapeAware/upsample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/upsample.m -------------------------------------------------------------------------------- /Deformation/shapeAware/weights_colormap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/weights_colormap.m -------------------------------------------------------------------------------- /Deformation/shapeAware/writeELE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/writeELE.m -------------------------------------------------------------------------------- /Deformation/shapeAware/writeNODE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/writeNODE.m -------------------------------------------------------------------------------- /Deformation/shapeAware/writePOLY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/shapeAware/writePOLY.m -------------------------------------------------------------------------------- /Deformation/sharpKelvinlets/00BrushGrab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/sharpKelvinlets/00BrushGrab.py -------------------------------------------------------------------------------- /Deformation/sharpKelvinlets/code.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/sharpKelvinlets/code.zip -------------------------------------------------------------------------------- /Deformation/sharpKelvinlets/code/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/sharpKelvinlets/code/README.txt -------------------------------------------------------------------------------- /Deformation/sharpKelvinlets/code/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/sharpKelvinlets/code/common.h -------------------------------------------------------------------------------- /Deformation/sharpKelvinlets/implements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/sharpKelvinlets/implements.py -------------------------------------------------------------------------------- /Deformation/subspace/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/subspace/COPYING.txt -------------------------------------------------------------------------------- /Deformation/subspace/GreedyCubop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/subspace/GreedyCubop.cpp -------------------------------------------------------------------------------- /Deformation/subspace/GreedyCubop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/subspace/GreedyCubop.h -------------------------------------------------------------------------------- /Deformation/subspace/MATRIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/subspace/MATRIX.h -------------------------------------------------------------------------------- /Deformation/subspace/MATRIX3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/subspace/MATRIX3.cpp -------------------------------------------------------------------------------- /Deformation/subspace/MATRIX3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/subspace/MATRIX3.h -------------------------------------------------------------------------------- /Deformation/subspace/MATRIX_DEBUG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/subspace/MATRIX_DEBUG.cpp -------------------------------------------------------------------------------- /Deformation/subspace/MERSENNETWISTER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/subspace/MERSENNETWISTER.h -------------------------------------------------------------------------------- /Deformation/subspace/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/subspace/README.txt -------------------------------------------------------------------------------- /Deformation/subspace/SETTINGS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/subspace/SETTINGS.h -------------------------------------------------------------------------------- /Deformation/subspace/TYPES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/subspace/TYPES.h -------------------------------------------------------------------------------- /Deformation/subspace/VEC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/subspace/VEC3.h -------------------------------------------------------------------------------- /Deformation/subspace/VECTOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/subspace/VECTOR.h -------------------------------------------------------------------------------- /Deformation/subspace/VECTOR_DEBUG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/subspace/VECTOR_DEBUG.cpp -------------------------------------------------------------------------------- /Deformation/subspace/nnls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/subspace/nnls.cpp -------------------------------------------------------------------------------- /Deformation/subspace/nnls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/subspace/nnls.h -------------------------------------------------------------------------------- /Deformation/subspace/steve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/subspace/steve.cpp -------------------------------------------------------------------------------- /Deformation/subspace/steve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Deformation/subspace/steve.h -------------------------------------------------------------------------------- /FLIP_MPM/narrowBand/nbflip/nbflip/._COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FLIP_MPM/narrowBand/nbflip/nbflip/._COPYING -------------------------------------------------------------------------------- /FLIP_MPM/narrowBand/nbflip/nbflip/._scenes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FLIP_MPM/narrowBand/nbflip/nbflip/._scenes -------------------------------------------------------------------------------- /FLIP_MPM/narrowBand/nbflip/nbflip/._source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FLIP_MPM/narrowBand/nbflip/nbflip/._source -------------------------------------------------------------------------------- /FLIP_MPM/narrowBand/nbflip/nbflip/._tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FLIP_MPM/narrowBand/nbflip/nbflip/._tools -------------------------------------------------------------------------------- /FLIP_MPM/narrowBand/nbflip/nbflip/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FLIP_MPM/narrowBand/nbflip/nbflip/COPYING -------------------------------------------------------------------------------- /FLIP_MPM/simpleFLIP/array2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FLIP_MPM/simpleFLIP/array2.h -------------------------------------------------------------------------------- /FLIP_MPM/simpleFLIP/grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FLIP_MPM/simpleFLIP/grid.cpp -------------------------------------------------------------------------------- /FLIP_MPM/simpleFLIP/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FLIP_MPM/simpleFLIP/grid.h -------------------------------------------------------------------------------- /FLIP_MPM/simpleFLIP/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FLIP_MPM/simpleFLIP/main.cpp -------------------------------------------------------------------------------- /FLIP_MPM/simpleFLIP/nn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FLIP_MPM/simpleFLIP/nn.cpp -------------------------------------------------------------------------------- /FLIP_MPM/simpleFLIP/particles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FLIP_MPM/simpleFLIP/particles.cpp -------------------------------------------------------------------------------- /FLIP_MPM/simpleFLIP/particles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FLIP_MPM/simpleFLIP/particles.h -------------------------------------------------------------------------------- /FLIP_MPM/simpleFLIP/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FLIP_MPM/simpleFLIP/util.h -------------------------------------------------------------------------------- /FLIP_MPM/simpleFLIP/vec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FLIP_MPM/simpleFLIP/vec2.h -------------------------------------------------------------------------------- /FiniteElement/CracksDeepBlue/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FiniteElement/CracksDeepBlue/readme.md -------------------------------------------------------------------------------- /FiniteElement/Prof_C_CarStencen/2002-CC_KR-Elastoviscoplastic_FE_Analysis_in_Matlab/Software3/example1/dirichlet.dat: -------------------------------------------------------------------------------- 1 | 1 2 2 | 6 7 3 | -------------------------------------------------------------------------------- /FiniteElement/Prof_C_CarStencen/2002-CC_KR-Elastoviscoplastic_FE_Analysis_in_Matlab/Software3/example2/dirichlet.dat: -------------------------------------------------------------------------------- 1 | 11 7 2 | 7 4 3 | 4 2 4 | 2 1 5 | -------------------------------------------------------------------------------- /FiniteElement/Prof_C_CarStencen/2002-CC_KR-Elastoviscoplastic_FE_Analysis_in_Matlab/Software3/example3/dirichlet.dat: -------------------------------------------------------------------------------- 1 | 4 11 2 | 8 1 3 | -------------------------------------------------------------------------------- /FiniteElement/Prof_C_CarStencen/2005-CB_CC-three_RT-MFEM_with_error_control/Software4/CRmfem/Dirichlet.dat: -------------------------------------------------------------------------------- 1 | % dirichlet.dat 2 | 1 2 3 | 8 1 4 | 5 | -------------------------------------------------------------------------------- /FiniteElement/Prof_C_CarStencen/2005-CB_CC-three_RT-MFEM_with_error_control/Software4/EBmfem/dirichlet.dat: -------------------------------------------------------------------------------- 1 | % dirichlet.dat 2 | 1 2 3 | 8 1 4 | 5 | -------------------------------------------------------------------------------- /FiniteElement/Prof_C_CarStencen/2005-CB_CC-three_RT-MFEM_with_error_control/Software4/LMmfem/dirichlet.dat: -------------------------------------------------------------------------------- 1 | % dirichlet.dat 2 | 1 2 3 | 8 1 4 | 5 | -------------------------------------------------------------------------------- /FiniteElement/Prof_C_CarStencen/note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FiniteElement/Prof_C_CarStencen/note.md -------------------------------------------------------------------------------- /FiniteElement/Prof_C_CarStencen/黏弹性.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FiniteElement/Prof_C_CarStencen/黏弹性.md -------------------------------------------------------------------------------- /FiniteElement/galerkin0/codes/codes/Dhat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FiniteElement/galerkin0/codes/codes/Dhat.m -------------------------------------------------------------------------------- /FiniteElement/galerkin0/codes/codes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FiniteElement/galerkin0/codes/codes/README -------------------------------------------------------------------------------- /FiniteElement/galerkin0/codes/codes/c_acc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FiniteElement/galerkin0/codes/codes/c_acc.m -------------------------------------------------------------------------------- /FiniteElement/galerkin0/codes/codes/cfast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FiniteElement/galerkin0/codes/codes/cfast.m -------------------------------------------------------------------------------- /FiniteElement/galerkin0/codes/codes/zwgll.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FiniteElement/galerkin0/codes/codes/zwgll.m -------------------------------------------------------------------------------- /FiniteElement/galerkin0/me528.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FiniteElement/galerkin0/me528.pdf -------------------------------------------------------------------------------- /FiniteElement/jburkardt/dg1d_heat/Advec1D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FiniteElement/jburkardt/dg1d_heat/Advec1D.m -------------------------------------------------------------------------------- /FiniteElement/jburkardt/dg1d_heat/Heat1D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FiniteElement/jburkardt/dg1d_heat/Heat1D.m -------------------------------------------------------------------------------- /FiniteElement/jburkardt/dg1d_heat/JacobiP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FiniteElement/jburkardt/dg1d_heat/JacobiP.m -------------------------------------------------------------------------------- /FiniteElement/jburkardt/dg1d_heat/Lift1D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FiniteElement/jburkardt/dg1d_heat/Lift1D.m -------------------------------------------------------------------------------- /FireFlameSmoke/compress/CFS_PLUME.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FireFlameSmoke/compress/CFS_PLUME.tar.gz -------------------------------------------------------------------------------- /FireFlameSmoke/compress/DCT1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FireFlameSmoke/compress/DCT1D.py -------------------------------------------------------------------------------- /FireFlameSmoke/compress/note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FireFlameSmoke/compress/note.md -------------------------------------------------------------------------------- /FluidSolidInteraction/piston/flu_mass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FluidSolidInteraction/piston/flu_mass.m -------------------------------------------------------------------------------- /FluidSolidInteraction/piston/fluid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FluidSolidInteraction/piston/fluid.m -------------------------------------------------------------------------------- /FluidSolidInteraction/piston/flux.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FluidSolidInteraction/piston/flux.m -------------------------------------------------------------------------------- /FluidSolidInteraction/piston/integ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FluidSolidInteraction/piston/integ.m -------------------------------------------------------------------------------- /FluidSolidInteraction/piston/main_fsi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FluidSolidInteraction/piston/main_fsi.m -------------------------------------------------------------------------------- /FluidSolidInteraction/piston/move_mesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FluidSolidInteraction/piston/move_mesh.m -------------------------------------------------------------------------------- /FluidSolidInteraction/piston/pressure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FluidSolidInteraction/piston/pressure.m -------------------------------------------------------------------------------- /FluidSolidInteraction/piston/spring.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FluidSolidInteraction/piston/spring.m -------------------------------------------------------------------------------- /FluidSolidInteraction/piston/structure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FluidSolidInteraction/piston/structure.m -------------------------------------------------------------------------------- /FluidSolidInteraction/piston/timestep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FluidSolidInteraction/piston/timestep.m -------------------------------------------------------------------------------- /FluidSolidInteraction/resim/ZEPHYR/src/Eigen/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FluidSolidInteraction/resim/ZEPHYR/src/Eigen/scripts/debug.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Debug . 4 | -------------------------------------------------------------------------------- /FluidSolidInteraction/resim/ZEPHYR/src/Eigen/scripts/release.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Release . 4 | -------------------------------------------------------------------------------- /FrontTracking/DNS-Solver.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/DNS-Solver.pdf -------------------------------------------------------------------------------- /FrontTracking/LevelSetSculpt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/LevelSetSculpt/main.cpp -------------------------------------------------------------------------------- /FrontTracking/skin/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/skin/src/Makefile -------------------------------------------------------------------------------- /FrontTracking/skin/src/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/skin/src/README.TXT -------------------------------------------------------------------------------- /FrontTracking/skin/src/kdTree.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/skin/src/kdTree.H -------------------------------------------------------------------------------- /FrontTracking/skin/src/kdTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/skin/src/kdTree.cpp -------------------------------------------------------------------------------- /FrontTracking/skin/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/skin/src/main.cpp -------------------------------------------------------------------------------- /FrontTracking/skin/src/marchingCube.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/skin/src/marchingCube.H -------------------------------------------------------------------------------- /FrontTracking/skin/src/marchingCube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/skin/src/marchingCube.cpp -------------------------------------------------------------------------------- /FrontTracking/skin/src/particleIO.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/skin/src/particleIO.H -------------------------------------------------------------------------------- /FrontTracking/skin/src/particleIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/skin/src/particleIO.cpp -------------------------------------------------------------------------------- /FrontTracking/skin/src/slMatrix.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/skin/src/slMatrix.H -------------------------------------------------------------------------------- /FrontTracking/skin/src/slMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/skin/src/slMatrix.cpp -------------------------------------------------------------------------------- /FrontTracking/skin/src/slUtil.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/skin/src/slUtil.H -------------------------------------------------------------------------------- /FrontTracking/skin/src/slUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/skin/src/slUtil.cpp -------------------------------------------------------------------------------- /FrontTracking/skin/src/slVector.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/skin/src/slVector.H -------------------------------------------------------------------------------- /FrontTracking/skin/src/slVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/skin/src/slVector.cpp -------------------------------------------------------------------------------- /FrontTracking/skin/src/smoothingFilter.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/skin/src/smoothingFilter.H -------------------------------------------------------------------------------- /FrontTracking/skin/src/smoothingGrid.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/skin/src/smoothingGrid.H -------------------------------------------------------------------------------- /FrontTracking/skin/src/smoothingGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/FrontTracking/skin/src/smoothingGrid.cpp -------------------------------------------------------------------------------- /Gemotry/AdaptDynamicMeshes/ADM/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/AdaptDynamicMeshes/ADM/.DS_Store -------------------------------------------------------------------------------- /Gemotry/AdaptDynamicMeshes/ADM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/AdaptDynamicMeshes/ADM/Makefile -------------------------------------------------------------------------------- /Gemotry/AdaptDynamicMeshes/ADM/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/AdaptDynamicMeshes/ADM/README -------------------------------------------------------------------------------- /Gemotry/AdaptDynamicMeshes/ADM/TML/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /Gemotry/AdaptDynamicMeshes/ADM/TML/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/AdaptDynamicMeshes/ADM/TML/README -------------------------------------------------------------------------------- /Gemotry/AdaptDynamicMeshes/ADM/TML/TNT/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /Gemotry/AdaptDynamicMeshes/ADM/TML/apps/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /Gemotry/AdaptDynamicMeshes/ADM/TML/apps/Conversor/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /Gemotry/AdaptDynamicMeshes/ADM/TML/apps/Viewer/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /Gemotry/AdaptDynamicMeshes/ADM/TML/include/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /Gemotry/AdaptDynamicMeshes/ADM/TML/lib/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /Gemotry/AdaptDynamicMeshes/ADM/TML/src/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /Gemotry/AdaptDynamicMeshes/ADM/src/adm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/AdaptDynamicMeshes/ADM/src/adm.h -------------------------------------------------------------------------------- /Gemotry/AdaptDynamicMeshes/ADM/src/edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/AdaptDynamicMeshes/ADM/src/edge.h -------------------------------------------------------------------------------- /Gemotry/AdaptDynamicMeshes/ADM/src/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/AdaptDynamicMeshes/ADM/src/mesh.h -------------------------------------------------------------------------------- /Gemotry/BlusNoiseSampling/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/BlusNoiseSampling/Makefile -------------------------------------------------------------------------------- /Gemotry/BlusNoiseSampling/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/BlusNoiseSampling/README -------------------------------------------------------------------------------- /Gemotry/BlusNoiseSampling/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/BlusNoiseSampling/common.cc -------------------------------------------------------------------------------- /Gemotry/BlusNoiseSampling/common.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/BlusNoiseSampling/common.hh -------------------------------------------------------------------------------- /Gemotry/BlusNoiseSampling/param.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/BlusNoiseSampling/param.cc -------------------------------------------------------------------------------- /Gemotry/BlusNoiseSampling/param.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/BlusNoiseSampling/param.hh -------------------------------------------------------------------------------- /Gemotry/BlusNoiseSampling/targetrdf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/BlusNoiseSampling/targetrdf.cc -------------------------------------------------------------------------------- /Gemotry/InterferenceAware/iagm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/InterferenceAware/iagm/Makefile -------------------------------------------------------------------------------- /Gemotry/InterferenceAware/iagm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/InterferenceAware/iagm/README -------------------------------------------------------------------------------- /Gemotry/InterferenceAware/iagm/iagm/make.inc: -------------------------------------------------------------------------------- 1 | 2 | EIGEN_INC := /opt/local/include/eigen3 3 | 4 | # Switch to so for Linux 5 | # 6 | LIB_EXT := dylib 7 | 8 | -------------------------------------------------------------------------------- /Gemotry/InterferenceAware/iagm/make.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/InterferenceAware/iagm/make.inc -------------------------------------------------------------------------------- /Gemotry/artcode/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/artcode/Readme -------------------------------------------------------------------------------- /Gemotry/artcode/density.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/artcode/density.pgm -------------------------------------------------------------------------------- /Gemotry/artcode/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/artcode/geometry.h -------------------------------------------------------------------------------- /Gemotry/artcode/optimize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/artcode/optimize.cpp -------------------------------------------------------------------------------- /Gemotry/artcode/post-optimize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/artcode/post-optimize.cpp -------------------------------------------------------------------------------- /Gemotry/artcode/post-optimized.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/artcode/post-optimized.dat -------------------------------------------------------------------------------- /Gemotry/artcode/progressive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/artcode/progressive.cpp -------------------------------------------------------------------------------- /Gemotry/artcode/self-similar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/artcode/self-similar.h -------------------------------------------------------------------------------- /Gemotry/artcode/sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/artcode/sequence.cpp -------------------------------------------------------------------------------- /Gemotry/artcode/stipple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/artcode/stipple.cpp -------------------------------------------------------------------------------- /Gemotry/artcode/table.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/artcode/table.dat -------------------------------------------------------------------------------- /Gemotry/artcode/th.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/artcode/th.cpp -------------------------------------------------------------------------------- /Gemotry/artcode/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/artcode/utils.h -------------------------------------------------------------------------------- /Gemotry/artcode/words.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/artcode/words.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/__MACOSX/._bnot-src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/__MACOSX/._bnot-src -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/.DS_Store -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/COPYING -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/MANUAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/MANUAL -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/bbnot/bbnot.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/bbnot/bbnot.ui -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/bbnot/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/bbnot/dialog.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/bbnot/domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/bbnot/domain.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/bbnot/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/bbnot/init.cpp -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/bbnot/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/bbnot/io.cpp -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/bbnot/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/bbnot/main.cpp -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/bbnot/ramp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/bbnot/ramp.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/bbnot/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/bbnot/random.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/bbnot/rt2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/bbnot/rt2.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/bbnot/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/bbnot/scene.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/bbnot/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/bbnot/timer.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/bbnot/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/bbnot/types.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/bbnot/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/bbnot/util.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/bbnot/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/bbnot/window.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/ibnot/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/ibnot/dialog.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/ibnot/domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/ibnot/domain.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/ibnot/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/ibnot/grid.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/ibnot/ibnot.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/ibnot/ibnot.ui -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/ibnot/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/ibnot/init.cpp -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/ibnot/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/ibnot/io.cpp -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/ibnot/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/ibnot/main.cpp -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/ibnot/pgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/ibnot/pgm.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/ibnot/pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/ibnot/pixel.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/ibnot/ramp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/ibnot/ramp.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/ibnot/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/ibnot/random.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/ibnot/rt2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/ibnot/rt2.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/ibnot/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/ibnot/scene.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/ibnot/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/ibnot/timer.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/ibnot/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/ibnot/types.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/ibnot/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/ibnot/util.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/ibnot/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/ibnot/window.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/pbnot/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/pbnot/dialog.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/pbnot/domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/pbnot/domain.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/pbnot/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/pbnot/init.cpp -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/pbnot/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/pbnot/io.cpp -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/pbnot/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/pbnot/main.cpp -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/pbnot/pbnot.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/pbnot/pbnot.ui -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/pbnot/ramp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/pbnot/ramp.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/pbnot/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/pbnot/random.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/pbnot/rt2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/pbnot/rt2.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/pbnot/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/pbnot/scene.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/pbnot/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/pbnot/timer.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/pbnot/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/pbnot/types.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/pbnot/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/pbnot/util.h -------------------------------------------------------------------------------- /Gemotry/blueNoise/bnot-src/pbnot/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/blueNoise/bnot-src/pbnot/window.h -------------------------------------------------------------------------------- /Gemotry/days/FIELD_2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/FIELD_2D.cpp -------------------------------------------------------------------------------- /Gemotry/days/FIELD_2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/FIELD_2D.h -------------------------------------------------------------------------------- /Gemotry/days/FIELD_3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/FIELD_3D.cpp -------------------------------------------------------------------------------- /Gemotry/days/FIELD_3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/FIELD_3D.h -------------------------------------------------------------------------------- /Gemotry/days/MATRIX3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/MATRIX3.cpp -------------------------------------------------------------------------------- /Gemotry/days/MATRIX3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/MATRIX3.h -------------------------------------------------------------------------------- /Gemotry/days/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/Makefile -------------------------------------------------------------------------------- /Gemotry/days/Makefile.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/Makefile.osx -------------------------------------------------------------------------------- /Gemotry/days/NONLINEAR_SLICE_CUDA.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/NONLINEAR_SLICE_CUDA.cu -------------------------------------------------------------------------------- /Gemotry/days/NONLINEAR_SLICE_CUDA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/NONLINEAR_SLICE_CUDA.h -------------------------------------------------------------------------------- /Gemotry/days/POLYNOMIAL_4D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/POLYNOMIAL_4D.cpp -------------------------------------------------------------------------------- /Gemotry/days/POLYNOMIAL_4D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/POLYNOMIAL_4D.h -------------------------------------------------------------------------------- /Gemotry/days/QUATERNION.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/QUATERNION.cpp -------------------------------------------------------------------------------- /Gemotry/days/QUATERNION.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/QUATERNION.h -------------------------------------------------------------------------------- /Gemotry/days/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/README.md -------------------------------------------------------------------------------- /Gemotry/days/SETTINGS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/SETTINGS.h -------------------------------------------------------------------------------- /Gemotry/days/SIMPLE_PARSER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/SIMPLE_PARSER.cpp -------------------------------------------------------------------------------- /Gemotry/days/SIMPLE_PARSER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/SIMPLE_PARSER.h -------------------------------------------------------------------------------- /Gemotry/days/TIMER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/TIMER.cpp -------------------------------------------------------------------------------- /Gemotry/days/TIMER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/TIMER.h -------------------------------------------------------------------------------- /Gemotry/days/TRIANGLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/TRIANGLE.cpp -------------------------------------------------------------------------------- /Gemotry/days/TRIANGLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/TRIANGLE.h -------------------------------------------------------------------------------- /Gemotry/days/TRIANGLE_MESH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/TRIANGLE_MESH.cpp -------------------------------------------------------------------------------- /Gemotry/days/TRIANGLE_MESH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/TRIANGLE_MESH.h -------------------------------------------------------------------------------- /Gemotry/days/VEC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/VEC3.h -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._FIELD_2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._FIELD_2D.cpp -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._FIELD_2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._FIELD_2D.h -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._FIELD_3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._FIELD_3D.cpp -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._FIELD_3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._FIELD_3D.h -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._MATRIX3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._MATRIX3.cpp -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._MATRIX3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._MATRIX3.h -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._Makefile -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._Makefile.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._Makefile.osx -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._POLYNOMIAL_4D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._POLYNOMIAL_4D.cpp -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._POLYNOMIAL_4D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._POLYNOMIAL_4D.h -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._QUATERNION.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._QUATERNION.cpp -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._QUATERNION.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._QUATERNION.h -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._README.md -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._SETTINGS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._SETTINGS.h -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._SIMPLE_PARSER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._SIMPLE_PARSER.cpp -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._SIMPLE_PARSER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._SIMPLE_PARSER.h -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._TIMER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._TIMER.cpp -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._TIMER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._TIMER.h -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._TRIANGLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._TRIANGLE.cpp -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._TRIANGLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._TRIANGLE.h -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._TRIANGLE_MESH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._TRIANGLE_MESH.cpp -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._TRIANGLE_MESH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._TRIANGLE_MESH.h -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._VEC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._VEC3.h -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._data -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._include.mk -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._run -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._run_massive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._run_massive -------------------------------------------------------------------------------- /Gemotry/days/__MACOSX/._teraBunny.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/__MACOSX/._teraBunny.cpp -------------------------------------------------------------------------------- /Gemotry/days/data/bunny_1000.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/data/bunny_1000.cfg -------------------------------------------------------------------------------- /Gemotry/days/data/bunny_200.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/data/bunny_200.cfg -------------------------------------------------------------------------------- /Gemotry/days/data/bunny_500.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/data/bunny_500.cfg -------------------------------------------------------------------------------- /Gemotry/days/data/bunny_5000.o3d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/data/bunny_5000.o3d.txt -------------------------------------------------------------------------------- /Gemotry/days/data/bunny_dense_11500.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/data/bunny_dense_11500.cfg -------------------------------------------------------------------------------- /Gemotry/days/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/include.mk -------------------------------------------------------------------------------- /Gemotry/days/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/run -------------------------------------------------------------------------------- /Gemotry/days/run_massive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/run_massive -------------------------------------------------------------------------------- /Gemotry/days/teraBunny.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/days/teraBunny.cpp -------------------------------------------------------------------------------- /Gemotry/laplacian-editing-2D-MATLAB/T.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/laplacian-editing-2D-MATLAB/T.txt -------------------------------------------------------------------------------- /Gemotry/phong/__MACOSX/._phongDefoCode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/phong/__MACOSX/._phongDefoCode -------------------------------------------------------------------------------- /Gemotry/phong/phongDefoCode/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/phong/phongDefoCode/readme.txt -------------------------------------------------------------------------------- /Gemotry/simplification/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/simplification/COPYING -------------------------------------------------------------------------------- /Gemotry/simplification/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/simplification/README -------------------------------------------------------------------------------- /Gemotry/simplification/__MACOSX/._README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/simplification/__MACOSX/._README -------------------------------------------------------------------------------- /Gemotry/simplification/examples/blob00.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/simplification/examples/blob00.xy -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/simplification/pwsrec2D/.DS_Store -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/cost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/simplification/pwsrec2D/cost.h -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/dpqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/simplification/pwsrec2D/dpqueue.h -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/dt2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/simplification/pwsrec2D/dt2.h -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/icons/.svn/prop-base/Voronoi_diagram_2.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/icons/.svn/prop-base/fileNew.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/icons/.svn/prop-base/fileOpen.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/icons/.svn/prop-base/fileSave.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/icons/.svn/prop-base/fit-page-32.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/icons/.svn/prop-base/inputPoint.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/icons/.svn/prop-base/snapshot.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/icons/.svn/prop-base/triangulation.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/icons/.svn/prop-base/until.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/icons/.svn/prop-base/vertex.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/simplification/pwsrec2D/main.cpp -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/pedge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/simplification/pwsrec2D/pedge.h -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/pwsrec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/simplification/pwsrec2D/pwsrec.h -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/pwsrec.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/simplification/pwsrec2D/pwsrec.ui -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/simplification/pwsrec2D/random.h -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/simplification/pwsrec2D/sample.h -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/simplification/pwsrec2D/scene.h -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/simplification/pwsrec2D/types.h -------------------------------------------------------------------------------- /Gemotry/simplification/pwsrec2D/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/simplification/pwsrec2D/window.h -------------------------------------------------------------------------------- /Gemotry/surfacePatch/08poly_www/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/surfacePatch/08poly_www/defs.h -------------------------------------------------------------------------------- /Gemotry/surfacePatch/08poly_www/demo_frog.bat: -------------------------------------------------------------------------------- 1 | Debug\ngonsurf.exe -b data/monsterfrog -forcevsync:0 2 | -------------------------------------------------------------------------------- /Gemotry/surfacePatch/08poly_www/demo_hand.bat: -------------------------------------------------------------------------------- 1 | Debug\ngonsurf.exe data/hand.off -forcevsync:0 2 | -------------------------------------------------------------------------------- /Gemotry/surfacePatch/08poly_www/demo_monkey.bat: -------------------------------------------------------------------------------- 1 | Debug\ngonsurf.exe data/monkey.off -forcevsync:0 2 | -------------------------------------------------------------------------------- /Gemotry/surfacePatch/08poly_www/demos.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/surfacePatch/08poly_www/demos.bat -------------------------------------------------------------------------------- /Gemotry/surfacePatch/08poly_www/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/surfacePatch/08poly_www/main.cpp -------------------------------------------------------------------------------- /Gemotry/surfacePatch/08poly_www/point2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/surfacePatch/08poly_www/point2.h -------------------------------------------------------------------------------- /Gemotry/surfacePatch/08poly_www/point3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/surfacePatch/08poly_www/point3.h -------------------------------------------------------------------------------- /Gemotry/surfacePatch/08poly_www/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/surfacePatch/08poly_www/render.h -------------------------------------------------------------------------------- /Gemotry/surfacePatch/08poly_www/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /Gemotry/surfacePatch/08poly_www/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/surfacePatch/08poly_www/stdafx.h -------------------------------------------------------------------------------- /Gemotry/surfacePatch/08poly_www/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Gemotry/surfacePatch/08poly_www/util.h -------------------------------------------------------------------------------- /Image/ImageMelding_V1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Image/ImageMelding_V1.0.zip -------------------------------------------------------------------------------- /LightShadow/photonbeam/HG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LightShadow/photonbeam/HG.m -------------------------------------------------------------------------------- /LightShadow/photonbeam/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LightShadow/photonbeam/License.txt -------------------------------------------------------------------------------- /LightShadow/photonbeam/MonteCarlo_0.1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LightShadow/photonbeam/MonteCarlo_0.1.mat -------------------------------------------------------------------------------- /LightShadow/photonbeam/PBD_profile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LightShadow/photonbeam/PBD_profile.m -------------------------------------------------------------------------------- /LightShadow/photonbeam/QC1x2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LightShadow/photonbeam/QC1x2.m -------------------------------------------------------------------------------- /LightShadow/photonbeam/QC2x3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LightShadow/photonbeam/QC2x3.m -------------------------------------------------------------------------------- /LightShadow/photonbeam/classical_dipole.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LightShadow/photonbeam/classical_dipole.m -------------------------------------------------------------------------------- /LightShadow/photonbeam/fresneltrans.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LightShadow/photonbeam/fresneltrans.m -------------------------------------------------------------------------------- /LightShadow/photonbeam/improved_dipole.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LightShadow/photonbeam/improved_dipole.m -------------------------------------------------------------------------------- /LightShadow/photonbeam/lerp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LightShadow/photonbeam/lerp.m -------------------------------------------------------------------------------- /LightShadow/photonbeam/linearstep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LightShadow/photonbeam/linearstep.m -------------------------------------------------------------------------------- /LightShadow/photonbeam/output.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LightShadow/photonbeam/output.pdf -------------------------------------------------------------------------------- /LightShadow/photonbeam/plot_BSSRDFs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LightShadow/photonbeam/plot_BSSRDFs.m -------------------------------------------------------------------------------- /LinearSystem/NumericalRecipes/ludecomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LinearSystem/NumericalRecipes/ludecomp.py -------------------------------------------------------------------------------- /LinearSystem/NumericalRecipes/svd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LinearSystem/NumericalRecipes/svd.py -------------------------------------------------------------------------------- /LinearSystem/autodiff/mls.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LinearSystem/autodiff/mls.pdf -------------------------------------------------------------------------------- /LinearSystem/derivate/code/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LinearSystem/derivate/code/SConstruct -------------------------------------------------------------------------------- /LinearSystem/derivate/code/example-a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LinearSystem/derivate/code/example-a.cpp -------------------------------------------------------------------------------- /LinearSystem/derivate/code/example-b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LinearSystem/derivate/code/example-b.cpp -------------------------------------------------------------------------------- /LinearSystem/derivate/code/example-b2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LinearSystem/derivate/code/example-b2.cpp -------------------------------------------------------------------------------- /LinearSystem/derivate/code/example-c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LinearSystem/derivate/code/example-c.cpp -------------------------------------------------------------------------------- /LinearSystem/derivate/code/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LinearSystem/derivate/code/example.cpp -------------------------------------------------------------------------------- /LinearSystem/derivate/code/la.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LinearSystem/derivate/code/la.h -------------------------------------------------------------------------------- /LinearSystem/derivate/code/svd-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LinearSystem/derivate/code/svd-test.h -------------------------------------------------------------------------------- /LinearSystem/derivate/code/testbed-a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LinearSystem/derivate/code/testbed-a.cpp -------------------------------------------------------------------------------- /LinearSystem/derivate/code/testbed-b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LinearSystem/derivate/code/testbed-b.cpp -------------------------------------------------------------------------------- /LinearSystem/derivate/code/testbed-c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LinearSystem/derivate/code/testbed-c.cpp -------------------------------------------------------------------------------- /LinearSystem/derivate/paper (3).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LinearSystem/derivate/paper (3).pdf -------------------------------------------------------------------------------- /LinearSystem/multipcg/multipcg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/LinearSystem/multipcg/multipcg.m -------------------------------------------------------------------------------- /Math/Eigen/jacobiSVD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Math/Eigen/jacobiSVD.py -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/centroid_mesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/centroid_mesh.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/checkgeometry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/checkgeometry.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/circumcircle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/circumcircle.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/connectivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/connectivity.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/dist2poly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/dist2poly.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/findedge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/findedge.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/fixmesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/fixmesh.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/inpoly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/inpoly.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/mesh2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/mesh2d.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/mesh2d_to_xml.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/mesh2d_to_xml.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/meshfaces.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/meshfaces.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/meshpoly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/meshpoly.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/mydelaunayn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/mydelaunayn.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/mytsearch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/mytsearch.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/quadtree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/quadtree.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/quality.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/quality.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/read.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/read.txt -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/refine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/refine.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/smoothmesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/smoothmesh.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/tinterp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/tinterp.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/triarea.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/triarea.m -------------------------------------------------------------------------------- /MeshGeneration/mesh2d/tsearch_mex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MeshGeneration/mesh2d/tsearch_mex.c -------------------------------------------------------------------------------- /MultiGrid/amglab/ACMeasure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/ACMeasure.m -------------------------------------------------------------------------------- /MultiGrid/amglab/AMGLab.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/AMGLab.m -------------------------------------------------------------------------------- /MultiGrid/amglab/AMGLab_GUI.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/AMGLab_GUI.fig -------------------------------------------------------------------------------- /MultiGrid/amglab/AMGLab_GUI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/AMGLab_GUI.m -------------------------------------------------------------------------------- /MultiGrid/amglab/AMGeCoarsen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/AMGeCoarsen.m -------------------------------------------------------------------------------- /MultiGrid/amglab/AMGmCoarsen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/AMGmCoarsen.m -------------------------------------------------------------------------------- /MultiGrid/amglab/AccumulateMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/AccumulateMatrix.m -------------------------------------------------------------------------------- /MultiGrid/amglab/Dirichlet_Correction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/Dirichlet_Correction.m -------------------------------------------------------------------------------- /MultiGrid/amglab/GetEdgeElements_Schur.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/GetEdgeElements_Schur.m -------------------------------------------------------------------------------- /MultiGrid/amglab/IQMeasure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/IQMeasure.m -------------------------------------------------------------------------------- /MultiGrid/amglab/NodeNeighbors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/NodeNeighbors.m -------------------------------------------------------------------------------- /MultiGrid/amglab/NodeNeighborsEdges.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/NodeNeighborsEdges.m -------------------------------------------------------------------------------- /MultiGrid/amglab/NodeNeighbourAMGe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/NodeNeighbourAMGe.m -------------------------------------------------------------------------------- /MultiGrid/amglab/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/README.txt -------------------------------------------------------------------------------- /MultiGrid/amglab/README_UF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/README_UF.txt -------------------------------------------------------------------------------- /MultiGrid/amglab/RugeStuebenCoarsen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/RugeStuebenCoarsen.m -------------------------------------------------------------------------------- /MultiGrid/amglab/SOR_smoother.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/SOR_smoother.m -------------------------------------------------------------------------------- /MultiGrid/amglab/SmoothAggregateCoarsen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/SmoothAggregateCoarsen.m -------------------------------------------------------------------------------- /MultiGrid/amglab/Synopsis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/Synopsis.txt -------------------------------------------------------------------------------- /MultiGrid/amglab/UFget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/UFget.m -------------------------------------------------------------------------------- /MultiGrid/amglab/UFget_defaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/UFget_defaults.m -------------------------------------------------------------------------------- /MultiGrid/amglab/UFget_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/UFget_example.m -------------------------------------------------------------------------------- /MultiGrid/amglab/UFget_lookup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/UFget_lookup.m -------------------------------------------------------------------------------- /MultiGrid/amglab/UFgrep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/UFgrep.m -------------------------------------------------------------------------------- /MultiGrid/amglab/UFweb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/UFweb.m -------------------------------------------------------------------------------- /MultiGrid/amglab/amg_cycle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/amg_cycle.m -------------------------------------------------------------------------------- /MultiGrid/amglab/amg_defaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/amg_defaults.m -------------------------------------------------------------------------------- /MultiGrid/amglab/amg_example1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/amg_example1.m -------------------------------------------------------------------------------- /MultiGrid/amglab/amg_globals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/amg_globals.m -------------------------------------------------------------------------------- /MultiGrid/amglab/amg_setup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/amg_setup.m -------------------------------------------------------------------------------- /MultiGrid/amglab/amg_solve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/amg_solve.m -------------------------------------------------------------------------------- /MultiGrid/amglab/amg_usersetFD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/amg_usersetFD.m -------------------------------------------------------------------------------- /MultiGrid/amglab/amg_usersetFEM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/amg_usersetFEM.m -------------------------------------------------------------------------------- /MultiGrid/amglab/amg_usersetMAT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/amg_usersetMAT.m -------------------------------------------------------------------------------- /MultiGrid/amglab/amg_usersetUF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/amg_usersetUF.m -------------------------------------------------------------------------------- /MultiGrid/amglab/anisox_81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/anisox_81.txt -------------------------------------------------------------------------------- /MultiGrid/amglab/beck_coarsen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/beck_coarsen.m -------------------------------------------------------------------------------- /MultiGrid/amglab/coarse_solve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/coarse_solve.m -------------------------------------------------------------------------------- /MultiGrid/amglab/descendSort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/descendSort.m -------------------------------------------------------------------------------- /MultiGrid/amglab/e32_isb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/e32_isb.txt -------------------------------------------------------------------------------- /MultiGrid/amglab/gauss_elim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/gauss_elim.m -------------------------------------------------------------------------------- /MultiGrid/amglab/get_settings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/get_settings.m -------------------------------------------------------------------------------- /MultiGrid/amglab/interpolate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/interpolate.m -------------------------------------------------------------------------------- /MultiGrid/amglab/jacobi_smoother.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/jacobi_smoother.m -------------------------------------------------------------------------------- /MultiGrid/amglab/residual.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/residual.m -------------------------------------------------------------------------------- /MultiGrid/amglab/restrict.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/restrict.m -------------------------------------------------------------------------------- /MultiGrid/amglab/richardson_smoother.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/richardson_smoother.m -------------------------------------------------------------------------------- /MultiGrid/amglab/settingsGUI.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/settingsGUI.fig -------------------------------------------------------------------------------- /MultiGrid/amglab/settingsGUI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/settingsGUI.m -------------------------------------------------------------------------------- /MultiGrid/amglab/smooth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/smooth.m -------------------------------------------------------------------------------- /MultiGrid/amglab/spectral_radius.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/spectral_radius.m -------------------------------------------------------------------------------- /MultiGrid/amglab/strong.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/strong.m -------------------------------------------------------------------------------- /MultiGrid/amglab/strongT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/MultiGrid/amglab/strongT.m -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/EulerAngles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/EulerAngles.c -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/LICENSE.txt -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/LICENSE.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/LICENSE.txt~ -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/Makefile -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/TRAFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/TRAFile.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/blockmat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/blockmat.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/camera.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/exception.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/imagelib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/imagelib.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/ioutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/ioutil.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/keyable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/keyable.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/libtwigg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/libtwigg.sln -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/linalg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/linalg.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/objfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/objfile.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/pathUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/pathUtils.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/primitive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/primitive.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/prt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/prt.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/random.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/stdafx.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/stdafx.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/tr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/tr.c -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/twigg/prt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/twigg/prt.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/twigg/tr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/twigg/tr.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/twigg/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/twigg/util.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/libtwigg/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/libtwigg/util.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/GLView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/GLView.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/GLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/GLView.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/LICENSE.txt -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/OBB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/OBB.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/OBB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/OBB.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/Resource.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/TimeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/TimeView.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/TimeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/TimeView.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/action.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/action.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/barbicUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/barbicUtils.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/barbicUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/barbicUtils.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/bestScoresView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/bestScoresView.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/bestScoresView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/bestScoresView.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/bulletWrappers.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/bulletWrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/bulletWrappers.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/checkerboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/checkerboard.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/compress.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/compression.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/compression.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/constraints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/constraints.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/constraints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/constraints.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/distanceField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/distanceField.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/distanceField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/distanceField.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/hierarchyView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/hierarchyView.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/hierarchyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/hierarchyView.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/mechModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/mechModel.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/mechModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/mechModel.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/meshes/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/meshes/gen.sh -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/meshes/meshes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/meshes/meshes.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/mwSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/mwSample.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/mwSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/mwSample.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/newtonWrappers.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/novodexWrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/novodexWrappers.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/odeWrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/odeWrappers.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/odeWrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/odeWrappers.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/parser.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/parser.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/pathTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/pathTree.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/physicsFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/physicsFwd.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/physicsObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/physicsObject.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/physicsObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/physicsObject.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/planning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/planning.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/planning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/planning.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/planning.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/planning.ico -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/planning.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/planning.sln -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/planning.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/planning.vcproj -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/planningUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/planningUI.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/planningUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/planningUI.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/quat.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/renderLines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/renderLines.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/renderLines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/renderLines.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/ribFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/ribFile.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/ribFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/ribFile.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/sampleServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/sampleServer.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/scene.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/scene.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/simulationTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/simulationTree.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/simulationTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/simulationTree.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/small.ico -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/sound.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/sound.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/spatial_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/spatial_tree.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/spatial_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/spatial_tree.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/sphere_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/sphere_tree.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/sphere_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/sphere_tree.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/stdafx.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/stdafx.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/testQuat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/testQuat.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/threads.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/threads.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/voxels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/voxels.cpp -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/voxels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/voxels.h -------------------------------------------------------------------------------- /Physics/ManyWorlds/mwb/walkTreeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Physics/ManyWorlds/mwb/walkTreeHandler.h -------------------------------------------------------------------------------- /Plastic/localRemeshing/Stellar-1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Plastic/localRemeshing/Stellar-1.1.tgz -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/README.md -------------------------------------------------------------------------------- /Siggraph/HighlyAdaptive/code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Siggraph/HighlyAdaptive/code/.DS_Store -------------------------------------------------------------------------------- /Siggraph/HighlyAdaptive/code/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Siggraph/HighlyAdaptive/code/ReadMe.txt -------------------------------------------------------------------------------- /SkinSkeletonBone/NeoHookeanFlesh/Cube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/SkinSkeletonBone/NeoHookeanFlesh/Cube.py -------------------------------------------------------------------------------- /SkinSkeletonBone/NeoHookeanFlesh/neo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/SkinSkeletonBone/NeoHookeanFlesh/neo.py -------------------------------------------------------------------------------- /SkinSkeletonBone/NeoHookeanFlesh/sur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/SkinSkeletonBone/NeoHookeanFlesh/sur.py -------------------------------------------------------------------------------- /Sound/PrecomputedTransfer/fastPAT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Sound/PrecomputedTransfer/fastPAT.cpp -------------------------------------------------------------------------------- /Sound/PrecomputedTransfer/matrixIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Sound/PrecomputedTransfer/matrixIO.cpp -------------------------------------------------------------------------------- /Sound/PrecomputedTransfer/matrixIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Sound/PrecomputedTransfer/matrixIO.h -------------------------------------------------------------------------------- /Sound/PrecomputedTransfer/performanceCounter.cpp: -------------------------------------------------------------------------------- 1 | #include "performanceCounter.h" 2 | -------------------------------------------------------------------------------- /Volumetric/DiffusionSurfaces_src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/DiffusionSurfaces_src.zip -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/ActiveGrid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/ActiveGrid.cc -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/ActiveGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/ActiveGrid.h -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/ChunkLink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/ChunkLink.cc -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/ChunkLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/ChunkLink.h -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/Linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/Linear.h -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/Makefile -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/Matrix2f.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/Matrix2f.cc -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/Matrix2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/Matrix2f.h -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/Matrix3f.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/Matrix3f.cc -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/Matrix3f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/Matrix3f.h -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/Matrix4f.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/Matrix4f.cc -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/Matrix4f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/Matrix4f.h -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/OccGrid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/OccGrid.cc -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/OccGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/OccGrid.h -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/OccGridRLE.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/OccGridRLE.cc -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/OccGridRLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/OccGridRLE.h -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/Quaternion.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/Quaternion.cc -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/Quaternion.h -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/README -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/Vec3f.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/Vec3f.cc -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/Vec3f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/Vec3f.h -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/defines.h -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/fb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/fb.cc -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/fb.h -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/main.cc -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/util.cc -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/util.h -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/volfill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/volfill -------------------------------------------------------------------------------- /Volumetric/volfill/volfill/vrip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/Volumetric/volfill/volfill/vrip.h -------------------------------------------------------------------------------- /WaterFlowFluid/FEMFluid/FemFluid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FEMFluid/FemFluid.pdf -------------------------------------------------------------------------------- /WaterFlowFluid/FEMFluid/advectionCore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FEMFluid/advectionCore.m -------------------------------------------------------------------------------- /WaterFlowFluid/FEMFluid/applyForces.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FEMFluid/applyForces.m -------------------------------------------------------------------------------- /WaterFlowFluid/FEMFluid/calcDivergence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FEMFluid/calcDivergence.m -------------------------------------------------------------------------------- /WaterFlowFluid/FEMFluid/calcFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FEMFluid/calcFrame.m -------------------------------------------------------------------------------- /WaterFlowFluid/FEMFluid/calcGradient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FEMFluid/calcGradient.m -------------------------------------------------------------------------------- /WaterFlowFluid/FEMFluid/cellsToNodes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FEMFluid/cellsToNodes.m -------------------------------------------------------------------------------- /WaterFlowFluid/FEMFluid/getFluidCells.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FEMFluid/getFluidCells.m -------------------------------------------------------------------------------- /WaterFlowFluid/FEMFluid/jacobi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FEMFluid/jacobi.m -------------------------------------------------------------------------------- /WaterFlowFluid/FEMFluid/loadScenario.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FEMFluid/loadScenario.m -------------------------------------------------------------------------------- /WaterFlowFluid/FEMFluid/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FEMFluid/main.m -------------------------------------------------------------------------------- /WaterFlowFluid/FEMFluid/mainUnitTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FEMFluid/mainUnitTest.m -------------------------------------------------------------------------------- /WaterFlowFluid/FEMFluid/reinitDistances.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FEMFluid/reinitDistances.m -------------------------------------------------------------------------------- /WaterFlowFluid/FEMFluid/runSimulation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FEMFluid/runSimulation.m -------------------------------------------------------------------------------- /WaterFlowFluid/FEMFluid/saveImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FEMFluid/saveImage.m -------------------------------------------------------------------------------- /WaterFlowFluid/FEMFluid/saveVideo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FEMFluid/saveVideo.m -------------------------------------------------------------------------------- /WaterFlowFluid/FEMFluid/setAirVelocity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FEMFluid/setAirVelocity.m -------------------------------------------------------------------------------- /WaterFlowFluid/FEMFluid/solvePressure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FEMFluid/solvePressure.m -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FSWW-master/CMakeLists.txt -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FSWW-master/LICENSE -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FSWW-master/README -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/build/external/etc/cget/recipes/corrade.v2018.02/package.txt: -------------------------------------------------------------------------------- 1 | mosra/corrade@v2018.02 -DBUILD_DEPRICATED=OFF 2 | -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/build/external/etc/cget/recipes/corrade/package.txt: -------------------------------------------------------------------------------- 1 | mosra/corrade -DBUILD_DEPRICATED=OFF 2 | -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/build/external/etc/cget/recipes/hana.v1.4.0/package.txt: -------------------------------------------------------------------------------- 1 | boostorg/hana@v1.4.0 2 | -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/build/external/etc/cget/recipes/imgui.v1.53/package.txt: -------------------------------------------------------------------------------- 1 | ocornut/imgui@v1.53 -X build.cmake 2 | -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/build/external/etc/cget/recipes/imgui.v1.60/package.txt: -------------------------------------------------------------------------------- 1 | ocornut/imgui@v1.60 -X build.cmake 2 | -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/build/external/etc/cget/recipes/magnum-imgui.v0.1/package.txt: -------------------------------------------------------------------------------- 1 | lecopivo/magnum-imgui 2 | -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/build/external/etc/cget/recipes/magnum-imgui.v0.1/requirements.txt: -------------------------------------------------------------------------------- 1 | magnum.v2018.02 2 | imgui.v1.53 3 | -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/build/external/etc/cget/recipes/magnum-imgui.v0.3/package.txt: -------------------------------------------------------------------------------- 1 | lecopivo/magnum-imgui@v0.3 2 | -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/build/external/etc/cget/recipes/magnum-imgui.v0.3/requirements.txt: -------------------------------------------------------------------------------- 1 | magnum.v2018.02 2 | imgui.v1.60 3 | -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/build/external/etc/cget/recipes/magnum-imgui/package.txt: -------------------------------------------------------------------------------- 1 | lecopivo/magnum-imgui 2 | -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/build/external/etc/cget/recipes/magnum-imgui/requirements.txt: -------------------------------------------------------------------------------- 1 | magnum 2 | imgui.v1.53 3 | -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/build/external/etc/cget/recipes/magnum.v2018.02/requirements.txt: -------------------------------------------------------------------------------- 1 | corrade.v2018.02 2 | -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/build/external/etc/cget/recipes/magnum/requirements.txt: -------------------------------------------------------------------------------- 1 | corrade 2 | -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/imgui.ini: -------------------------------------------------------------------------------- 1 | [Window][Debug##Default] 2 | Pos=60,60 3 | Size=823,1381 4 | Collapsed=0 5 | 6 | -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/read.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FSWW-master/read.txt -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/src/Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FSWW-master/src/Grid.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/src/Grid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FSWW-master/src/Grid.hpp -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/src/Times.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FSWW-master/src/Times.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/src/Times.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FSWW-master/src/Times.hpp -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/src/Viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FSWW-master/src/Viewer.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/src/Viewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FSWW-master/src/Viewer.hpp -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/src/Wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FSWW-master/src/Wave.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/src/Wave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FSWW-master/src/Wave.hpp -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/src/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FSWW-master/src/error.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/src/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FSWW-master/src/error.hpp -------------------------------------------------------------------------------- /WaterFlowFluid/FSWW-master/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/FSWW-master/src/main.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/LaplacianEigen/java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/LaplacianEigen/java.py -------------------------------------------------------------------------------- /WaterFlowFluid/Synthetic/turb/.svn/prop-base/compile_check.sh.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /WaterFlowFluid/Synthetic/turb/.svn/prop-base/makebu.sh.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /WaterFlowFluid/Synthetic/turb/.svn/prop-base/update_lastgood_parser.sh.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /WaterFlowFluid/Synthetic/turb/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/Synthetic/turb/COPYING -------------------------------------------------------------------------------- /WaterFlowFluid/Synthetic/turb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/Synthetic/turb/Makefile -------------------------------------------------------------------------------- /WaterFlowFluid/Synthetic/turb/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/Synthetic/turb/README.txt -------------------------------------------------------------------------------- /WaterFlowFluid/Synthetic/turb/render.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/Synthetic/turb/render.sh -------------------------------------------------------------------------------- /WaterFlowFluid/Synthetic/turb/source/.svn/prop-base/vortexplugins.cpp.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mergeinfo 3 | V 0 4 | 5 | END 6 | -------------------------------------------------------------------------------- /WaterFlowFluid/Synthetic/turb/util/.svn/prop-base/GLFontData.h.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /WaterFlowFluid/Synthetic/turb/util/.svn/prop-base/GLFontRenderer.cpp.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /WaterFlowFluid/Synthetic/turb/util/.svn/prop-base/GLFontRenderer.h.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /WaterFlowFluid/UnInclude/tbb/fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/UnInclude/tbb/fun.py -------------------------------------------------------------------------------- /WaterFlowFluid/UnInclude/tbb/note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/UnInclude/tbb/note.md -------------------------------------------------------------------------------- /WaterFlowFluid/clebsch/code (7).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/clebsch/code (7).zip -------------------------------------------------------------------------------- /WaterFlowFluid/close/.vs/close/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/.vs/close/v16/.suo -------------------------------------------------------------------------------- /WaterFlowFluid/close/.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/.vs/slnx.sqlite -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/.DS_Store -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/Makefile -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/Makefile.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/Makefile.ubuntu -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/SETTINGS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/SETTINGS.h -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/data/.DS_Store -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/iWaveHoudini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/iWaveHoudini.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/iWavePhysBAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/iWavePhysBAM.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/render/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/render/.DS_Store -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/src/.DS_Store -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/src/BOX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/src/BOX.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/src/BOX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/src/BOX.h -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/src/FIELD_2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/src/FIELD_2D.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/src/FIELD_2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/src/FIELD_2D.h -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/src/FIELD_3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/src/FIELD_3D.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/src/FIELD_3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/src/FIELD_3D.h -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/src/IWAVE_3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/src/IWAVE_3D.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/src/IWAVE_3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/src/IWAVE_3D.h -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/src/MATRIX3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/src/MATRIX3.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/src/MATRIX3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/src/MATRIX3.h -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/src/SURFACE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/src/SURFACE.h -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/src/TIMER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/src/TIMER.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/src/TIMER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/src/TIMER.h -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/src/TRIANGLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/src/TRIANGLE.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/src/TRIANGLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/src/TRIANGLE.h -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/src/VEC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/src/VEC3.h -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/src/glvu/glvu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/src/glvu/glvu.h -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT/src/glvu/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT/src/glvu/text.h -------------------------------------------------------------------------------- /WaterFlowFluid/close/CPT_source.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/close/CPT_source.tar.gz -------------------------------------------------------------------------------- /WaterFlowFluid/curlNoise/bluenoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/curlNoise/bluenoise.h -------------------------------------------------------------------------------- /WaterFlowFluid/curlNoise/curlnoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/curlNoise/curlnoise.h -------------------------------------------------------------------------------- /WaterFlowFluid/curlNoise/example_2dwake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/curlNoise/example_2dwake.h -------------------------------------------------------------------------------- /WaterFlowFluid/curlNoise/gluvi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/curlNoise/gluvi.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/curlNoise/gluvi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/curlNoise/gluvi.h -------------------------------------------------------------------------------- /WaterFlowFluid/curlNoise/interp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/curlNoise/interp.h -------------------------------------------------------------------------------- /WaterFlowFluid/curlNoise/main2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/curlNoise/main2.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/curlNoise/main3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/curlNoise/main3.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/curlNoise/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/curlNoise/noise.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/curlNoise/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/curlNoise/noise.h -------------------------------------------------------------------------------- /WaterFlowFluid/curlNoise/rigidshape2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/curlNoise/rigidshape2.h -------------------------------------------------------------------------------- /WaterFlowFluid/curlNoise/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/curlNoise/util.h -------------------------------------------------------------------------------- /WaterFlowFluid/curlNoise/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/curlNoise/vec.h -------------------------------------------------------------------------------- /WaterFlowFluid/eigenFluid/DCT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/eigenFluid/DCT.py -------------------------------------------------------------------------------- /WaterFlowFluid/eigenFluid/MIC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/eigenFluid/MIC.py -------------------------------------------------------------------------------- /WaterFlowFluid/eigenFluid/SourceCodes/compile.sh: -------------------------------------------------------------------------------- 1 | cd build 2 | make -j6 3 | cd .. -------------------------------------------------------------------------------- /WaterFlowFluid/eigenFluid/SourceCodes/libraries/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # STLPlus for filepath tools. 2 | add_subdirectory(stlplus3) 3 | -------------------------------------------------------------------------------- /WaterFlowFluid/eigenFluid/note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/eigenFluid/note.md -------------------------------------------------------------------------------- /WaterFlowFluid/flux/flux_code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/flux/flux_code/main.cpp -------------------------------------------------------------------------------- /WaterFlowFluid/perceptual/code/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/perceptual/code/COPYING -------------------------------------------------------------------------------- /WaterFlowFluid/perceptual/code/INSTALLING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leon-Zhaohw/NumericalProjectsCollections/HEAD/WaterFlowFluid/perceptual/code/INSTALLING --------------------------------------------------------------------------------