Skip to content

Instantly share code, notes, and snippets.

View nicolasbeauvais's full-sized avatar
🚧
Working on phare.io

Nicolas Beauvais nicolasbeauvais

🚧
Working on phare.io
View GitHub Profile
@nicolasbeauvais
nicolasbeauvais / curves.js
Created April 11, 2017 10:48
Animated curves made for raisup.com, vuejs object structure
function Point(x, y) {
this.x = x;
this.y = y;
}
export default {
data() {
return {
canvas: undefined,
context: undefined,