(a,b)
| 112 | +mat[2,0]*(mat[0,1]*mat[1,2]-mat[0,2]*mat[1,1]) |
| 113 | |
| 114 | def PyCross(a,b): |
| 115 | return CoefficientFunction( (a[1]*b[2]-a[2]*b[1],a[2]*b[0]-a[0]*b[2],a[0]*b[1]-a[1]*b[0]) ) |
| 116 | |
| 117 | def PyCof(m): |
| 118 | if m.dims[0] == 1: |
nothing calls this directly
no test coverage detected