First time here? Check out the FAQ!

Ask Your Question

Revision history [back]

click to hide/show revision 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())
click to hide/show revision 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())
click to hide/show revision 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())