# HG changeset patch # User Drew Perttula # Date 2017-06-10 05:59:22 # Node ID 11b74e7d6b88117ce5a1be86bf3ae29ad7831c3f # Parent 8897ce2c48bfb0a27104baef7d43c90db204f5b8 draw adjusters for all curve pts, not just 4 Ignore-this: 28b553a4935b4900496499d74489d8ee diff --git a/light9/web/timeline/timeline.coffee b/light9/web/timeline/timeline.coffee --- a/light9/web/timeline/timeline.coffee +++ b/light9/web/timeline/timeline.coffee @@ -547,7 +547,9 @@ Polymer tMax - tMin _makeCurvePointAdjusters: (yForV, worldPts) -> - for pointNum in [0, 1, 2, 3] + + for pointNum in [0...worldPts.length] + log('wor', worldPts, pointNum) @_makePointAdjuster(yForV, worldPts, pointNum) _makePointAdjuster: (yForV, worldPts, pointNum) ->