mesh2tri

버전 1.2.0.0 (2.2 KB) 작성자: Kevin Moerman
Creates regular triangulation of meshgrid data
다운로드 수: 2.3K
업데이트 날짜: 2011/4/5

라이선스 보기

Converts a regular mesh defined by X,Y and Z into a regular triangulation. The output is patch data (triangles) in the faces “F” and vertices “V” format. The quadrilateral mesh faces are converted to triangles by splitting the faces into triangles according to the setting tri_type:
tri_type ='f' -> forward slash division of quadrilateral
tri_type ='b' -> back slash division of quadrilateral
tri_type ='x' -> Cross division of quadrilateral
The output coordinates "V" are in the form of V=[X(:),Y(:),Z(:)];
For forward and back slash subdivision no extra coordinates are introduced and therefore the original meshgrid formatted coordinates can still be used for plotting, see examples below. For cross division extra points are created at the centre of each quadrilateral face using the mean of the input coordinates. The extra coordinates are the last prod(size(X)-1) points (e.g. V((numel(X)+1):end,:) ) and can therefore be replaced by interpolated coordinates if desired, see example.

인용 양식

Kevin Moerman (2024). mesh2tri (https://www.mathworks.com/matlabcentral/fileexchange/28327-mesh2tri), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2007a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Surface and Mesh Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.2.0.0

Fix of face order

1.1.0.0

Updated the vertex order for the triangles so that they are compatible with functions such as PDEGRAD

1.0.0.0