(self, other)
| 88 | self.a.MultTransAdd(s*self.s*x.s,x.a,y.a) |
| 89 | |
| 90 | def __mul__(self, other): |
| 91 | if isinstance(Expr(other), VecExpr): |
| 92 | return MatVecExpr(self, Expr(other)) |
| 93 | try: |
| 94 | return self.Scale(float(other)) |
| 95 | except: |
| 96 | return None |
| 97 | |
| 98 | def __len__(self): |
| 99 | return self.a.Height() |
nothing calls this directly
no test coverage detected