필터 지우기
필터 지우기

Triangulation of hollow objects

조회 수: 3 (최근 30일)
Tero
Tero 2021년 1월 8일
답변: Abhinaya Kennedy 2024년 6월 5일
Hi all,
simply, how to make the simple hollow 3D triangle depicted below?
Is there some contraint method I could use instead? I use the following command to get the surface:
tri = triangulation(delaunay(x,y),x,y,z);

답변 (1개)

Abhinaya Kennedy
Abhinaya Kennedy 2024년 6월 5일
Hi Tero,
Here are two possible approaches to create a hollow 3D triangle in MATLAB:
  1. Using the "patch" function: This function allows you to define a 3D surface using vertices, colors, and transparency. You can create separate surface patches for the outer shell and the inner shell of the triangle, specifying transparency for the inner shell to make it hollow.
  2. Using implicit functions: You can define the geometry of the hollow triangle using implicit functions. An implicit function defines a shape based on a mathematical equation where all points satisfying the equation are considered inside the shape. By combining two implicit functions, one for the outer shell and another for the inner shell, you can create the desired hollow shape.
Here are some resources that you might find helpful: https://www.mathworks.com/help/matlab/ref/patch.html

카테고리

Help CenterFile Exchange에서 Delaunay Triangulation에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by