I am trying to add a point using the Epilog option with ContourPlot3D.
ContourPlot3D[{x == 0, y == 0, z == 0}, {x, -3, 3}, {y, -3,
3}, {z, -3, 3},
Mesh -> None,
AxesLabel -> {x, y, z},
ContourStyle -> {Opacity[0.8]},
Lighting -> "Neutral",
Epilog -> {Red, PointSize[Large], Point[{1, -2, 2}]}]
But it doesn't work. Suggestions?
Epilogis really only useful for appending two-dimensional primitives to eitherGraphics[]orGraphics3D[]. UseShow[]instead:Show[ContourPlot3D[(* stuff *)], Graphics3D[(* stuff *)]]. – J. M.'s missing motivation May 21 '15 at 19:35Epilogoption must all be 2D. – m_goldberg May 21 '15 at 19:51