Skip to content

A Python implementation of popular space filling curves

License

Notifications You must be signed in to change notification settings

mbrg/space-filling-curves

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Space Filling Curves

A Python implementation of popular space filling curves. Run demo notebook for a demonstration.

Usage example:

from curves import Hilbert_Curve

square_size = 16
start_coor = (0,0)

Hilbert_Curve = Line_Curve(square_size, start_coor)
for coor in Hilbert_Curve: 
  print coor

Available Curves

Line Curve Hilbert Curve

About

A Python implementation of popular space filling curves

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published