Guest User

Untitled

a guest
Feb 18th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. ctr = {(Exp[Pi*0.5] + 1)/2, 0};
  2. radius = (Exp[Pi*0.5] - 1)/2;
  3. pp = PolarPlot[
  4. Evaluate@Table[Exp[(t + 2*Pi*i/120)*0.5], {i, 1, 120}], {t, -Pi,
  5. Pi}, RegionFunction -> (Norm[{#, #2} - ctr] <= radius &)]
  6. Total[ArcLength /@ Cases[pp, _Line, All]]
  7.  
  8. ctr = {(Exp[Pi*0.5] - 1)/2, 0};
  9. radius = (Exp[Pi*0.5] - 1)/2;
  10. pp2 = ParametricPlot[
  11. Evaluate[Table[{t, t (Tan[2 j Pi / 120])}, {j, 1, 60}]], {t, -5, 5},
  12. RegionFunction -> (Norm[{#, #2} - ctr] <= radius &),
  13. PlotRange -> All]
  14. Total[ArcLength /@ Cases[pp2, _Line, All]]
Add Comment
Please, Sign In to add comment