From 5c76b774b898be3e95a7a0caeb02b57379a4af43 Mon Sep 17 00:00:00 2001 From: spcvanschie Date: Thu, 19 Oct 2023 16:13:30 -0700 Subject: [PATCH] bug fix: changed way get_open_uniform() keywords are input to be in line with other places where get_open_uniform() is called --- lsdo_geo/splines/b_splines/b_spline_space.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lsdo_geo/splines/b_splines/b_spline_space.py b/lsdo_geo/splines/b_splines/b_spline_space.py index a7e7c22..2c51d82 100644 --- a/lsdo_geo/splines/b_splines/b_spline_space.py +++ b/lsdo_geo/splines/b_splines/b_spline_space.py @@ -36,7 +36,7 @@ def __post_init__(self): for i in range(self.num_parametric_dimensions): num_knots = self.order[i] + self.parametric_coefficients_shape[i] knots_i = np.zeros((num_knots,)) - get_open_uniform(order=self.order[i], num_coefficients=self.parametric_coefficients_shape[i], knot_vector=knots_i) + get_open_uniform(self.order[i], self.parametric_coefficients_shape[i], knots_i) self.knot_indices.append(np.arange(len(self.knots), len(self.knots) + num_knots)) self.knots = np.hstack((self.knots, knots_i)) else: