Qurak

Change the lighting of plots

操作指南 15 步,在同一个会话中按顺序运行。每一步都在引擎上执行过,下面的输出就是它实际产生的。

第 1 步
Graphics3D[Sphere[]]
输出
-Graphics3D-
第 2 步
Graphics3D[Sphere[], Lighting -> Automatic]
输出
-Graphics3D-
第 3 步
Graphics3D[Sphere[], Lighting -> {{"Ambient", RGBColor[0.4, .2, .2]}, {"Directional", RGBColor[0, .18, .5], ImageScaled[{2, 0, 2}]}, {"Directional", RGBColor[.18, .5, .18], ImageScaled[{2, 2, 3}]}, {"Directional", RGBColor[.5, .18, 0], ImageScaled[{0, 2, 2}]}, {"Directional", RGBColor[0, 0, .18], ImageScaled[{0, 0, 2}]}}]
输出
-Graphics3D-
第 4 步
Graphics3D[Sphere[], Lighting -> "Neutral"]
输出
-Graphics3D-
第 5 步
Graphics3D[Sphere[], Lighting -> {{"Ambient", RGBColor[{0.35, 0.35, 0.35}]}, {"Directional", RGBColor[{0.37, 0.37, 0.37}], ImageScaled[{2, 0, 2}]}, {"Directional", RGBColor[{0.37, 0.37, 0.37}], ImageScaled[{2, 2, 2}]}, {"Directional", RGBColor[{0.37, 0.37, 0.37}], ImageScaled[{0, 2, 2}]}}]
输出
-Graphics3D-
第 6 步
Graphics3D[Sphere[], Lighting -> None]
输出
-Graphics3D-
第 7 步
Graphics3D[Sphere[], Lighting -> {{"Point", Blue, {0, -1, 1}}}]
输出
-Graphics3D-
第 8 步
Graphics3D[Sphere[], Lighting -> {{"Point", Blue, {0, -1, 1}}, {"Point", Green, {1, -1, 0}}}]
输出
-Graphics3D-
第 9 步
Graphics3D[Sphere[], Lighting -> {{"Ambient", Red}}]
输出
-Graphics3D-
第 10 步
Graphics3D[Sphere[], Lighting -> {{"Ambient", Red}, {"Point", Blue, {1, -1, 0}}}]
输出
-Graphics3D-
第 11 步
Graphics3D[Sphere[], Lighting -> {{"Directional", Green, {0, 0, 1}, {1, 0, 0}}}]
输出
-Graphics3D-
第 12 步
Graphics3D[Sphere[], Lighting -> {{"Spot", Blue, {{1, -1, 0}, {0, -1, -1}}, Pi / 3}}]
输出
-Graphics3D-
第 13 步
Plot3D[Sin[x y], {x, -2, 2}, {y, -4, 4}, Mesh -> None, Lighting -> {{"Spot", Red, {{-1, -1, 0}, {1, -1, -1}}, Pi / 3}, {"Point", Blue, {0, 0, 1}}}]
输出
-Graphics3D-
第 14 步
GraphicsRow[Table[Graphics3D[{Specularity[Red, 50], Sphere[]}, Lighting -> {{"Spot", Orange, {{0, t, 1.5}, {0, 0, 0}}, Pi / 12}, {"Spot", Blue, {{0, t, 1.5}, {0, 0, 0}}, Pi / 12}}, Boxed -> False, ViewPoint -> {1, 0, -2}, ImageSize -> {150, 150}, Background -> Black], {t, 3.2, 12, 3}]]
输出
-Graphics-
第 15 步
Manipulate[Graphics3D[{Specularity[White, 20], Sphere[]}, Lighting -> {{"Directional", {Red, Specularity[Yellow]}, {0, 0, 3}}, {"Point", {Blue, Specularity[Green]}, {2.4 t, -t / 2, 1.5}}}, ImageSize -> {200, 200}], {{t, 2.5}, -1, 3}]
输出
Manipulate[-Graphics3D-, {{t, 2.5}, -1, 3}]

用到的函数

相关操作示例

全部操作示例 · 函数参考 · 从 MCP 客户端使用