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

Function proj_transform

lib/mpl_toolkits/mplot3d/proj3d.py:230–235  ·  view source on GitHub ↗

Transform the points by the projection matrix *M*.

(xs, ys, zs, M)

Source from the content-addressed store, hash-verified

228
229
230def 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")

Callers 2

_proj_trans_pointsFunction · 0.85
_scale_proj_transformFunction · 0.85

Calls 2

_vec_pad_onesFunction · 0.85
_proj_transform_vecFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…