From 5468a6e82fd58dd466d7774c10c515c241db0c9a Mon Sep 17 00:00:00 2001 From: Tom Hulton-Harrop Date: Sat, 26 Jul 2025 22:39:13 +0100 Subject: [PATCH] Why: Updates documentation links for csg.js This change addresses the need by: Renaming https://evanw.github.com/csg.js/ to https://evanw.github.io/csg.js/ --- README.md | 10 +++++----- tests/coplanar.html | 2 +- tests/index.html | 2 +- tests/issues.html | 2 +- tests/more.html | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 960ef24..9642a24 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # csg.js -![](http://evanw.github.com/csg.js/image.png) +![](http://evanw.github.io/csg.js/image.png) 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 @@

csg.js

Source code: http://github.com/evanw/csg.js/
- Documentation: http://evanw.github.com/csg.js/docs/

+ Documentation: http://evanw.github.io/csg.js/docs/

Coplanar Test Cases

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 @@

csg.js

Source code: http://github.com/evanw/csg.js/
- Documentation: http://evanw.github.com/csg.js/docs/

+ Documentation: http://evanw.github.io/csg.js/docs/

Introduction

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 @@

csg.js

Source code: http://github.com/evanw/csg.js/
- Documentation: http://evanw.github.com/csg.js/docs/

+ Documentation: http://evanw.github.io/csg.js/docs/

Issue Test Cases

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 @@

csg.js

Source code: http://github.com/evanw/csg.js/
- Documentation: http://evanw.github.com/csg.js/docs/

+ Documentation: http://evanw.github.io/csg.js/docs/

Gourd Test Cases

These tests involve a model that isn't convex.