加入所有顶点

This commit is contained in:
xsl
2025-09-27 20:05:03 +08:00
parent cb7b600eda
commit 701187ec11
6 changed files with 5127 additions and 15 deletions
+2 -2
View File
@@ -157,7 +157,7 @@ def process_obj_file_advanced(input_file, tolerance=1e-6):
if __name__ == "__main__":
input_file = "face.obj" # 默认输入文件
input_file = "face_new.obj" # 默认输入文件
# 使用基本版本
print("基本版本结果:")
@@ -167,4 +167,4 @@ if __name__ == "__main__":
# 使用高级版本(带容差)
print("高级版本结果(带容差):")
process_obj_file_advanced(input_file, tolerance=0.0024)
process_obj_file_advanced(input_file, tolerance=0.005)