How to slice 3D object
조회 수: 2 (최근 30일)
이전 댓글 표시
I have a cubic box with dimension of 1 x 1 x 1 with 100 spheres inside this box. I know the coordinate of x,y,z and radius of each spheres. I want to slice through this cubic box that is perpendicular to the z-direction at z=0.5.
x,y, and z have the dimension of 100 x 1.
Thank you
댓글 수: 0
답변 (1개)
Sean de Wolski
2015년 6월 3일
편집: Sean de Wolski
2015년 6월 3일
What do you mean by "slice"?
doc slice
?
sz = size(x)
xs = x(1:ceil(sz(1)/2),:,:);
?
댓글 수: 3
참고 항목
카테고리
Help Center 및 File Exchange에서 Lighting, Transparency, and Shading에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!