@itwin/core-geometry 4.2.0 → 4.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -323,7 +323,7 @@ export var IModelJson;
323
323
  static parseBcurve(data) {
324
324
  if (data === undefined)
325
325
  return undefined;
326
- if (Array.isArray(data.points) && Array.isArray(data.knots) && Number.isFinite(data.order) && data.closed !== undefined) {
326
+ if (Array.isArray(data.points) && Array.isArray(data.knots) && Number.isFinite(data.order)) {
327
327
  if (data.points[0].length === 4) {
328
328
  const hPoles = [];
329
329
  for (const p of data.points)