Jordan curve illustrations: wiggling a course
There is a Jordan curve such that every piecewise-linear path from the inside to the outside intersects the curve infinitely many times. I define the wiggling precisely here in terms of courses (turn-type sequences).
Local wiggling to triples
Last time I described the local picture of a wiggled hex curve.
That is, given a hex curve
Our preferred representation of a hex curve is its course, i.e. its sequence of turn-types. The local picture in a triangle always wiggles to three oriented components, yielding three courses. We want to specify triples of courses of the sort one gets by taking the courses of such unions of oriented components in a sequence of consecutively adjacent triangles.
More specifically, let us say an (intermediate) triple is a triple of courses
beginning at ends at beginning at ends at and beginning at ends at Fixing and a bend in determines
In the previous post we worked out what these triples were for
starts from with course and thus ends at starts from with course and thus ends at and finally, starts from with course and thus ends at
We express this in Python as follows:
P_becomes = ("PSPSSSSPSPS","PSPSPSPPSPS","PSPSSPSPSPSPPPPSPSPSPSPPSPS")
Suppose we follow that port turn in a triangle
starts from with course and thus ends at starts from with course and thus ends at and finally, starts from with course and thus ends at
(The ordering of triangles along the given sides of
S_becomes = ("PSPSSPSPSPSPSSSSPSPSPSPPSPS","PSPSSPSPSPS","PSPSPPPPSPS")
(The reader may check that if
def flip(trp):
lst = list(trp)
lst = [list(reversed(path)) for path in lst]
swap = lambda tok: "P" if tok == "S" else "S"
lst = [[swap(tok) for tok in path] for path in lst]
return tuple(reversed(lst))
Thus the following statements hold:
intersects no components of intersects no components of ends at begins at and ends at begins at and ends at and finally, begins at
Joining triples
The union of all these components in the union
The same incidence relations hold, with different courses, when following port with port, starboard with port, or starboard with starboard. Port to starboard and starboard to starboard are depicted in the following figure.
Thus, if
def join(trp0, trp1):
(m, y, c) = trp0
(mp,yp,cp) = trp1
return (m, y+mp+c+yp, cp)
Wiggling a course
Let
so that
With this definition we have almost determined the course of
def wiggle(tokens):
trps = map(lambda tok: P_becomes if tok == 'P' else S_becomes, tokens)
tot = trps.__next__()
for trp in trps:
tot = join(tot,trp)
(MM,YY,CC) = tot
return YY + MM + CC