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 γ and a triangle T with a turn of γ, I described what f(γ)T looks like, and gave a picture of this. Our task now is to draw a hex curve wiggled several times.

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 trp=(μ,υ,κ) such that for some triangles t0 and tν (possibly the same),

  • μ beginning at t0,3A ends at t0,4A;
  • υ beginning at t0,5A ends at tν,3F; and
  • κ beginning at tν,4F ends at tν,5F. Fixing t0 and a bend in t0 determines tν.

In the previous post we worked out what these triples were for f(γ)t when t contained a port turn. As in that post, we label the components of f(γ)t variously Mt, Yt, and Ct. Recall that

  • M starts from t3A with course PSPSSSSPSPS, and thus ends at t4A;
  • Y starts from t5A with course PSPSPSPPSPS, and thus ends at t3F; and finally,
  • C starts from t4F with course PSPSSPSPSPSPPPPSPSPSPSPPSPS, and thus ends at t5F.

We express this in Python as follows:

P_becomes = ("PSPSSSSPSPS","PSPSPSPPSPS","PSPSSPSPSPSPPPPSPSPSPSPPSPS")

Suppose we follow that port turn in a triangle t with a starboard turn in another triangle t. For the starboard turn in t, we get the following, mutatis mutandis:

  • M starts from t3A with course PSPSSPSPSPSPSSSSPSPSPSPPSPS, and thus ends at t4A;
  • Y starts from t5A with course PSPSSPSPSPS, and thus ends at t3F; and finally,
  • C starts from t4F with course PSPSPPPPSPS, and thus ends at t5F.

(The ordering of triangles along the given sides of t are also from port to starboard.) We can express this likewise in Python as follows:

S_becomes = ("PSPSSPSPSPSPSSSSPSPSPSPPSPS","PSPSSPSPSPS","PSPSPPPPSPS")

(The reader may check that if Pb is the former triple shown and Sb the latter, then these triples are related by flip(Pb)=Sb, where the function flip reverses each string in the triple, swaps P with S and vice versa, and reverses the triple, as in the following code.)

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:

  • Mt intersects no components of f(γ)t;
  • Ct intersects no components of f(γ)t;
  • Yt ends at t3F;
  • Mt begins at t3A and ends at t4A;
  • Ct begins at t4F and ends at t5F; and finally,
  • Yt begins at t5A.

Joining triples

The union of all these components in the union tt therefore again has three oriented components. Two components have not been fitted together with others. The first is the M component of f(γ)t. The latter is the C component of f(γ)t. Finally, the middle component is composed of the four other components. Considering the components as oriented arcs, and labelling them M,Y,C in t and M,Y,C in t in that order, we have that f(γ)(tt) is also the union of three oriented components, to wit M,YMCY,C in that order.

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.

Joining the components together.

Thus, if trp=(M,Y,C) and trp=(M,Y,C) are two intermediate triples, we define their join trptrp to be (M,YMCY,C).

def join(trp0, trp1):
    (m, y, c) = trp0
    (mp,yp,cp) = trp1
    return (m, y+mp+c+yp, cp)

Wiggling a course

Let Tok={P,S}. Let Tok be the set of courses. Following the above, we define the function wgl:TokTok×Tok×Tok as follows:

wgl(P)=(PSPSSSSPSPS,PSPSPSPPSPS,PSPSSPSPSPSPPPPSPSPSPSPPSPS), wgl(S)=(PSPSSPSPSPSPSSSSPSPSPSPPSPS,PSPSSPSPSPS,PSPSPPPPSPS),

so that wgl(S)=flip(wgl(P)). Then, given a course Γ=k0k1kn1 (with kiTok), we define wiggle(Γ)=wgl(k0)wgl(k1)wgl(kn1). (This is well-defined since wgl is associative.)

With this definition we have almost determined the course of f(γ) given the course Γ of γ. The above gives us that f(γ) is the union of three hex curves whose three courses are those in the triple wiggle(Γ). It remains to determine how to join these courses. Now, wiggle(Γ) is a triple (MM,YY,CC) beginning in some triangle t and ending in some triangle T. Assuming Γ is the course of a closed hex curve, likewise wiggle(Γ) is too. Thus the aft side of t and the fore side of T coincide. So tiA and TiF coincide along these sides for i{3,4,5}. Now, YY ends at T3F and MM begins at t3A; MM ends at t4A and CC begins at T4F; and finally CC ends at T5F and YY begins at t5A. Thus the complete course of f(γ) is YYMMCC.

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