コード例 #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()
コード例 #2
0
ファイル: pdfpiechart.py プロジェクト: emeuler/toolkitem
 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()
コード例 #3
0
ファイル: pdflinegraph.py プロジェクト: atemena/pypdflite
 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()