File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -201,7 +201,9 @@ Quadtree::qtnode Quadtree::new_node(arma_vec lower_left_norm_in,
201
201
}
202
202
203
203
// --------------------------------------------------------------------------
204
- //
204
+ // This returns the lower left (LL) coordinate in normalized coordinates or
205
+ // the size of the node in the right (SR) or up (SU) directions. It can
206
+ // also return the midpoint of the node (MID)
205
207
// --------------------------------------------------------------------------
206
208
207
209
arma_vec Quadtree::get_vect (Quadtree::qtnode node, std::string which) {
@@ -483,7 +485,9 @@ arma_vec Quadtree::wrap_point_cubesphere(arma_vec point) {
483
485
}
484
486
485
487
// --------------------------------------------------------------------------
486
- //
488
+ // This is the starting point for determining which node a point
489
+ // on the sphere is located. The point needs to be in normalized
490
+ // coordinates.
487
491
// --------------------------------------------------------------------------
488
492
489
493
int64_t Quadtree::find_point (arma_vec point) {
@@ -509,7 +513,9 @@ int64_t Quadtree::find_point(arma_vec point) {
509
513
}
510
514
511
515
// --------------------------------------------------------------------------
512
- //
516
+ // This is the starting point for determining which root a point
517
+ // on the sphere is located. The point needs to be in normalized
518
+ // coordinates.
513
519
// --------------------------------------------------------------------------
514
520
515
521
int64_t Quadtree::find_root (arma_vec point) {
You can’t perform that action at this time.
0 commit comments