Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News Sign UpSign In
| Download

3D plot of vector not working

Project: Math5C_PCC
Views: 82
v = vector([1,2,3]) show(v)
(1,2,3)\displaystyle \left(1,\,2,\,3\right)
plot(v, viewer='threejs', online=True)
3D rendering not yet implemented
E.<x,y,z> = EuclideanSpace() A = E.point((4,3,2), name='A') v = E.tangent_space(A)((1,2,1), name='v') # a vector at A A.plot(size=20, color='red', opacity=0.5) + v.plot(color='green')
3D rendering not yet implemented