Group Abstract Group Abstract

Message Boards Message Boards

[GIF] Home on the Range (Rotating minimal 7_7 on the BCC lattice)

3 Replies

Wonderful work! So newcomers to knot theory can appreciate deeper your art here are some basic visuals of what $7_7$ knot is:

KnotData[{7, 7}, #] & /@ {"Image", "KnotDiagram"}

enter image description here

POSTED BY: Vitaliy Kaurov

enter image description here - Congratulations! This post is now a Staff Pick as distinguished by a badge on your profile! Thank you, keep it coming, and consider contributing your work to the The Notebook Archive!

POSTED BY: EDITORIAL BOARD
Posted 7 years ago

Looks nice!

Just to be ornery, I came up with a variation that combines my "rational smoothstep" with spherical linear interpolation ("slerp"):

DynamicModule[{b, n, u, ? = N[2 ?/3] , cols = RGBColor /@ {"#621295", "#e3e7f1"}},
              Manipulate[u = (#^3/(1 - 3 # (1 - #))) &[Mod[t, 1]];
                        {n, b} = Which[t < 1 || t == 2,
                                       {{-1, 0, 0}, {0, 0, 1}} Sin[? (1 - u)] +
                                       {{0, 0, 1}, {0, -1, 0}} Sin[? u],
                                       1 ? t < 2,
                                       {{0, 0, 1}, {0, -1, 0}} Sin[? (1 - u)] +
                                       {{1, 0, 0}, {0, 0, 1}} Sin[? u]]/Sin[?];
                        Graphics[{cols[[1]],
                                  Polygon[bcc77.Transpose[{Cross[b, n], b}]]},
                                  ImageSize -> 540, PlotRange -> 4,
                                  Background -> cols[[-1]]], {t, 0, 2}]]

a variation

POSTED BY: J. M.
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard