Ejemplo n.º 1
0
 def _draw_dots(self, cursors):
     if self.dots is not None:
         for cursor in cursors:
             dot = PDFEllipse(self.session,
                              self.page,
                              cursor,
                              PDFCursor(self.dots, self.dots),
                              style="F")
             dot._draw()
Ejemplo n.º 2
0
 def draw_base_circle(self):
     circle = PDFEllipse(self.session, self.page, self.center_cursor, PDFCursor(self.radius, self.radius), self.base_color, None, style="S", stroke="solid", size=1)
     circle._draw()
Ejemplo n.º 3
0
 def _draw_dots(self, cursors):
     if self.dots is not None:
         for cursor in cursors:
             dot = PDFEllipse(self.session, self.page, cursor, PDFCursor(self.dots, self.dots))
             dot._draw()