diff options
Diffstat (limited to 'lib/systems/lissajous_position_updater.js')
| -rw-r--r-- | lib/systems/lissajous_position_updater.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/systems/lissajous_position_updater.js b/lib/systems/lissajous_position_updater.js index da90fb2..030d9ba 100644 --- a/lib/systems/lissajous_position_updater.js +++ b/lib/systems/lissajous_position_updater.js @@ -6,6 +6,12 @@ const internals = { kPeriod: Math.PI * 12000000 }; +/** + * Calculates the lissajous curve over time + * NOTE: This shouldn't store data, I should have a different entity for + * the actual drawable vertices. Either put the storage in the curve, or + * create a separate entity. + */ export default class WebGLRenderer extends System { constructor() { |