how to find points inside a 3d delaunayTriangulation object?

조회 수: 2 (최근 30일)
Philippe Corner
Philippe Corner 2022년 3월 2일
댓글: Philippe Corner 2022년 3월 2일
load('qs.mat')
figure; hold on
trisurf(K,s.Points(:,1),s.Points(:,2),s.Points(:,3),'FaceColor','none')
scatter3(x,y,z,20,'filled','k')
view(-30,10)

채택된 답변

David Hill
David Hill 2022년 3월 2일
p=pointLocation(s,[x,y,z]);
f=find(~isnan(p));%index of points (x,y,z) inside

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by