Apply scale transforms, project, and return clipping result. Returns txs, tys, tzs, tis.
(xs, ys, zs, axes)
| 242 | |
| 243 | |
| 244 | def _scale_proj_transform_clip(xs, ys, zs, axes): |
| 245 | """ |
| 246 | Apply scale transforms, project, and return clipping result. |
| 247 | |
| 248 | Returns txs, tys, tzs, tis. |
| 249 | """ |
| 250 | xs, ys, zs = _apply_scale_transforms(xs, ys, zs, axes) |
| 251 | vec = _vec_pad_ones(xs, ys, zs) |
| 252 | return _proj_transform_vec_clip(vec, axes.M, axes._focal_length) |
| 253 | |
| 254 | |
| 255 | def _proj_trans_points(points, M): |
nothing calls this directly
no test coverage detected
searching dependent graphs…