Polar contour plot #117
Replies: 2 comments 2 replies
-
The matplotplusplus/source/matplot/core/axes_type.h Line 1309 in 159a438 A that might give you what want if you set it to auto h = ax->polar(...); // or matplot::polar(...)
// and then
h->fill(true); But I haven't tested that yet but it should work, because polar histograms also use filled lines: |
Beta Was this translation helpful? Give feedback.
-
Mmmmm.... You might be able to achieve that with contourc then. Same as above (get handle, fill(true), etc...), but give the polar plot polygons for the contour lines instead. You can calculate the contour lines with contourc. (Still have never tested any of that though) |
Beta Was this translation helpful? Give feedback.
-
Hi, I am trying to plot a bidrectional reflectance distribution function (BRDF) with this library. Traditionally, this is done as a filled contour plot in polar space. I have done this in the past with
matplotlib
, but I didn't see it in the gallery of examples. Is it possible in matplotplusplus? Thanks!Beta Was this translation helpful? Give feedback.
All reactions