When using `contour3()` to create a 3-D contour plot, a regular 2-D plot is being created instead. ``` [X,Y] = meshgrid(-5:0.25:5); Z = X.^2 + Y.^2; contour3(Z) fig2plotly(gcf, 'offline', false); ``` Expected and generated (https://chart-studio.plotly.com/~xarico10/741/#/) plots: <img width="522" alt="Captura de Pantalla 2021-07-31 a la(s) 12 30 34 a m" src="https://user-images.githubusercontent.com/87881895/127729818-2ced0590-1c78-40cb-98ce-1a46965748ca.png"> <img width="740" alt="Captura de Pantalla 2021-07-31 a la(s) 6 41 06 p m" src="https://user-images.githubusercontent.com/87881895/127754785-7d74d75d-9311-4c05-a0e4-3119a5467268.png"> Examples on using `contour3()` can be found on: https://www.mathworks.com/help/matlab/ref/contour3.html#responsive_offcanvas