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.

35 lines
756 B

4 years ago
/**
* ------------------------------------
* @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