summaryrefslogtreecommitdiff
path: root/assets/javascripts/rectangles/models/vec3.js
blob: 4e9f3cb23172d9b23082f901c0f76e5bbe4b0ffa (plain)
1
2
3
4
5
function vec3(a,b,c){
	this.a = a
	this.b = b
	this.c = c
}