Example #1
0
    def display(self):
        if self.print_background:
            fill(SHAPE_BACKGROUND)
            noStroke()
            draw_shape(self.vertices, end_shape_mode=OPEN)
            self.print_background = False

        self.filling.display()
Example #2
0
 def display(self):
     stroke(self.line_color)
     strokeWeight(2.5)
     noFill()
     draw_shape(self.vertices, end_shape_mode=CLOSE)
Example #3
0
 def display(self):
     stroke(LINE_COLOR)
     strokeWeight(2.5)
     noFill()
     draw_shape(self.vertices, end_shape_mode=CLOSE)