mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-02-06 08:08:32 +01:00
391 B
391 B
m_scaling
Generate a 4x4 transformation matrix which can pass into multmatrix
to scale its child elements using the specified vector.
Since: 1.1
Parameters
v
: Elements will be scaled using the vector.
Examples
include <m_scaling.scad>;
cube(10);
translate([15, 0, 0])
multmatrix(m_scaling([0.5, 1, 2]))
cube(10);