Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagelib
Path: blob/master/sage/plot/plot3d/examples.py
4036 views
1
r"""
2
Introduction
3
4
EXAMPLES::
5
6
sage: x, y = var('x y')
7
sage: W = plot3d(sin(pi*((x)^2+(y)^2))/2,(x,-1,1),(y,-1,1), frame=False, color='purple', opacity=0.8)
8
sage: S = sphere((0,0,0),size=0.3, color='red', aspect_ratio=[1,1,1])
9
sage: show(W + S, figsize=8)
10
"""
11
12
13
14
15