Searched refs:arrow_start (Results 1 – 1 of 1) sorted by relevance
/external/opencv3/doc/pattern_tools/ |
D | svgfig.py | 2199 def __init__(self, x1, y1, x2, y2, arrow_start=None, arrow_end=None, **attr): argument 2201 self.arrow_start, self.arrow_end = arrow_start, arrow_end 2211 if ((self.arrow_start != False and self.arrow_start is not None) or 2215 if self.arrow_start != False and self.arrow_start is not None: 2216 if isinstance(self.arrow_start, SVG): 2217 defs.append(self.arrow_start) 2218 line.attr["marker-start"] = "url(#%s)" % self.arrow_start["id"] 2219 elif isinstance(self.arrow_start, basestring): 2220 defs.append(make_marker(self.arrow_start, "arrow_start")) 2221 line.attr["marker-start"] = "url(#%s)" % self.arrow_start [all …]
|