(self, args)
| 573 | |
| 574 | |
| 575 | def start_roundrect(self, args): |
| 576 | self.pack_slide('roundrect', args) |
| 577 | rrect = pythonpoint.PPRoundRect( |
| 578 | self.ceval('roundrect',args,'x'), |
| 579 | self.ceval('roundrect',args,'y'), |
| 580 | self.ceval('roundrect',args,'width'), |
| 581 | self.ceval('roundrect',args,'height'), |
| 582 | self.ceval('roundrect',args,'radius') |
| 583 | ) |
| 584 | rrect.fillColor = self.ceval('roundrect',args,'fill') |
| 585 | rrect.strokeColor = self.ceval('roundrect',args,'stroke') |
| 586 | self._curRoundRect = rrect |
| 587 | |
| 588 | |
| 589 | def end_roundrect(self): |
nothing calls this directly
no test coverage detected