aboutsummaryrefslogtreecommitdiff
path: root/app/js/app.js
blob: a98a0c33c4c6897454924842bd8e79c5a20b069c (plain) (blame)
1
2
3
4
5
6
7
8
9
'use strict';

var app = angular.module('playGraph',[]);

var Point = function(x,y){
    this.x = x;
    this.y = y;
};