├── .gitignore ├── README.md ├── exercises ├── 0_exercises.md ├── 1_exercises.md └── assets │ ├── 2.10_Surface_as_Permutation.png │ ├── 2.11_Permutation_as_Surface.png │ ├── 2.12 Surface as Matrices.png │ └── 2.2_Platonic_Solids.png ├── slides ├── 01_Introduction.pdf ├── 02A_Meshes.pdf ├── 02B_Manifolds.pdf ├── 03_ExteriorAlgebra.pdf ├── 04_kForms.pdf ├── 05_DifferentialForms.pdf ├── 06_ExteriorDerivative.pdf ├── 06_Supp_VectorValuedForms.pdf ├── 07_Integration.pdf ├── 08_DiscreteDifferentialForms.pdf ├── 09_DiscreteExteriorCalculus.pdf └── 10_SmoothCurves.pdf └── solution ├── 0-simplicial-complex-operators.cpp ├── 1-4-geometry.cpp └── 1-discrete-exterior-calculus.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | ddg-exercises -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/README.md -------------------------------------------------------------------------------- /exercises/0_exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/exercises/0_exercises.md -------------------------------------------------------------------------------- /exercises/1_exercises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/exercises/1_exercises.md -------------------------------------------------------------------------------- /exercises/assets/2.10_Surface_as_Permutation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/exercises/assets/2.10_Surface_as_Permutation.png -------------------------------------------------------------------------------- /exercises/assets/2.11_Permutation_as_Surface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/exercises/assets/2.11_Permutation_as_Surface.png -------------------------------------------------------------------------------- /exercises/assets/2.12 Surface as Matrices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/exercises/assets/2.12 Surface as Matrices.png -------------------------------------------------------------------------------- /exercises/assets/2.2_Platonic_Solids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/exercises/assets/2.2_Platonic_Solids.png -------------------------------------------------------------------------------- /slides/01_Introduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/slides/01_Introduction.pdf -------------------------------------------------------------------------------- /slides/02A_Meshes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/slides/02A_Meshes.pdf -------------------------------------------------------------------------------- /slides/02B_Manifolds.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/slides/02B_Manifolds.pdf -------------------------------------------------------------------------------- /slides/03_ExteriorAlgebra.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/slides/03_ExteriorAlgebra.pdf -------------------------------------------------------------------------------- /slides/04_kForms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/slides/04_kForms.pdf -------------------------------------------------------------------------------- /slides/05_DifferentialForms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/slides/05_DifferentialForms.pdf -------------------------------------------------------------------------------- /slides/06_ExteriorDerivative.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/slides/06_ExteriorDerivative.pdf -------------------------------------------------------------------------------- /slides/06_Supp_VectorValuedForms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/slides/06_Supp_VectorValuedForms.pdf -------------------------------------------------------------------------------- /slides/07_Integration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/slides/07_Integration.pdf -------------------------------------------------------------------------------- /slides/08_DiscreteDifferentialForms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/slides/08_DiscreteDifferentialForms.pdf -------------------------------------------------------------------------------- /slides/09_DiscreteExteriorCalculus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/slides/09_DiscreteExteriorCalculus.pdf -------------------------------------------------------------------------------- /slides/10_SmoothCurves.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/slides/10_SmoothCurves.pdf -------------------------------------------------------------------------------- /solution/0-simplicial-complex-operators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/solution/0-simplicial-complex-operators.cpp -------------------------------------------------------------------------------- /solution/1-4-geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/solution/1-4-geometry.cpp -------------------------------------------------------------------------------- /solution/1-discrete-exterior-calculus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy1li/cmu-ddg/HEAD/solution/1-discrete-exterior-calculus.cpp --------------------------------------------------------------------------------