Skip to content
Snippets Groups Projects
Commit 2537cadf authored by ganthern's avatar ganthern
Browse files

remove .vscode

parent 4d36a6f5
Branches
No related tags found
No related merge requests found
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/<your program>",
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
\ No newline at end of file
# Pointbased Rendering
Der Code implementiert Aufgabe 1 bis 3 mit allen Extras.
Die Pointcloud-Klasse wurde zum reinen Punktecontainer und
Renderer degradiert.
Die Algorithmen sind hauptsächlich in den folgenden Dateien implementiert:
* CgMath/PointMath.h - einfache Berechnungen wie Centroid, AABB, PCA usw.
* CgMath/PointWrangler.h - kompliziertere Algorithmen wie kd-Baum, k-nearest neighbours, clustering
* CgSceneGraph/CgSceneControl.cpp - Komposition der Algorithmen zur Verwendung im Viewport
## Aufgabe 1
* der kd-Baum wird beim Laden und nach Vereinfachung einer Punkwolke implizit durch Sortierung der Vertices erzeugt (siehe CgSceneControl::handleEvent fall LoadPointCloudEvent ).
*
## Aufgabe 2
## Aufgabe 3
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment