Lines Matching refs:thing
661 var thing = stuff[i];
662 if (!thing.hittest(startms, startms+dur))
666 if (thing.type == SVGSceneRect) {
668 rect.setAttributeNS(null, 'class', thing.klass)
669 rect.setAttributeNS(null, 'x', timeToPixel(thing.x - startms));
670 rect.setAttributeNS(null, 'y', thing.y);
671 rect.setAttributeNS(null, 'width', timeToPixel(thing.width));
672 rect.setAttributeNS(null, 'height', thing.height);
673 rect.msg = thing.msg;
675 } else if (thing.type == SVGSceneLine) {
677 line.setAttributeNS(null, 'class', thing.klass)
678 line.setAttributeNS(null, 'x1', timeToPixel(thing.x1 - startms));
679 line.setAttributeNS(null, 'y1', thing.y1);
680 line.setAttributeNS(null, 'x2', timeToPixel(thing.x2 - startms));
681 line.setAttributeNS(null, 'y2', thing.y2);
682 line.msg = thing.msg;