Guest User

Untitled

a guest
Feb 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. curve = ParametricPlot[{z, Sin[z]}, {z, 0, 2 Pi}][[1]]
  2.  
  3. Manipulate[
  4. circle = {RGBColor[1, 0.27, 0.5], {Circle[{x, f[x]}, y]},
  5. PlotRange -> {{0, 100}, {-5, 5}}};
  6. curve = ParametricPlot[{z, Sin[z]}, {z, 0, 2 Pi}][[1]];
  7. box = {RGBColor[0.81, 0.79, 1], Rectangle[{40, 0}, {50, 10}]};
  8. Graphics[{box, circle, curve},
  9. PlotRange -> {{-10, 50}, {-10, 20}}], {x, 0, 50}, {y, 0.5, 5}]
Add Comment
Please, Sign In to add comment