Skip to main content
added 310 characters in body
Source Link
cvgmt
  • 91.7k
  • 6
  • 113
  • 194
  • This is a bug since version 14.0 or version 14.1.
  • Rationalize the plot data.
DiscretizeGraphics[Rationalize[plot, 0]]

enter image description here

  • Another working around is extract the plot data.
coords = Cases[plot, GraphicsComplex[p_List, rest__] :> p, -1][[1]];
polys = Cases[plot, _Polygon, -1];
GraphicsComplex[coords, polys] // DiscretizeGraphics

enter image description here

  • This is a bug since version 14.0 or version 14.1.
  • Rationalize the plot data.
DiscretizeGraphics[Rationalize[plot, 0]]

enter image description here

  • This is a bug since version 14.0 or version 14.1.
  • Rationalize the plot data.
DiscretizeGraphics[Rationalize[plot, 0]]

enter image description here

  • Another working around is extract the plot data.
coords = Cases[plot, GraphicsComplex[p_List, rest__] :> p, -1][[1]];
polys = Cases[plot, _Polygon, -1];
GraphicsComplex[coords, polys] // DiscretizeGraphics

enter image description here

Source Link
cvgmt
  • 91.7k
  • 6
  • 113
  • 194

  • This is a bug since version 14.0 or version 14.1.
  • Rationalize the plot data.
DiscretizeGraphics[Rationalize[plot, 0]]

enter image description here