-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Milestone
Description
The 'highest peaks' example does not scale well with higher distances, resp. more peaks, as more and more distances have to be calculated. A different approach would be to order all peaks in the current view port by elevation descending and then process them one by one:
- the highest peak will be shown in any case
- the next highest peak only, if none of the already shown peaks is in the given range
- continue with 2.
This is currently not possible -> it requires (at least):
- global variables
- (quasi-) parallel execution of code
- how to order objects for execution?
How could/should this code look like? Ideas?