From 16484bcfea38a2a7df39ad4139f4d9a596acc9aa Mon Sep 17 00:00:00 2001 From: forty-twoo <1013417276@qq.com> Date: Sat, 26 Nov 2022 18:57:35 +0800 Subject: [PATCH] modify some files --- include/bvh.hpp | 5 +++-- include/show_libigl.hpp | 9 +++++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/include/bvh.hpp b/include/bvh.hpp index 79ad658..9750915 100644 --- a/include/bvh.hpp +++ b/include/bvh.hpp @@ -1,9 +1,10 @@ /* * @File Created: 2022-11-24, 20:13:58 - * @Last Modified: 2022-11-26, 18:45:16 + * @Last Modified: 2022-11-26, 18:50:38 * @Author: forty-twoo - * Copyright (c) 2022, Caiyue Li (li_caiyue@zju.edu.cn), All rights reserved. + * @Copyright (c) 2022, Caiyue Li(li_caiyue@zju.edu.cn), All rights reserved. */ + #ifndef BVH_H_ #define BVH_H_ diff --git a/include/show_libigl.hpp b/include/show_libigl.hpp index 6675c45..f76f71e 100644 --- a/include/show_libigl.hpp +++ b/include/show_libigl.hpp @@ -1,3 +1,9 @@ +/* + * @File Created: 2022-11-25, 14:55:48 + * @Last Modified: 2022-11-26, 18:50:49 + * @Author: forty-twoo + * @Copyright (c) 2022, Caiyue Li(li_caiyue@zju.edu.cn), All rights reserved. + */ #ifndef SHOW_LIBIGL_H_ #define SHOW_LIBIGL_H_ @@ -15,8 +21,7 @@ extern igl::opengl::glfw::Viewer viewer; #define YELLOW Eigen ::RowVector3d(1, 1, 0) #define PINK Eigen ::RowVector3d(0.8, 0.2, 0.6) -void ShowCurve_Igl(tinynurbs::RationalCurve &curve, double sampleNum, Eigen::RowVector3d color) -void ShowSurface_Igl(tinynurbs::RationalSurface &surface, double sampleNumU, double sampleNumV, Eigen::RowVector3d color); +void ShowCurve_Igl(tinynurbs::RationalCurve &curve, double sampleNum, Eigen::RowVector3d color) void ShowSurface_Igl(tinynurbs::RationalSurface &surface, double sampleNumU, double sampleNumV, Eigen::RowVector3d color); void ShowBVHNode_Igl(BVH_AABB_NodePtr bvhNode, Eigen::RowVector3d color); void ShowAABB_Igl(AABB bound, Eigen::RowVector3d color);