Recent content by n00dle0

  1. N

    Mathematica How Can I Fix Animation Jumps in Mathematica and Create a Smooth Movie Clip?

    Solved! SphericalRegion->True does the job. I think I did try it set to true in the sphere before I posted here, but maybe I was messing things elsewhere. - N Animate[Show[sphere, Axes -> False, SphericalRegion -> True, ViewVertical -> {Sin[v], Cos[v], 0}], {v, 0, 2 Pi, Pi/36}]
  2. N

    Mathematica How Can I Fix Animation Jumps in Mathematica and Create a Smooth Movie Clip?

    Hi! Here is the code in Mathematica 7. sphere = RegionPlot3D[(x^2 + y^2 + z^2 <= 1) && (x < 0 || y < 0 || z < 0), {x, -1, 1}, {y, -1, 1}, {z, -1, 1}, Mesh -> False, Boxed -> False, Axes -> True, AxesOrigin -> {0, 0, 0}, AxesLabel -> {X, y, Z}, PlotPoints -> 50...
  3. N

    Mathematica Plotting 3D Regions in Mathematica 7

    Well this seems to be the feature, as the help specifies, Parameters to ColorFunction are normally scaled to be between 0 and 1: __________________________(by default)_________________________ So, the parameters are scaled, not the results. - N
  4. N

    Mathematica Plotting 3D Regions in Mathematica 7

    Thanks a lot Dale. I had been struggling with it since a week. Now does anyone have idea as to why. Is this behavior a feature or a bug? - N
  5. N

    Mathematica Plotting 3D Regions in Mathematica 7

    Hi! I am plotting the following in Mathematica 7. RegionPlot3D[(x^2 + y^2 + z^2 <= 1) && (x < 0 || y > 0 || z < 0), {x, -1, 1}, {y, -1, 1}, {z, -1, 1}, ColorFunction -> Function[{x, y, z}, ColorData["TemperatureMap"][x^2 + y^2 + z^2]], PlotPoints -> 50, Mesh -> False...
Back
Top