(self, view, origin=None, **kwargs)
| 166 | # H T M L / S A S S S U P P O R T |
| 167 | |
| 168 | def build_html(self, view, origin=None, **kwargs): |
| 169 | p = pointOffset(self.origin, origin) |
| 170 | p = self._applyScale(view, p) |
| 171 | px, py, _ = p = self._applyAlignment(p) # Ignore z-axis for now. |
| 172 | self.buildChildElements(view, p, **kwargs) |
| 173 | self._restoreScale(view) |
| 174 | view.drawElementInfo(self, origin) # Depends on css flag 'showElementInfo' |
nothing calls this directly
no test coverage detected