Home
last modified time | relevance | path

Searched refs:targetEndtag (Results 1 – 1 of 1) sorted by relevance

/petsc/share/petsc/saws/js/
H A DdrawDiagrams.js5 function drawDiagrams(data,endtag,targetEndtag,x,y) { argument
16 if(targetEndtag.indexOf(endtag) != 0) //base case. endtag is not on the path to targetEndtag.
42 …function drawFieldsplit(data,endtag,level,targetEndtag,x,y,size) { //(x,y) is the upper lefthand c… argument
44 if(targetEndtag.indexOf(endtag) != 0)
65 … ret += drawFieldsplit(data,childEndtag, level+1, targetEndtag, curr_x, curr_y, size/numChildren);
69 … var possible = drawDiagrams(data,childEndtag,targetEndtag,x+size+20+146,y+i*side);
89 ret += drawFieldsplit(data,endtag,0,targetEndtag,x,y,400);
124 …if(targetEndtag.indexOf(childEndtag) == 0) { //this can only happen with 1 child (the one that is …
134 var possible = drawDiagrams(data,endtag+"_"+selectedChild,targetEndtag,new_x+146,new_y);