1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-06 23:06:43 +02:00
This commit is contained in:
Justin Lin
2019-06-23 09:30:32 +08:00
parent be05e3b68e
commit 0408ec9cbe
3 changed files with 2 additions and 2 deletions

View File

@@ -8,6 +8,6 @@
*
**/
include <__private__/__m_shearing.scad>;
include <matrix/__comm__/__m_shearing.scad>;
function m_shearing(sx = [0, 0], sy = [0, 0], sz = [0, 0]) = __m_shearing(sx, sy, sz);

View File

@@ -8,7 +8,7 @@
*
**/
include <__private__/__m_shearing.scad>;
include <matrix/__comm__/__m_shearing.scad>;
module shear(sx = [0, 0], sy = [0, 0], sz = [0, 0]) {
multmatrix(__m_shearing(sx, sy, sz)) children();