Apply scale transforms and project. Combines `_apply_scale_transforms` and `proj_transform` into a single call. Returns txs, tys, tzs.
(xs, ys, zs, axes)
| 259 | |
| 260 | |
| 261 | def _scale_proj_transform(xs, ys, zs, axes): |
| 262 | """ |
| 263 | Apply scale transforms and project. |
| 264 | |
| 265 | Combines `_apply_scale_transforms` and `proj_transform` into a single |
| 266 | call. Returns txs, tys, tzs. |
| 267 | """ |
| 268 | xs, ys, zs = _apply_scale_transforms(xs, ys, zs, axes) |
| 269 | return proj_transform(xs, ys, zs, axes.M) |
nothing calls this directly
no test coverage detected
searching dependent graphs…