File tree Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -104,12 +104,13 @@ def from_dict(
104
104
105
105
data = check_point_cloud_data_dict (mode , data )
106
106
107
- point_cloud_args = check_point_cloud_args (mode , kwargs )
107
+ point_cloud_args = check_point_cloud_args (mode , False , kwargs )
108
108
109
109
d = {
110
110
** point_cloud_args ,
111
111
"uri" : uri ,
112
112
"data" : data ,
113
+ "streaming" : False ,
113
114
"source" : source ,
114
115
"mode" : mode ,
115
116
}
@@ -147,23 +148,15 @@ class BabylonJS:
147
148
def __init__ (self ):
148
149
self .value = None
149
150
self .z_scale = None
150
- self .width = None
151
- self .height = None
152
151
153
152
def _ipython_display_ (self ):
154
- kwargs = check_point_cloud_args ("default" , {})
153
+ kwargs = check_point_cloud_args ("default" , False , {})
155
154
156
155
kwargs ["source" ] = "dict"
157
156
158
157
if self .z_scale :
159
158
kwargs ["z_scale" ] = self .z_scale
160
159
161
- if self .width :
162
- kwargs ["width" ] = self .width
163
-
164
- if self .height :
165
- kwargs ["height" ] = self .height
166
-
167
160
d = {"data" : self .value }
168
161
169
162
create_dataviz (BabylonPointCloud (), d , ** kwargs )
You can’t perform that action at this time.
0 commit comments