diff --git a/pybabylonjs/args.py b/pybabylonjs/args.py index 85aee2e..85f11ae 100644 --- a/pybabylonjs/args.py +++ b/pybabylonjs/args.py @@ -15,15 +15,9 @@ "inspector": None, "color_scheme": None, "z_scale": None, - "gltf_data": None, "topo_offset": None, "classes": {"numbers": [], "names": []}, "time_offset": None, - "distance_colors": None, - "mesh_rotation": [None, None, None], - "mesh_shift": [None, None, None], - "mesh_scale": [None, None, None], - "gltf_multi": False, "point_shift": [None, None, None], "rgb_max": None, "bbox": None, diff --git a/src/widget.ts b/src/widget.ts index 244b4ce..954c6b6 100644 --- a/src/widget.ts +++ b/src/widget.ts @@ -72,15 +72,9 @@ export class BabylonPointCloudView extends BabylonBaseView { colorScheme: this.values.color_scheme, data: this.values.data, zScale: this.values.z_scale, - gltfData: this.values.gltf_data, topoOffset: this.values.topo_offset, classes: this.values.classes, timeOffset: this.values.time_offset, - distanceColors: this.values.distance_colors, - meshRotation: this.values.mesh_rotation, - meshShift: this.values.mesh_shift, - meshScale: this.values.mesh_scale, - gltfMulti: this.values.gltf_multi, source: this.values.source, pointShift: this.values.point_shift, rgbMax: this.values.rgb_max,