mirror of https://github.com/wpkong/Octree.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
756 B
34 lines
756 B
/**
|
|
* ------------------------------------
|
|
* @author: Weipeng Kong
|
|
* @date: 2021/12/6
|
|
* @email: yjxkwp@foxmail.com
|
|
* @site: https://donot.fit
|
|
* @description: 测试DFS赋值
|
|
* ------------------------------------
|
|
**/
|
|
|
|
#ifndef OCTREE_SEARCH_ASSIGN_H
|
|
#define OCTREE_SEARCH_ASSIGN_H
|
|
|
|
#include "Octree/udf/UDFData.h"
|
|
|
|
|
|
/**
|
|
* _________________________
|
|
* | | | |
|
|
* | | | |
|
|
* |_______|_______|_______|
|
|
* | | ↑ | |
|
|
* | | ← d → | |
|
|
* |_______|___↓___|_______|
|
|
* | | | |
|
|
* | | | |
|
|
* |_______|_______|_______|
|
|
*/
|
|
|
|
void search_assign(Octree::UDFData &udf, int *start, double threshold);
|
|
|
|
|
|
|
|
#endif //OCTREE_SEARCH_ASSIGN_H
|
|
|