是否支持二维表面网格的体积化?Mesh类 #1170
Unanswered
codesbykhalil
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Please provide a minimal reproduction script. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
是否支持二维表面网格的体积化?Mesh类
# 添加体积化实体
scene.add_entity(
morph=gs.morphs.Mesh(
file=surface_file,
force_retet=True, # 强制执行四面体化
mindihedral=15, # 最小二面角
minratio=1.2, # 最小质量比
nobisect=False, # 允许二分加点
quality=True, # 启用质量优化
fixed=True,
pos=(5, 5, 5),
),
surface=gs.surfaces.Default(
color=(0.8, 0.8, 0.8),
smooth=True,
),
)
似乎没有作用
Beta Was this translation helpful? Give feedback.
All reactions