Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
Indexed
MCP
copy
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
174
def
_de_casteljau1(beta, t):
175
next_beta = beta[:-1] * (1 - t) + beta[1:] * t
176
return
next_beta
177
178
179
def
split_de_casteljau(beta, t):
Callers
1
split_de_casteljau
Function · 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…