From b27b1d93d85fb6047375d718cfa6b518e72fa378 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Mon, 3 Mar 2025 00:52:51 -0800 Subject: [PATCH] [utils.curves.bezier] improve handling of non-ndarray inputs --- masque/utils/curves.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/masque/utils/curves.py b/masque/utils/curves.py index 276c0ed..871b58e 100644 --- a/masque/utils/curves.py +++ b/masque/utils/curves.py @@ -22,9 +22,10 @@ def bezier( Returns: `[[x0, y0], [x1, y1], ...]` corresponding to `[tt0, tt1, ...]` """ + nodes = numpy.asarray(nodes) + tt = numpy.asarray(tt) nn = nodes.shape[0] - if weights is None: - weights = numpy.ones(nn) + weights = numpy.ones(nn) if weights is None else numpy.asarray(weights) t_half0 = tt <= 0.5 umul = tt / (1 - tt)