From 8c367eacffd7f46524d323ca42e38b3e24f21519 Mon Sep 17 00:00:00 2001 From: wetzels <wetzels@rhrk.uni-kl.de> Date: Thu, 28 Apr 2022 12:05:45 +0200 Subject: [PATCH] Update Exercise 5 (submission format) --- ex5/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ex5/README.md b/ex5/README.md index 07f951c..f4acb5e 100644 --- a/ex5/README.md +++ b/ex5/README.md @@ -41,7 +41,7 @@ Play a bit with the contour value and the data values of the tetrahedron. The re <img src="img/contour.png" width="300">. -**Summary of Tasks:** Design and implement a Marching Tetrahedra algorithm. For each cell, return one vtkPolyData object, containing the part of the contour in this cell. +**Summary of Tasks:** Design and implement a Marching Tetrahedra algorithm. For each cell, return one vtkPolyData object, containing the part of the contour in this cell. Your submission file, `task1.py`, should render the tetrahedron and the contour as shown in the image above. ## Task 2: Triangulation (1P) @@ -59,7 +59,7 @@ The result for a contour value of 0.7 should look like: <img src="img/triang_contour.jpg" width="300">. -**Summary of Tasks:** Load a vtkUnstructuredGrid and triangulate it by using a suitable algorithm. Then, apply your Marching Tetrahedra algorithm. +**Summary of Tasks:** Load a vtkUnstructuredGrid and triangulate it by using a suitable algorithm. Then, apply your Marching Tetrahedra algorithm. Save your submission code as `task2.py`. ## Task 3: Comparing with VTK (1P) @@ -69,4 +69,4 @@ To do this, create a `vtkContourFilter` and add it to your visualization. You can compare your results with the `sphere.vtk` and the `cube.vtk`. Those examples should look the same, however, this may not always be the case. Why? *Hint: Check the scalar ranges of the datasets to make sure that your isosurface is in a valid range.* -**Summary of Tasks:** Implement a `vtkContourFilter` and compare it to your own implementation. Why could Marching Tetrahedra and Marching Cubes differ? +**Summary of Tasks:** Implement a `vtkContourFilter` and compare it to your own implementation. Why could Marching Tetrahedra and Marching Cubes differ? Save your submission code as `task3.py`. If changes in the code have to be made for the comparison, please mark the corresponding lines through comments. -- GitLab