OT: Möbius strip [NCA / SHAM]
Hi Nastia,
I didn’t know but I’m not surprised.
For sure you know what happens if we cut a Möbius strip once. Do you know what happens if we cut it twice? Makes a great party joke.
Punch, OK. But drill?
So do I.
https://www.r-bloggers.com/topological-tomfoolery-in-r-plotting-a-mobius-strip
❝ Hey, how did you know that I've got a model of it?
I didn’t know but I’m not surprised.
❝ Unfortunatelly I am not good at topology…
cup → bagel → cup → …
© Lucas Vieira Barbosa
For sure you know what happens if we cut a Möbius strip once. Do you know what happens if we cut it twice? Makes a great party joke.
❝ But I know the answers for the questions what do we need to drill a square hole…
Punch, OK. But drill?
❝ … and also what profile one should use to ride a bike with square wheels
So do I.
https://www.r-bloggers.com/topological-tomfoolery-in-r-plotting-a-mobius-strip
library(rgl)
library(plot3D)
###############
# Möbius band #
###############
R <- 5
u <- seq(0, 2 * pi, length.out = 100)
v <- seq(-1, 1, length.out = 100)
m <- mesh(u, v)
u <- m$x
v <- m$y
x <- (R + v/2 * cos(u /2)) * cos(u)
y <- (R + v/2 * cos(u /2)) * sin(u)
z <- v/2 * sin(u / 2)
invisible(open3d())
bg3d(color = "#F3F3F3")
surface3d(x, y, z, color= "#87CEFA")
title3d(main = "Moebius band")
# Rotate with mouse-left, wheel to zoom.
################
# Klein bottle #
################
u <- seq(0, pi, length.out = 100)
v <- seq(0, 2 * pi, length.out = 100)
m <- mesh(u, v)
u <- m$x
v <- m$y
x <- (-2 / 15) * cos(u) * (3 * cos(v) - 30 * sin(u) + 90 * cos(u)^4 * sin(u) -
60 * cos(u)^6 * sin(u) + 5 * cos(u) * cos(v) * sin(u))
y <- (-1 / 15) * sin(u) * (3 * cos(v) - 3 * cos(u)^2 * cos(v) - 48 *
cos(u)^4 * cos(v) + 48 * cos(u)^6 * cos(v) - 60 * sin(u) + 5 * cos(u) *
cos(v) * sin(u) - 5 * cos(u)^3 * cos(v) * sin(u) - 80 * cos(u)^5 *
cos(v) * sin(u) + 80 * cos(u)^7 * cos(v) * sin(u))
z <- (+2 / 15) * (3 + 5 * cos(u) * sin(u)) * sin(v)
invisible(open3d())
bg3d(color = "#F3F3F3")
surface3d(x, y, z, color= "#87CEFA", alpha = 0.5)
title3d(main = "Klein bottle")
—
Dif-tor heh smusma 🖖🏼 Довге життя Україна!![[image]](https://static.bebac.at/pics/Blue_and_yellow_ribbon_UA.png)
Helmut Schütz
![[image]](https://static.bebac.at/img/CC by.png)
The quality of responses received is directly proportional to the quality of the question asked. 🚮
Science Quotes
Dif-tor heh smusma 🖖🏼 Довге життя Україна!
![[image]](https://static.bebac.at/pics/Blue_and_yellow_ribbon_UA.png)
Helmut Schütz
![[image]](https://static.bebac.at/img/CC by.png)
The quality of responses received is directly proportional to the quality of the question asked. 🚮
Science Quotes
Complete thread:
- Fantastic PK parameters and where to find them Astea 2020-06-12 14:22
- Fantastic post ?? Helmut 2020-06-12 16:23
- Rattleback Astea 2020-06-13 10:17
- Chatter Helmut 2020-06-13 12:28
- Reinventing the Hula-Hoop Astea 2020-06-16 01:33
- Hula-Hoop references Helmut 2020-06-16 13:07
- Prof. Keller vs. Yamaoka mittyri 2020-06-17 14:28
- SHAM(e) math Astea 2020-06-23 14:41
- SHAM(e) math Helmut 2020-06-23 15:55
- OT: Möbius strip Astea 2020-06-23 21:41
- OT: Möbius stripHelmut 2020-06-24 11:29
- OT: Möbius strip Astea 2020-06-23 21:41
- SHAM(e) math Helmut 2020-06-23 15:55
- SHAM(e) math Astea 2020-06-23 14:41
- Prof. Keller vs. Yamaoka mittyri 2020-06-17 14:28
- Hula-Hoop references Helmut 2020-06-16 13:07
- Reinventing the Hula-Hoop Astea 2020-06-16 01:33
- Chatter Helmut 2020-06-13 12:28
- Rattleback Astea 2020-06-13 10:17
- More stuff Helmut 2020-06-13 15:28
- MRT and Gravity duration mittyri 2020-06-14 22:24
- Fantastic PK parameters and where to find them ElMaestro 2020-06-16 09:46
- Cauchy distribution mittyri 2020-06-16 10:54
- Cauchy distribution Helmut 2020-06-16 13:14
- Cauchy distribution ElMaestro 2020-06-20 10:33
- noncentral normal ratio mittyri 2020-06-20 23:04
- Cauchy distribution mittyri 2020-06-16 10:54
- Fantastic post ?? Helmut 2020-06-12 16:23