* adds a 2D scaling transformation. * @param v - scaling vector * @returns Reference to this object for method chaining
(v: Vector3d)
| 644 | * @returns Reference to this object for method chaining |
| 645 | */ |
| 646 | scaleV(v: Vector3d) { |
| 647 | return this.scale(v.x, v.y, v.z); |
| 648 | } |
| 649 | |
| 650 | /** |
| 651 | * specifies a 2D scale operation using the [sx, 1] scaling vector |
no test coverage detected