Example #1
0
def combo(data, a1, b1, a2, b2, a3, b3, theta):
    pixel_picture(solutions.rotate(
        solutions.reflect(
            solutions.shear(solutions.stretch(data, a1, b1), a2, b2), a3, b3),
        theta),
                  "Composition",
                  top=False)
Example #2
0
def combo(data, a1, b1, a2, b2, a3, b3, theta):
    pixel_picture(
        solutions.rotate(
            solutions.reflect(
                solutions.shear(
                    solutions.stretch(data, a1, b1),
                a2, b2),
            a3, b3),
        theta),
    "Composition", top=False)
Example #3
0
def stretched(data, a, b):
    pixel_picture(solutions.stretch(data, a, b), "Stretch", top=True)
Example #4
0
def stretched(data, a, b):
    pixel_picture(solutions.stretch(data, a, b), "Stretch", top=True)