how to get points inside a cone ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
yogesh jain
am 24 Nov. 2015
Kommentiert: M.S. Khan
am 18 Aug. 2020
Hello all , I have a conical section which is hollow and having variable radius and height . how to get all points inside the cone so that I can make it filled cone . I used this code -
r1=input('enter radius');
r=r1:-0.5:0;
[xc,yc,zc] = cylinder(r);
h=input('enter ht');
zc=zc*h;
figure(1)
surf(xc,yc,zc,'Facecolor','w');
grid on
axis equal
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 24 Nov. 2015
There are an infinite number of points inside a cone.
To make a 3D object "filled", normally you just use opaque faces to draw it.
6 Kommentare
M.S. Khan
am 18 Aug. 2020
Hi Dr. Walter Roberson, can i consider your code as a point cloud of the cone.
Regards,
M. Shafiq
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Surface and Mesh Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!