MCPcopy Create free account
hub / github.com/plotly/plotly.js / getXYZV

Function getXYZV

src/traces/isosurface/convert.js:379–394  ·  view source on GitHub ↗
(indecies)

Source from the content-addressed store, hash-verified

377 }
378
379 function getXYZV(indecies) {
380 var xyzv = [];
381 for(var q = 0; q < 4; q++) {
382 var index = indecies[q];
383 xyzv.push(
384 [
385 data._x[index],
386 data._y[index],
387 data._z[index],
388 data._value[index]
389 ]
390 );
391 }
392
393 return xyzv;
394 }
395
396 var MAX_PASS = 3;
397

Callers 3

tryCreateTetraFunction · 0.85
addRectFunction · 0.85
beginSectionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…