1

Is it possible to set a RGB-colour as a default colour for 3-dimensional plots (I want that the RGB-colour [0.,0.5,1.] will be my default colour) ? Here a code for example: Plot3D[Sin[x^2+y^2]/(x^2+y^2),{x,-Pi,Pi},{y,-Pi,Pi},PlotStyle -> RGBColor[0., 0.5, 1.]] Thanks very much :)

astronerd
  • 21
  • 1

1 Answers1

1
SetOptions[Plot3D, PlotStyle -> RGBColor[0., 0.5, 1.]];
Plot3D[Sin[x^2 + y^2]/(x^2 + y^2), {x, -Pi, Pi}, {y, -Pi, Pi}]
Coolwater
  • 20,257
  • 3
  • 35
  • 64