We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[x,y,z,v] = flow; p = patch(isosurface(x,y,z,v,-3)); isonormals(x,y,z,v,p) p.FaceColor = 'red'; p.EdgeColor = 'none'; daspect([1 1 1]) view(3); axis tight camlight lighting gouraud fig2plotly(gcf);
does not work
The text was updated successfully, but these errors were encountered:
Daniel, you only need to set the optional parameter 'TreatAs' to 'isosurface'. Please check the following code
'TreatAs'
'isosurface'
[x,y,z,v] = flow; p = patch(isosurface(x,y,z,v,-3)); isonormals(x,y,z,v,p) p.FaceColor = 'red'; p.EdgeColor = 'none'; daspect([1 1 1]) view(3); axis tight camlight lighting gouraud fig2plotly(gcf, 'TreatAs', 'isosurface');
Result looks as follow
Sorry, something went wrong.
No branches or pull requests
does not work
The text was updated successfully, but these errors were encountered: