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
- Understand how to use recursion to generate a Z-curve
- Divide the bounding box into four equal areas: Upper left, upper right, lower left, and lower right
- 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