I want to get some 3D models defined by implicit functions like F(x,y,z)=0.
It can be done using the 'isosurface' and 'isocaps' functions in MATLAB.
In my case, the constructed models need post-process in Python so it would be better if the modelling can be done in Python. 'mayavi.mlab.Contour3d' and 'plotly.graph_objects.Isosurface' are able to display the isosurface while 'skimage.measure.marching_cubes' can be used to extract the trangler mesh.
Can anyone help me find a way in Python to get the isosurface end-cap?