You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// constructing a 2x2 matrix and filling it with values top left to bottom right
51
-
constm=newMatrix(2, 2).fill(1, 2, 3, 4);
51
+
constm=newMatrix(2, 2).copyFrom(1, 2, 3, 4);
52
52
53
53
// passing the values as a 2d array to the constructor gives the same result
54
54
constm=newMatrix([
@@ -147,7 +147,7 @@ const T = tran(M); // immutable
147
147
// +++
148
148
```
149
149
150
-
(to be continued)
150
+
Proper docs will be available soon. For more info please look at the tests or [this live sample](https://observablehq.com/@kjerandp/affine-transformations).
0 commit comments