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

Function _de_casteljau1

lib/matplotlib/bezier.py:174–176  ·  view source on GitHub ↗
(beta, t)

Source from the content-addressed store, hash-verified

172
173
174def _de_casteljau1(beta, t):
175 next_beta = beta[:-1] * (1 - t) + beta[1:] * t
176 return next_beta
177
178
179def split_de_casteljau(beta, t):

Callers 1

split_de_casteljauFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…