Z-order Curve


Z-order curve is a type of space filling curve that can be generated very easily using recursion For more info on Z-order check out the wikipedia page

Goals

  1. Understand how to use recursion to generate a Z-curve
  2. Divide the bounding box into four equal areas: Upper left, upper right, lower left, and lower right
  3. Create a SymbolCollection and a Polyline for the Z-curve

Help

Python Resources:

Symbol Collection Polyline

Java Resources:

Symbol Collection Polyline

C++ Resources:

Symbol Collection Polyline