diff --git a/README.md b/README.md index 3833e478..5ed8bd02 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,6 @@ Too many dependencies? Because OpenSCAD doesn't provide namespace management, I - [sphere_spiral_extrude](https://openhome.cc/eGossip/OpenSCAD/lib-sphere_spiral_extrude.html) - Matrix - - [m_multiply](https://openhome.cc/eGossip/OpenSCAD/lib-m_multiply.html) - [m_cumulate](https://openhome.cc/eGossip/OpenSCAD/lib-m_cumulate.html) - [m_translation](https://openhome.cc/eGossip/OpenSCAD/lib-m_translation.html) - [m_rotation](https://openhome.cc/eGossip/OpenSCAD/lib-m_rotation.html) diff --git a/docs/images/lib-m_multiply-1.JPG b/docs/images/lib-m_multiply-1.JPG deleted file mode 100644 index 5edd2b8d..00000000 Binary files a/docs/images/lib-m_multiply-1.JPG and /dev/null differ diff --git a/docs/lib-m_mirror.md b/docs/lib-m_mirror.md deleted file mode 100644 index 6280c53f..00000000 --- a/docs/lib-m_mirror.md +++ /dev/null @@ -1,23 +0,0 @@ -# m_mirror - -Generate a 4x4 transformation matrix which can pass into `multmatrix` to mirror the child element on a plane through the origin. - -**Since:** 1.1 - -## Parameters - -- `v` : The normal vector of a plane intersecting the origin through which to mirror the object. - -## Examples - - include ; - - rotate([0, 0, 10]) - cube([3, 2, 1]); - - multmatrix(m_mirror([1, 1, 0])) - rotate([0, 0, 10]) - cube([3, 2, 1]); - -![m_mirror](images/lib-m_mirror-1.JPG) -