-
Notifications
You must be signed in to change notification settings - Fork 192
/
Copy pathThree.js
887 lines (740 loc) · 28.1 KB
/
Three.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
var _ = require('underscore');
var widgets = require('@jupyter-widgets/base');
var Promise = require('bluebird');
var ndarray = require('ndarray');
var dataserializers = require('jupyter-dataserializers');
var THREE = require('three');
var Enums = require('./enums');
var utils = require('./utils');
var EXTENSION_SPEC_VERSION = require('../version').EXTENSION_SPEC_VERSION;
/**
* Helper function for listening to child models in lists/dicts
*
* @param {any} model The parent model
* @param {any} propNames The propetry names that are lists/dicts
* @param {any} callback The callback to call when child changes
*/
function listenNested(model, propNames, callback) {
propNames.forEach(function(propName) {
// listen to current values in array
var curr = model.get(propName) || [];
// support properties that are either an instance, or a
// sequence of instances:
if (curr instanceof ThreeModel) {
model.listenTo(curr, 'change', callback);
model.listenTo(curr, 'childchange', callback);
} else {
utils.childModelsNested(curr).forEach(function(childModel) {
model.listenTo(childModel, 'change', callback);
model.listenTo(childModel, 'childchange', callback);
});
}
// make sure to (un)hook listeners when array changes
model.on('change:' + propName, function(model, value) {
var prev = model.previous(propName) || [];
var curr = value || [];
// Check for instance values:
if (prev instanceof ThreeModel) {
model.stopListening(prev);
}
if (curr instanceof ThreeModel) {
model.listenTo(curr, 'change', callback);
model.listenTo(curr, 'childchange', callback);
}
// Done if both are instance values:
if (prev instanceof ThreeModel && curr instanceof ThreeModel) {
return;
}
if (prev instanceof ThreeModel) {
// Implies curr is array
utils.childModelsNested(curr).forEach(function(childModel) {
model.listenTo(childModel, 'change', callback);
model.listenTo(childModel, 'childchange', callback);
});
} else if (curr instanceof ThreeModel) {
// Implies prev is array
utils.childModelsNested(prev).forEach(function(childModel) {
model.stopListening(childModel);
});
} else {
// Both are arrays
var diff = utils.nestedDiff(curr, prev);
diff.added.forEach(function(childModel) {
model.listenTo(childModel, 'change', callback);
model.listenTo(childModel, 'childchange', callback);
});
diff.removed.forEach(function(childModel) {
model.stopListening(childModel);
});
}
});
});
}
var ThreeModel = widgets.WidgetModel.extend({
defaults: function() {
return _.extend(widgets.WidgetModel.prototype.defaults.call(this), {
_model_name: this.constructor.model_name,
_model_module: this.constructor.model_module,
_model_module_version: this.constructor.model_module_version
});
},
initialize: function(attributes, options) {
widgets.WidgetModel.prototype.initialize.apply(this, arguments);
this.createPropertiesArrays();
if (options.three_obj) {
// We are defining the object from a given THREE object!
// We need to push a default state first, as comm open does
// not support buffers!
// Fixed in:
// - @jupyterlab/[email protected]
// - notebook 5.1.0
this.save_changes();
var obj = options.three_obj;
delete options.three_obj;
this.processNewObj(obj);
this.initPromise = this.createUninitializedChildren().bind(this).then(function() {
// sync in all the properties from the THREE object
this.syncToModel(true);
// setup msg, model, and children change listeners
this.setupListeners();
});
return;
}
// Instantiate Three.js object
this.initPromise = this.createThreeObjectAsync().bind(this).then(function() {
return this.createUninitializedChildren();
}).then(function() {
// pull in props created by three
this.syncToModel();
// sync the rest from the server to the model
this.syncToThreeObj(true);
// setup msg, model, and children change listeners
this.setupListeners();
});
},
createPropertiesArrays: function() {
// initialize properties arrays
this.three_properties = [];
this.three_nested_properties = [];
this.datawidget_properties = [];
this.enum_property_types = {};
this.props_created_by_three = {};
this.property_converters = {};
this.property_assigners = {};
this.property_mappers = {};
this.initialized_from_three = {};
},
setupListeners: function() {
// Handle changes in three instance props
this.three_properties.forEach(function(propName) {
// register listener for current child value
var curValue = this.get(propName);
if (curValue) {
this.listenTo(curValue, 'change', this.onChildChanged.bind(this));
this.listenTo(curValue, 'childchange', this.onChildChanged.bind(this));
}
// make sure to (un)hook listeners when child points to new object
this.on('change:' + propName, function(model, value) {
var prevModel = this.previous(propName);
var currModel = value;
if (prevModel) {
this.stopListening(prevModel);
}
if (currModel) {
this.listenTo(currModel, 'change', this.onChildChanged.bind(this));
this.listenTo(currModel, 'childchange', this.onChildChanged.bind(this));
}
}, this);
}, this);
// Handle changes in three instance nested props (arrays/dicts, possibly nested)
listenNested(this, this.three_nested_properties, this.onChildChanged.bind(this));
// Handle changes in data widgets/union properties
this.datawidget_properties.forEach(function(propName) {
dataserializers.listenToUnion(this, propName, this.onDataChanged.bind(this), false);
}, this);
this.on('change', this.onChange, this);
this.on('msg:custom', this.onCustomMessage, this);
this.on('destroy', this.onDestroy, this);
},
processNewObj: function(obj) {
console.debug("processNewObj: " + this.name);
obj.ipymodelId = this.model_id; // brand that sucker
obj.ipymodel = this;
this.obj = obj;
return obj;
},
createUninitializedChildren: function() {
console.debug("createUninitializedChildren: " + this.name);
// Get any properties to create from this side
var uninit = _.filter(this.three_properties, function(propName) {
modelProp = this.get(propName);
return modelProp === 'uninitialized' ||
(this.obj[propName] != null && modelProp == null);
}, this);
// Standard properties
var p1 = Promise.all(_.map(uninit, function(propName) {
this.initialized_from_three[propName] = true;
var obj = this.obj[propName];
// First, we need to figure out which model constructor to use
var ctorName = utils.lookupThreeConstructorName(obj) + 'Model';
var index = require('../');
var ctor = index[ctorName];
// Create the model
var modelPromise = utils.createModel(ctor, this.widget_manager, obj);
return modelPromise;
}, this));
// Nested properties
var p2 = Promise.all(_.map(this.three_nested_properties, function(propName) {
this.initialized_from_three[propName] = true;
var collection = this.obj[propName];
if (collection == null)
{
return Promise.resolve();
}
var children;
if (Array.isArray(collection)) {
children = collection;
} else if (collection.constructor.name == 'Object') {
children = Object.keys(collection).map(function(childModelKey) {
return collection[childModelKey];
});
} else {
// TODO: Check if this is actually an instance of an object -- ThreeTypeArray(allow_single = true)
var obj = collection;
// First, we need to figure out which model constructor to use
var ctorName = utils.lookupThreeConstructorName(obj) + 'Model';
var index = require('../');
var ctor = index[ctorName];
// Create the model
return utils.createModel(ctor, this.widget_manager, obj);
}
return Promise.all(_.map(children, function(childObj) {
// Already has a model
if (childObj.ipymodel !== undefined) {
return Promise.resolve(childObj.ipymodel);
}
// First, we need to figure out which model constructor to use
var ctorName = utils.lookupThreeConstructorName(childObj) + 'Model';
var index = require('../');
var ctor = index[ctorName];
// Create the model
var modelPromise = utils.createModel(ctor, this.widget_manager, childObj);
return modelPromise;
}, this));
}, this));
return Promise.all(p1, p2);
},
createThreeObjectAsync: function() {
var objPromise;
// call constructor method overridden by every class
// check for custom async three obj creator
if (this.constructThreeObjectAsync) {
objPromise = this.constructThreeObjectAsync();
} else if (this.constructThreeObject) {
objPromise = Promise.resolve(this.constructThreeObject());
} else {
throw new Error('no THREE construct method exists: this.createThreeObjectAsync');
}
return objPromise.bind(this).then(this.processNewObj);
},
// Over-ride this method to customize how THREE object is created
constructThreeObject: function() {},
onDestroy: function() {
if (this.obj) {
if (this.obj.dispose) {
this.obj.dispose();
}
delete this.obj;
}
},
//
// Remote execution of three.js object methods
//
onCustomMessage: function(content, buffers) {
switch(content.type) {
case 'exec_three_obj_method':
this.onExecThreeObjMethod(content.method_name, content.args, content.buffers);
break;
case 'freeze':
break;
case 'print':
console.log('SERVER: ' + JSON.stringify(content.msg));
break;
default:
console.error('ERROR: invalid custom message', content);
}
},
onExecThreeObjMethod: function(methodName, args, buffers) {
console.debug('execThreeObjMethod: ' + methodName +
'(' + args.map(JSON.stringify).join(',') + ')');
if (!(methodName in this.obj)) {
throw new Error('Invalid methodName: ' + methodName);
}
// convert serialized args to three.js compatible values
args = args.map(function(arg) {
if (Array.isArray(arg)) {
if (arg.length === 2) {
return new THREE.Vector2().fromArray(arg);
} else if (arg.length === 3) {
return new THREE.Vector3().fromArray(arg);
} else if (arg.length === 4) {
return new THREE.Vector4().fromArray(arg);
} else if (arg.length === 9) {
return new THREE.Matrix3().fromArray(arg);
} else if (arg.length === 16) {
return new THREE.Matrix4().fromArray(arg);
} else {
return arg;
}
} else if (typeof arg === 'string' && /IPY_MODEL_/.test(arg)) {
arg = arg.replace('IPY_MODEL_', '');
return this.widget_manager.get_model(arg).then(function(model) {
return model.obj;
});
} else {
return arg;
}
}, this);
return Promise.all(args).bind(this).then(function(args) {
var retVal = this.obj[methodName].apply(this.obj, args);
this.syncToModel(true);
if (retVal !== null && retVal !== undefined) {
if (retVal.ipymodel) {
retVal = retVal.ipymodel;
}
console.debug('sending return value to server...');
this.send({
type: 'exec_three_obj_method_retval',
method_name: methodName,
ret_val: retVal,
}, this.callbacks(), null);
}
});
},
//
// Data-binding methods for syncing between model and three.js object
//
onChange: function(model, options) {
if (options !== 'pushFromThree') {
this.syncToThreeObj();
// Also sync back out any generated properties:
this.syncToModel();
}
},
onChildChanged: function(model) {
console.debug('child changed: ' + model.model_id);
// Propagate up hierarchy:
this.trigger('childchange', this);
},
onDataChanged: function(model, options) {
console.debug('child data changed: ' + model.model_id);
// Treat a data widget change as if data attribute changed
// Note: hasChanged() etc won't identify the attribute, so
// property_mappers should be used for union properties.
this.onChange(model, options);
// Propagate up hierarchy:
this.trigger('childchange', this);
},
// push data from model to three object
syncToThreeObj: function(force) {
console.debug("syncToThreeObj: " + this.name);
_.each(this.property_converters, function(converterName, propName) {
if (!force && !this.hasChanged(propName)) {
// Only set changed properties unless forced
return;
}
var assigner = this[this.property_assigners[propName]] || this.assignDirect;
assigner = assigner.bind(this);
if (!converterName) {
assigner(this.obj, propName, this.get(propName));
return;
}
converterName = converterName + 'ModelToThree';
var converterFn = this[converterName];
if (!converterFn) {
throw new Error('invalid converter name: ' + converterName);
}
assigner(this.obj, propName, converterFn.bind(this)(this.get(propName), propName));
}, this);
// mappers are used for more complicated conversions between model and three props
// see: DataTexture
_.each(this.property_mappers, function(mapperName) {
if (!mapperName) {
throw new Error('invalid mapper name: ' + mapperName);
}
mapperName = mapperName + 'ModelToThree';
var mapperFn = this[mapperName];
if (!mapperFn) {
throw new Error('invalid mapper name: ' + mapperName);
}
mapperFn.bind(this)();
}, this);
},
// push data from three object to model
syncToModel: function(syncAllProps) {
console.debug("syncToModel: " + this.name);
syncAllProps = syncAllProps === null ? false : syncAllProps;
// Collect all the keys to set in one go
var toSet = {};
_.each(this.property_converters, function(converterName, propName) {
if (!syncAllProps && !(propName in this.props_created_by_three)) {
if (this.initialized_from_three[propName]) {
delete this.initialized_from_three[propName];
} else {
return;
}
}
if (this.obj[propName] === undefined) {
return;
}
if (!converterName) {
toSet[propName] = this.obj[propName];
return;
}
converterName = converterName + 'ThreeToModel';
var converterFn = this[converterName];
if (!converterFn) {
throw new Error('invalid converter name: ' + converterName);
}
toSet[propName] = converterFn.bind(this)(this.obj[propName], propName);
}, this);
if (toSet) {
// Apply all direct changes at once
this.set(toSet, 'pushFromThree');
}
// mappers are used for more complicated conversions between model and three props
// see: DataTexture
_.each(this.property_mappers, function(mapperName, dataKey) {
if (!mapperName) {
throw new Error('invalid mapper name: ' + mapperName);
}
mapperName = mapperName + 'ThreeToModel';
var mapperFn = this[mapperName];
if (!mapperFn) {
throw new Error('invalid mapper name: ' + mapperName);
}
mapperFn.bind(this)(dataKey);
}, this);
this.save_changes();
},
//
// Conversions
//
assignDirect: function(obj, key, value) {
obj[key] = value;
},
/**
* Check if array exists, if so replace content. Otherwise assign value.
*/
assignArray: function(obj, key, value) {
var existing = obj[key];
if (existing !== null && existing !== undefined) {
// existing.splice(0, existing.length, ...value);
existing.splice.apply(existing, [0, existing.length].concat(value));
} else {
obj[key] = value;
}
},
// Float
convertFloatModelToThree: function(v) {
if (typeof v === 'string' || v instanceof String) {
v = v.toLowerCase();
if (v === 'inf') {
return Infinity;
} else if (v === '-inf') {
return -Infinity;
} else if (v === 'nan') {
return NaN;
}
}
return v;
},
convertFloatThreeToModel: function(v) {
if (isFinite(v)) { // Most common first
return v;
} else if (isNaN(v)) {
return 'nan';
} else if (v === Infinity) {
return 'inf';
} else if (v === -Infinity) {
return '-inf';
}
return v;
},
// Bool
convertBoolModelToThree: function(v) {
return v;
},
convertBoolThreeToModel: function(v) {
if (v === null) {
return null;
}
// Coerce falsy/truthy:
return !!v;
},
// Enum
convertEnumModelToThree: function(e) {
if (e === null) {
return null;
}
return THREE[e];
},
convertEnumThreeToModel: function(e, propName) {
if (e === null) {
return null;
}
var enumType = this.enum_property_types[propName];
var enumValues = Enums[enumType];
var enumValueName = enumValues[e];
return enumValueName;
},
// Vectors
convertVectorModelToThree: function(v) {
var result;
switch(v.length) {
case 2: result = new THREE.Vector2(); break;
case 3: result = new THREE.Vector3(); break;
case 4: result = new THREE.Vector4(); break;
default:
throw new Error('model vector has invalid length: ' + v.length);
}
result.fromArray(v);
return result;
},
convertVectorThreeToModel: function(v) {
return v.toArray();
},
assignVector: function(obj, key, value) {
obj[key].copy(value);
},
// Euler
convertEulerModelToThree: function(v) {
return new THREE.Euler().fromArray(v);
},
convertEulerThreeToModel: function(v) {
return v.toArray();
},
assignEuler: function(obj, key, value) {
obj[key].copy(value);
},
// Vector Array
convertVectorArrayModelToThree: function(varr, propName) {
return varr.map(function(v) {
return this.convertVectorModelToThree(v, propName);
}, this);
},
convertVectorArrayThreeToModel: function(varr, propName) {
return varr.map(function(v) {
return this.convertVectorThreeToModel(v, propName);
}, this);
},
// Color Array
convertColorArrayModelToThree: function(carr, propName) {
return carr.map(function(c) {
return this.convertColorModelToThree(c, propName);
}, this);
},
convertColorArrayThreeToModel: function(carr, propName) {
return carr.map(function(c) {
return this.convertColorThreeToModel(c, propName);
}, this);
},
// Faces
convertFaceModelToThree: function(f) {
var normal = f[3];
if (normal !== undefined && normal !== null) {
if (Array.isArray(normal) && normal.length > 0 && Array.isArray(normal[0])) {
normal = normal.map(function (value) {
return this.convertVectorModelToThree(value);
}, this);
} else {
normal = this.convertVectorModelToThree(normal);
}
}
var color = f[4];
if (color !== undefined && color !== null) {
if (Array.isArray(color)) {
color = color.map(function (value) {
return new THREE.Color(value);
}, this);
} else {
color = new THREE.Color(color);
}
}
var result = new THREE.Face3(
f[0], // a
f[1], // b
f[2], // c
normal, // normal
color, // color
f[5] // materialIndex
);
return result;
},
convertFaceThreeToModel: function(f) {
return [
f.a,
f.b,
f.c,
f.vertexNormals.length > 0
? this.convertVectorArrayThreeToModel(f.vertexNormals)
: f.normal.toArray(),
f.vertexColors.length > 0
? this.convertColorArrayThreeToModel(f.vertexColors)
: this.convertColorThreeToModel(f.color),
f.materialIndex,
];
},
// Face Array
convertFaceArrayModelToThree: function(farr, propName) {
return farr.map(function(f) {
return this.convertFaceModelToThree(f, propName);
}, this);
},
convertFaceArrayThreeToModel: function(farr, propName) {
return farr.map(function(f) {
return this.convertFaceThreeToModel(f, propName);
}, this);
},
// Matrices
convertMatrixModelToThree: function(m) {
var result;
switch(m.length) {
case 9: result = new THREE.Matrix3(); break;
case 16: result = new THREE.Matrix4(); break;
default:
throw new Error('model matrix has invalid length: ' + m.length);
}
result.fromArray(m);
return result;
},
convertMatrixThreeToModel: function(m) {
return m.toArray();
},
assignMatrix: function(obj, key, value) {
obj[key].copy(value);
},
// Functions
convertFunctionModelToThree: function(fnStr) {
var fn;
eval('fn = ' + fnStr);
return fn;
},
convertFunctionThreeToModelToThree: function(fn) {
return fn.toString();
},
// ThreeType
convertThreeTypeModelToThree: function(model) {
if (model) {
return model.obj;
}
return null;
},
convertThreeTypeThreeToModel: function(threeType) {
if (!threeType) {
return threeType;
}
return threeType.ipymodel;
},
// Dict
assignDict: function(obj, key, value) {
if (obj[key] === value) {
// If instance equality, do nothing.
return;
}
if (obj[key] === undefined || obj[key] === null) {
if (value === null || value === undefined) {
// Leave it as it is
return;
}
obj[key] = {};
}
// Clear the dict
Object.keys(obj[key]).forEach(function(k) {
delete obj[key][k];
});
// Put in the new values
Object.assign(obj[key], value);
},
// ThreeTypeArray
convertThreeTypeArrayModelToThree: function(modelArr, propName) {
if (!Array.isArray(modelArr)) {
return this.convertThreeTypeModelToThree(modelArr, propName);
}
return modelArr.map(function(model) {
return this.convertThreeTypeModelToThree(model, propName);
}, this);
},
convertThreeTypeArrayThreeToModel: function(threeTypeArr, propName) {
if (!Array.isArray(threeTypeArr)) {
return this.convertThreeTypeThreeToModel(threeTypeArr, propName);
}
return threeTypeArr.map(function(threeType) {
return this.convertThreeTypeThreeToModel(threeType, propName);
}, this);
},
// ThreeTypeDict
convertThreeTypeDictModelToThree: function(modelDict, propName) {
return _.mapObject(modelDict, function(model) {
return this.convertThreeTypeModelToThree(model, propName);
}, this);
},
convertThreeTypeDictThreeToModel: function(threeTypeDict, propName) {
return _.mapObject(threeTypeDict, function(threeType) {
return this.convertThreeTypeThreeToModel(threeType, propName);
}, this);
},
// BufferMorphAttributes
convertMorphAttributesModelToThree: function(modelDict, propName) {
return _.mapObject(modelDict, function(arr) {
return arr.map(function(model) {
return this.convertThreeTypeModelToThree(model, propName);
}, this);
}, this);
},
convertMorphAttributesThreeToModel: function(threeTypeDict, propName) {
return _.mapObject(threeTypeDict, function(arr) {
return arr.map(function(model) {
return this.convertThreeTypeThreeToModel(model, propName);
}, this);
}, this);
},
// ArrayBuffer
convertArrayBufferModelToThree: function(ref, propName) {
var arr = dataserializers.getArray(ref);
return arr && arr.data;
},
convertArrayBufferThreeToModel: function(arrBuffer, propName) {
if (arrBuffer === null) {
return null;
}
var current = this.get(propName);
var currentArray = dataserializers.getArray(current);
if (currentArray && (currentArray.data === arrBuffer)) {
// Unchanged, do nothing
return current;
}
// Never create a new widget, even if current is one
return ndarray(arrBuffer);
},
// Color
convertColorModelToThree: function(c) {
if (c === null) {
return null;
}
return new THREE.Color(c);
},
convertColorThreeToModel: function(c) {
if (c === null) {
return null;
}
return '#' + c.getHexString();
},
}, {
model_module: 'jupyter-threejs',
model_name: 'ThreeModel',
model_module_version: EXTENSION_SPEC_VERSION,
});
module.exports = {
ThreeModel: ThreeModel,
};