Skip to content

Instantly share code, notes, and snippets.

@dshook
Created January 14, 2015 21:14
Show Gist options
  • Select an option

  • Save dshook/c8a894037cc63ed259f9 to your computer and use it in GitHub Desktop.

Select an option

Save dshook/c8a894037cc63ed259f9 to your computer and use it in GitHub Desktop.
import Vec2 from 'vec2';
export default class RayMarcher
{
constructor()
{
this.__init();
}
/**
* @private
*/
__init()
{
this.speed = 0.8;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment