Skip to content

Commit

Permalink
Fixed missing snap transformation in README.
Browse files Browse the repository at this point in the history
  • Loading branch information
dpmcmlxxvi committed Sep 30, 2015
1 parent 657f587 commit aa67c30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ from the origin up to a radius of 1

.. code-block:: python
for x, y in circlescan(0, 0, 0, 1):
for x, y in snap(circlescan(0, 0, 0, 1)):
print x, y
and will generate the following points
Expand All @@ -51,7 +51,7 @@ To skip every other pixel a skip transformation can be applied

.. code-block:: python
for x, y in skip(circlescan(0, 0, 0, 1), step=2):
for x, y in skip(snap(circlescan(0, 0, 0, 1), step=2)):
print x, y
which will generate the following points
Expand Down

0 comments on commit aa67c30

Please sign in to comment.