| 1 | initial version |
This works in principle, but it is slow with high point counts:
s=implicit_plot3d(F, (x,-r,r), (y,-r,r), (z,-r,r), plot_points=15, color=mycolor, frame=False)
s.triangulate()
point3d(s.vertex_list())
| 2 | No.2 Revision |
This works in principle, but it is slow with high point counts:
s=implicit_plot3d(F, (x,-r,r), (y,-r,r), (z,-r,r), plot_points=15, color=mycolor, frame=False)
plot_points=15)
s.triangulate()
point3d(s.vertex_list())
| 3 | No.3 Revision |
This works in principle, but displaying it (each point as a circle!) is slow with high point counts:
s=implicit_plot3d(F, (x,-r,r), (y,-r,r), (z,-r,r), plot_points=15)
s.triangulate()
point3d(s.vertex_list())
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.