Construct the sphere with the command "plot3d".
> restart;
> r:=sin(s);
![]()
> x:=r*cos(t);
![]()
> y:=r*sin(t);
![]()
> z:=cos(s);
![]()
> plot3d([x,y,z],s=0..Pi,t=0..2*Pi,scaling=constrained);
沿經線切割
> plot3d([x,y,z],s=0..Pi,t=0..Pi,scaling=constrained);
沿赤道切割
> plot3d([x,y,z],s=0..Pi/2,t=0..2*Pi,scaling=constrained);
![[Maple Plot]](9-17.gif)