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

Function drawQuad

src/traces/isosurface/convert.js:329–336  ·  view source on GitHub ↗
(style, xyzv, abcd)

Source from the content-addressed store, hash-verified

327 }
328
329 function drawQuad(style, xyzv, abcd) {
330 var makeTri = function(i, j, k) {
331 drawTri(style, [xyzv[i], xyzv[j], xyzv[k]], [abcd[i], abcd[j], abcd[k]]);
332 };
333
334 makeTri(0, 1, 2);
335 makeTri(2, 3, 0);
336 }
337
338 function drawTetra(style, xyzv, abcd) {
339 var makeTri = function(i, j, k) {

Callers 1

tryCreateTetraFunction · 0.85

Calls 1

makeTriFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…