diff --git a/README.md b/README.md index 960ef24..9642a24 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # csg.js - + Constructive Solid Geometry (CSG) is a modeling technique that uses Boolean operations like union and intersection to combine 3D solids. This library implements CSG operations on meshes elegantly and concisely using BSP trees, and is meant to serve as an easily understandable implementation of the algorithm. All edge cases involving overlapping coplanar polygons in both solids are correctly handled. @@ -12,13 +12,13 @@ Example usage: # Documentation -[Detailed documentation](http://evanw.github.com/csg.js/docs/) can be automatically generated using [Docco](http://jashkenas.github.com/docco/). +[Detailed documentation](http://evanw.github.io/csg.js/docs/) can be automatically generated using [Docco](http://jashkenas.github.com/docco/). # Demos -* [All CSG operations](http://evanw.github.com/csg.js/) -* [Coplanar test cases](http://evanw.github.com/csg.js/coplanar.html) -* [More test cases](http://evanw.github.com/csg.js/more.html) +* [All CSG operations](http://evanw.github.io/csg.js/) +* [Coplanar test cases](http://evanw.github.io/csg.js/coplanar.html) +* [More test cases](http://evanw.github.io/csg.js/more.html) # Implementation Details diff --git a/tests/coplanar.html b/tests/coplanar.html index 34c8e2f..edfc5b7 100644 --- a/tests/coplanar.html +++ b/tests/coplanar.html @@ -35,7 +35,7 @@
Source code: http://github.com/evanw/csg.js/
- Documentation: http://evanw.github.com/csg.js/docs/
These tests cover all the cases of a pair of overlapping coplanar polygons in both solids. To avoid duplicate polygons, the overlapping polygons are kept in the first solid and removed from the second solid.
diff --git a/tests/index.html b/tests/index.html index c57cc6c..27e28f7 100644 --- a/tests/index.html +++ b/tests/index.html @@ -45,7 +45,7 @@Source code: http://github.com/evanw/csg.js/
- Documentation: http://evanw.github.com/csg.js/docs/
Constructive Solid Geometry (CSG) is a modeling technique that uses Boolean operations like union and intersection to combine 3D solids. This library implements CSG operations on meshes elegantly and concisely using BSP trees, and is meant to serve as an easily understandable implementation of the algorithm. All edge cases involving overlapping coplanar polygons in both solids are correctly handled.
diff --git a/tests/issues.html b/tests/issues.html index ddfa6fc..f0fdc10 100644 --- a/tests/issues.html +++ b/tests/issues.html @@ -36,7 +36,7 @@Source code: http://github.com/evanw/csg.js/
- Documentation: http://evanw.github.com/csg.js/docs/
These are test cases from GitHub issues.
diff --git a/tests/more.html b/tests/more.html index 00cc8fd..75505db 100644 --- a/tests/more.html +++ b/tests/more.html @@ -36,7 +36,7 @@Source code: http://github.com/evanw/csg.js/
- Documentation: http://evanw.github.com/csg.js/docs/
These tests involve a model that isn't convex.