How to put hit test off to Isosurface in matlab?

2 views (last 30 days)
I am using the code
isosurface(foo,fo);
caxis([0.2 0.5])
colorbar
grid on; axis equal; colormap default; alpha(0.3);
hold on;
I would want to make the hit test off to the isosurface so that, by clicking on the figure ButtonDownFcn of axis can be called.

Accepted Answer

Jan
Jan on 14 Jul 2013
Edited: Jan on 14 Jul 2013
You can call patch explicitly to define additional properties:
patch(isosurface(foo,fo), 'HitTest', 'off');
  5 Comments
Jan
Jan on 15 Jul 2013
Edited: Jan on 15 Jul 2013
So did you read doc isosurface already? There you find the exact description of how to provide the outputs of isosurface to patch (see "Example 2"):
[faces, verts, colors] = isosurface(foo, fo);
patch('Vertices', verts, 'Faces', faces, ...
'FaceVertexCData', colors, ...
'FaceColor','interp', ...
'edgecolor', 'interp', ...
'HitTest', 'off'); % <-- individual changes
If this does not help already, look at the other examples in the documentation.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!