adjustments

This commit is contained in:
jverzani
2023-04-19 11:27:31 -04:00
parent af1f5db454
commit d09d6bf598
2 changed files with 4 additions and 2 deletions

View File

@@ -734,7 +734,9 @@ For parametrically defined surfaces, the $x$ and $y$ values also correspond to m
```{julia}
#| hold: true
r, R = 1, 5
X(theta,phi) = [(r*cos(theta)+R)*cos(phi), (r*cos(theta)+R)*sin(phi), r*sin(theta)]
X(theta,phi) = [(r*cos(theta)+R)*cos(phi),
(r*cos(theta)+R)*sin(phi),
r*sin(theta)]
us = range(0, 2pi, length=25)
vs = range(0, pi, length=25)