(self, linewidth, pts)
| 137 | class LTCurve(LTComponent): |
| 138 | |
| 139 | def __init__(self, linewidth, pts): |
| 140 | LTComponent.__init__(self, get_bound(pts)) |
| 141 | self.pts = pts |
| 142 | self.linewidth = linewidth |
| 143 | return |
| 144 | |
| 145 | def get_pts(self): |
| 146 | return ','.join( '%.3f,%.3f' % p for p in self.pts ) |