Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Project: test
Views: 122
Kernel: SageMath 8.0
version()
'SageMath version 8.0, Release Date: 2017-07-21'
t, theta = var('t, theta', domain='real') x(t) = cosh(t) z(t) = t formula = (x(t)*cos(theta), x(t)*sin(theta), z(t)) parameters = ((t, -3, 3), (theta, -pi, pi)) surface = ParametrizedSurface3D(formula, parameters)
show(surface.plot(aspect_ratio=1, color='yellow'), viewer='threejs', online=True)