MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / _scale_proj_transform

Function _scale_proj_transform

lib/mpl_toolkits/mplot3d/proj3d.py:261–269  ·  view source on GitHub ↗

Apply scale transforms and project. Combines `_apply_scale_transforms` and `proj_transform` into a single call. Returns txs, tys, tzs.

(xs, ys, zs, axes)

Source from the content-addressed store, hash-verified

259
260
261def _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)

Callers

nothing calls this directly

Calls 2

_apply_scale_transformsFunction · 0.85
proj_transformFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…