diff --git a/asciiWriter/examples/image_random_char.py b/asciiWriter/examples/image_random_char.py index 13ac877..84d85da 100644 --- a/asciiWriter/examples/image_random_char.py +++ b/asciiWriter/examples/image_random_char.py @@ -16,8 +16,8 @@ image_pattern = image(image_path) # Set the marker, in this case it makes a random selection from # the list: +, *, $, #, , mark = random(['+', '*', '$', '#', ' ', ' ']) -# Define what to use on a blank space, as a variation you coul use: single('*') -blank = single() +# Define what to use on a blank space, as a variation you could use: single('*') +blank = space() # Make a canvas lines = make_lines(width, height) diff --git a/asciiWriter/examples/image_rotate.py b/asciiWriter/examples/image_rotate.py index 20b9c8c..524852b 100644 --- a/asciiWriter/examples/image_rotate.py +++ b/asciiWriter/examples/image_rotate.py @@ -22,7 +22,7 @@ image_pattern = image(image_path) # Set the marker, in this case a sentence mark = sentence('ASCII ') # Define what to use on a blank space, as a variation you coul use: single('*') -blank = single(' ') +blank = space() # Make a canvas lines = make_lines(width, height) diff --git a/asciiWriter/examples/repeated_sinus_amplitude_variation.py b/asciiWriter/examples/repeated_sinus_amplitude_variation.py index daf6519..c0fc169 100644 --- a/asciiWriter/examples/repeated_sinus_amplitude_variation.py +++ b/asciiWriter/examples/repeated_sinus_amplitude_variation.py @@ -21,7 +21,7 @@ for amplitude in range(-40, 50, 10): # We use a sentence to draw the text mark = sentence('VARIA-') # Define a blank character - blank = space('-') + blank = single('-') # Make the canvas lines = make_lines(width, height) diff --git a/asciiWriter/examples/sinus.py b/asciiWriter/examples/sinus.py index 8d21ffc..2d07125 100644 --- a/asciiWriter/examples/sinus.py +++ b/asciiWriter/examples/sinus.py @@ -15,7 +15,7 @@ pattern = sinus_vertical(period=40, amplitude=30) # We use a sentence to draw the text mark = sentence('OPEN DESIGN COURSE ') # Define a blank character -blank = single(' ') +blank = single('-') # Make the canvas lines = make_lines(width, height)