PasteRack.org
Paste # 38058
2024-04-22 04:53:29

Fork as a new paste.

Paste viewed 281 times.


Embed:

  1. #lang racket
  2. (require plot)
  3. (plot3d (polar3d (λ (θ ρ) 1) #:color 2 #:line-style 'transparent)
  4.           #:x-min -0.8 #:x-max 0.8
  5.           #:y-min -0.8 #:y-max 0.8
  6.           #:z-min -0.8 #:z-max 0.8
  7.           #:altitude 25)

=>