Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
11
Task/Draw-a-sphere/Maxima/draw-a-sphere.maxima
Normal file
11
Task/Draw-a-sphere/Maxima/draw-a-sphere.maxima
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
/* Two solutions */
|
||||
plot3d(1, [theta, 0, %pi], [phi, 0, 2 * %pi],
|
||||
[transform_xy, spherical_to_xyz], [grid, 30, 60],
|
||||
[box, false], [legend, false])$
|
||||
|
||||
load(draw)$
|
||||
draw3d(xu_grid=30, yv_grid=60, surface_hide=true,
|
||||
parametric_surface(cos(phi)*sin(theta),
|
||||
sin(phi)*sin(theta),
|
||||
cos(theta),
|
||||
theta, 0, %pi, phi, 0, 2 * %pi))$
|
||||
Loading…
Add table
Add a link
Reference in a new issue