Skip to content

Commit 61fa4bc

Browse files
updated to viz-core 0.1.2-beta.11
1 parent 5bad289 commit 61fa4bc

File tree

7 files changed

+10
-14
lines changed

7 files changed

+10
-14
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"dependencies": {
5959
"@jupyter-widgets/base": "^1.1.10 || ^2 || ^3 || ^4",
6060
"@jupyterlab/application": "^3.4.5",
61-
"@tiledb-inc/viz-core": "0.1.2-beta.8"
61+
"@tiledb-inc/viz-core": "0.1.2-beta.11"
6262
},
6363
"devDependencies": {
6464
"@jupyterlab/builder": "^3.1.0",

pybabylonjs/args.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 TileDB Inc.
1+
# Copyright 2023 TileDB Inc.
22
# Licensed under the MIT License.
33
"""Functions to format and check the data and keyword arguments for each data source and visualization mode."""
44

@@ -66,10 +66,6 @@ def check_point_cloud_args(mode, point_cloud_args_in):
6666
)
6767
if not "bbox" in point_cloud_args_in:
6868
raise ValueError("The bbox is not specified")
69-
elif mode == "gltf":
70-
raise ValueError("This mode will be implemented soon")
71-
if not "gltf_data" in point_cloud_args_in:
72-
raise ValueError("gltf_data is not specified")
7369

7470
point_cloud_args = {}
7571
for key in POINT_CLOUD_ARGS_DEFAULTS.keys():

pybabylonjs/babylonjs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# coding: utf-8
33

4-
# Copyright 2022 TileDB Inc.
4+
# Copyright 2023 TileDB Inc.
55
# Licensed under the MIT License.
66

77
"""

pybabylonjs/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 TileDB Inc.
1+
# Copyright 2023 TileDB Inc.
22
# Licensed under the MIT License.
33
"""Functions to format data from the arrays to be used in the visualization."""
44

pybabylonjs/show.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 TileDB Inc.
1+
# Copyright 2023 TileDB Inc.
22
# Licensed under the MIT License.
33

44
"""Classes for setting up the visualization."""

src/widget.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2022 TileDB Inc.
1+
// Copyright 2023 TileDB Inc.
22
// Licensed under the MIT License.
33

44
import {

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -806,10 +806,10 @@
806806
paralleljs "github:SarantopoulosKon/parallel.js#node-mode-in-web-worker"
807807
save-file "^2.3.1"
808808

809-
"@tiledb-inc/[email protected].8":
810-
version "0.1.2-beta.8"
811-
resolved "https://registry.yarnpkg.com/@tiledb-inc/viz-core/-/viz-core-0.1.2-beta.8.tgz#8509ff09b9129ed94f73dcd6d7a3ac8d29c168ac"
812-
integrity sha512-IFfDpVVpGNQ5sVTPTu8zXMNhZyidYBnz2Syqb/SNOiNyRXq323CfLqvhfhSemQL2kiN4ZnYhsz2g3ddWGa1JZw==
809+
"@tiledb-inc/[email protected].11":
810+
version "0.1.2-beta.11"
811+
resolved "https://registry.yarnpkg.com/@tiledb-inc/viz-core/-/viz-core-0.1.2-beta.11.tgz#be8b78300ddd74c9cad48d69d165b932b6a38ed4"
812+
integrity sha512-P4WmSrhrqoW4BCwgjk+D1Uds3DlF8Ky433N2Kuz9BKxReGHJGkmO80BtbCYL8RIJlGzX4LCZPJSnuWWrafG+Ig==
813813
dependencies:
814814
"@babylonjs/core" "^5.42.0"
815815
"@babylonjs/gui" "^5.42.0"

0 commit comments

Comments
 (0)