Skip to content

Commit

Permalink
missing vector methods added
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Marsch committed Apr 3, 2016
1 parent 0a9c339 commit bd2880a
Show file tree
Hide file tree
Showing 10 changed files with 410 additions and 407 deletions.
13 changes: 7 additions & 6 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,21 @@ module.exports = function(grunt) {
separator: '\n',
banner: "(function(global) {",
footer: "if (typeof global.define === 'function') {"+
"global.define([], GeoJSON);"+
"global.define([], <%=pkg.name%>);"+
"} else if (typeof global.exports === 'object') {"+
"global.module.exports = GeoJSON;"+
"global.exports = <%=pkg.name%>;"+
"} else {"+
"global.GeoJSON = GeoJSON;"+
"global.<%=pkg.name%> = <%=pkg.name%>;"+
"}\n"+
"}(this));"
},
src: [
'node_modules/Color/dist/Color.debug.js',
'node_modules/Color/src/Color.js',
'node_modules/earcut/src/earcut.js',
'src/GeoJSON.js',
'src/vec2.js',
'src/vec3.js',
'src/triangulate.js',
'src/vector.js'
'src/GeoJSON.js'
],
dest: 'dist/<%=pkg.name%>.debug.js'
}
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

# Triangulate

Triangulation utility for OSM Buildings
1 change: 0 additions & 1 deletion dist/GeoJSON.triangulate.js

This file was deleted.

Loading

0 comments on commit bd2880a

Please sign in to comment.