(Mathematica) RegionPlot3D + DiscretizeRegion + ImplicitRegion 不显示轴的任何刻度线
(Mathematica) RegionPlot3D + DiscretizeRegion + ImplicitRegion does not show any tick marks for axes
运行 以下片段
region = ImplicitRegion[x - y + z == 0, {{x, -1, 1}, {y, -1, 1}, {z, -1, 1}}];
RegionPlot3D[DiscretizeRegion[region]]
产出
3D image of a plane
我想要刻度线并保留 RegionPlot3D 的功能(能够更改颜色等)。有什么想法吗?
没有什么可以阻止您使用 RegionPlot3D
记录的所有可用选项 here。
RegionPlot3D[DiscretizeRegion[region], PlotTheme -> "Detailed", Mesh -> None,
PlotStyle -> Directive[Red, Opacity[0.75]]]
运行 以下片段
region = ImplicitRegion[x - y + z == 0, {{x, -1, 1}, {y, -1, 1}, {z, -1, 1}}];
RegionPlot3D[DiscretizeRegion[region]]
产出
3D image of a plane
我想要刻度线并保留 RegionPlot3D 的功能(能够更改颜色等)。有什么想法吗?
没有什么可以阻止您使用 RegionPlot3D
记录的所有可用选项 here。
RegionPlot3D[DiscretizeRegion[region], PlotTheme -> "Detailed", Mesh -> None,
PlotStyle -> Directive[Red, Opacity[0.75]]]