Skip to content

Commit

Permalink
docs: some corrections for HalfedgeMesh
Browse files Browse the repository at this point in the history
  • Loading branch information
greyishsong authored and greyishsong committed Sep 17, 2024
1 parent e02d641 commit a6a23c6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/geometry/halfedge.h
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,8 @@ class HalfedgeMesh
* \brief 执行一次 Loop 曲面细分。
*
* 该函数使用 `flip_edge` 和 `split_edge` 完成一次 Loop 曲面细分。注意,Loop
* 曲面细分只能细分三角网格。
* 曲面细分只能细分三角网格。细分过程使用 `is_boundary` 和 `on_boundary`
* 等 API 来判断 mesh 边界并进行处理。
*/
void loop_subdivide();
/*!
Expand Down Expand Up @@ -364,9 +365,9 @@ class HalfedgeMesh
void erase(Face* f);
/*!
* \~chinese
* \brief 清楚已删除元素的记录
* \brief 释放内存并清除已删除元素的记录
*
* 这个函数清空 `erased_[elements]` 中存储的删除记录
* 这个函数执行 `delete` 释放内存,并清空各 `erased_[elements]` 容器中存储的删除记录
*/
void clear_erasure_records();
/*!
Expand Down

0 comments on commit a6a23c6

Please sign in to comment.