- the cone center is C: (3 x 1)
- coneangle is the cone angle (0 to pi, pi corresponds to the extreme case where the cone takes the whole space)
- the cone axis is N: (3 x 1), oriented toward the direction you consider to be in
- Point P: (3 x 1) the point coordinates to be check
I want to find out points whose coordinates are within the volume formed by a cone shape.
조회 수: 4 (최근 30일)
이전 댓글 표시
Hello,
I have plotted few points in a 3D volume as shown in the figure below:
I want to plot a 3D righ Cone from a few specefic points as shown:
These cones are 3D volumes and I want to find out points whose coordinates are within each cone. for example which point is within yello cone and which one in red and which one in purple cone.
Can some one help?
댓글 수: 0
채택된 답변
Bruno Luong
2022년 4월 28일
편집: Bruno Luong
2022년 4월 28일
Assuming
Check inside the half of the cone is
dot(P-C, N) >= cos(coneangle/2) * norm(N) * norm(P-C)
You can compute once
cos(coneangle/2) * norm(N)
if you have many points P to check.
댓글 수: 3
Bruno Luong
2022년 4월 28일
편집: Bruno Luong
2022년 4월 28일
The above code plots one part of the surface of the cone truncated at base hight = h, base radius r.
Why? Because the author wants it that way.
추가 답변 (1개)
Matt J
2022년 4월 27일
Draw a vector from the cone vertex to the point and compute the angle of this vector to the cone's axis. If the angle is less than the angular width of the cone, then the point is inside the cone. This assumes that the cone is not of finite length.
댓글 수: 4
참고 항목
카테고리
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!