Transform the points by the projection matrix *M*.
(xs, ys, zs, M)
| 228 | |
| 229 | |
| 230 | def proj_transform(xs, ys, zs, M): |
| 231 | """ |
| 232 | Transform the points by the projection matrix *M*. |
| 233 | """ |
| 234 | vec = _vec_pad_ones(xs, ys, zs) |
| 235 | return _proj_transform_vec(vec, M) |
| 236 | |
| 237 | |
| 238 | @_api.deprecated("3.10") |
no test coverage detected
searching dependent graphs…