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.
15 lines
384 B
15 lines
384 B
/*
|
|
* @File Created: 2022-11-26, 17:43:27
|
|
* @Last Modified: 2022-11-26, 18:50:24
|
|
* @Author: forty-twoo
|
|
* @Copyright (c) 2022, Caiyue Li(li_caiyue@zju.edu.cn), All rights reserved.
|
|
*/
|
|
|
|
#ifndef NEWTON_H_
|
|
#define NEWTON_H_
|
|
|
|
#include "bvh.hpp"
|
|
|
|
std::vector<double> newton_curve_curve(BVH_AABB_NodePtr boxPtr1, BVH_AABB_NodePtr boxPtr2, const double &eps, bool &isConvergence);
|
|
|
|
#endif
|