3D spherical plot is cut off by the edges of the graphing window

14 次查看(过去 30 天)
I have a 3D spherical graph that draws a sphere (Earth) and points along the sphere. However, when I zoom in on the sphere, the edges of the plot window cut off the sides of the image. See the screenshots below:
I've tried changing the camera perspective, setting the axes so they are outside of the window (so the sphere would intersect with the boundaries of the axis when it is outside of the window, etc.) but nothing has worked so far. In essence, I need some way to create a spherical enviorment so when I zoom in on the sphere, the walls of the plot consisently or spherically remove the textures around the sphere, rather than making straight, flat cuts through the sphere.
The code for the sphere generation is shown below:
[X,Y,Z] = ellipsoid(0, 0, 0, rE, rE, rE, 100);
globe = surf(X,Y,Z);
Please let me know if you have any ideas! Thank you so much!

采纳的回答

Justus Quint Von Lengerke
Figured it out! Under axes properties, there is a "clipping" perameter -- set that to "off" and it works!

更多回答(1 个)

Les Beckham
Les Beckham 2023-6-12
This doesn't work if you want to be able to interactively zoom in on a region, but if you have in mind a specific range of X, Y, Z that you want to examine, something like this might work.
Also note that your example code doesn't draw the pretty globe with continents and oceans, just a ball.
rE = 6.378e6; % meters
[X,Y,Z] = ellipsoid(0, 0, 0, rE, rE, rE, 100);
globe = surf(X,Y,Z);
axis equal
xlabel 'X'
ylabel 'Y'
zlabel 'Z'
range = 1000*5280*0.3048; % 1000 miles converted to meters
idx = (X < -range) & (Y < -range) & (Z > range);
X(~idx) = nan;
Y(~idx) = nan;
Z(~idx) = nan;
surf(X, Y, Z)
axis equal

类别

Help CenterFile Exchange 中查找有关 Polar Plots 的更多信息

产品


版本

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by