wolfram plots plot3d mathematica grid wolfram-mathematica graphics3d

plots - "3D Grid" dentro de la caja en Graphics3D



surface plot mathematica (1)

Por favor considera :

cAxes = {{{0, 0, 0}, {0, 0, 1}}, {{0, 0, 0}, {0, 1, 0}}, {{0, 0,0}, {1, 0, 0}}}; Graphics3D[{Line /@ cAxes}, Boxed -> False]

¿Es posible tener rejillas dentro de la caja? Supongo que "3D Grid"


Aquí hay una versión revisada de lo que creo que Verbeia estaba intentando:

cAxes = {{{0, 0, 0}, {0, 0, 1}}, {{0, 0, 0}, {0, 1, 0}}, {{0, 0, 0}, {1, 0, 0}}}; a = Graphics3D[{Line /@ cAxes}, Boxed -> False]; b = Graphics3D[{ GrayLevel[0.5], Table[Line /@ {{{x, y, 0}, {x, y, 1}}, {{x, 0, y}, {x, 1, y}}, {{0, x, y}, {1, x, y}}}, {x, 0, 1, 0.25}, {y, 0, 1, 0.25} ] }]; Show[a, b]