Bagula's Double V fractal

This fractal is found at tftnrlb. Here is another code to generate it.
[It is in Logomation, but should be self-explanatory.]
// Bagula's Double V
// http://members.tripod.com/tftnrlb/V_fractals.html
// August 1999

function bdv(depth,size)
    if depth=0
        forward size
        return
    bdv(depth-1,size/2)
    left 120
    bdv(depth-1,size/2)
    right 180
    bdv(depth-1,size/2)
    left 60
    bdv(depth-1,size/2)
up
back 300
down
bdv(7,600)
right 180
bdv(7,600)

Here is a pic that shows how six copies of it fit together exactly.

Have fun!