23 | | These two values control the construction of the quadtree and directly affect both loading times and rendering speed of the data. Each leaf (point bucket) in the quadtree can have a number of sub-buckets which store points to display at different zoom level. For example when viewing a whole flightline in the overview window there is no need to render every single point or store all the points in memory at once. Thus sub-buckets containing every n-th point are used instead. |
24 | | The Resolution Depth determines the number of sub-buckets for each bucket and Resolution Base determines the number of points at each level by specifying the interval between included points based on the formula of Resolution Base to the power of (Level - 1). For example the default values of 5 and 4 create 4 sub-buckets per bucket: first containing every point (5^0), second containing every 5th point (5^1), third containing every 25th point (5^2) and fourth with every 125th point (5^3). |
| 23 | These two values control the construction of the quadtree and directly affect both loading times and rendering speed of the data. Each leaf (point bucket) in the quadtree can have a number of sub-buckets which store points to display at different zoom level. For example when viewing a whole flightline in the overview window there is no need to render every single point or store all the points in memory at once. Thus sub-buckets containing every n-th point are used instead. \\ |
| 24 | The Resolution Depth determines the number of sub-buckets for each bucket and Resolution Base determines the number of points at each level by specifying the interval between included points based on the formula of Resolution Base^(Level - 1)^. For example the default values of 5 and 4 create 4 sub-buckets per bucket: one containing every point (5^0^), second containing every 5th point (5^1^), third containing every 25th point (5^2^) and fourth with every 125th point (5^3^). \\ |
35 | | The WASD cluster can be used for moving the camera as well. The move speed can be changed in Advanced Options window. Additionaly: |
36 | | B, G - zooms in and out |
37 | | X - toggles the profile |
38 | | F - toggles the fence |
39 | | T - switches between orthogonal and slanted |
40 | | C - classifies selected points |
41 | | Z - refresh |
42 | | SPACE - loads currently selected profile into profile window |
| 35 | The WASD cluster can be used for moving the camera as well. The move speed can be changed in Advanced Options window. Additionaly: \\ |
| 36 | B, G - zooms in and out \\ |
| 37 | X - toggles the profile \\ |
| 38 | F - toggles the fence \\ |
| 39 | T - switches between orthogonal and slanted \\ |
| 40 | C - classifies selected points \\ |
| 41 | Z - refresh \\ |
| 42 | SPACE - loads currently selected profile into profile window \\ |