@jscad/x3d-deserializer 2.1.2 → 2.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,30 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.1.5](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/x3d-deserializer@2.1.4...@jscad/x3d-deserializer@2.1.5) (2022-04-24)
7
+
8
+ **Note:** Version bump only for package @jscad/x3d-deserializer
9
+
10
+
11
+
12
+
13
+
14
+ ## [2.1.4](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/x3d-deserializer@2.1.3...@jscad/x3d-deserializer@2.1.4) (2022-04-03)
15
+
16
+ **Note:** Version bump only for package @jscad/x3d-deserializer
17
+
18
+
19
+
20
+
21
+
22
+ ## [2.1.3](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/x3d-deserializer@2.1.2...@jscad/x3d-deserializer@2.1.3) (2022-03-06)
23
+
24
+ **Note:** Version bump only for package @jscad/x3d-deserializer
25
+
26
+
27
+
28
+
29
+
6
30
  ## [2.1.2](https://github.com/jscad/OpenJSCAD.org/compare/@jscad/x3d-deserializer@2.1.1...@jscad/x3d-deserializer@2.1.2) (2022-02-19)
7
31
 
8
32
 
package/README.md CHANGED
@@ -97,7 +97,7 @@ We welcome and encourage anyone to pitch in but please take a moment to read the
97
97
 
98
98
  * If you want to submit a bug report please make sure to follow the [Reporting Issues](https://github.com/jscad/OpenJSCAD.org/wiki/Reporting-Issues) guide. Bug reports are accepted as [Issues](https://github.com/jscad/OpenJSCAD.org/issues/) via GitHub.
99
99
 
100
- * If you want to submit a change or a patch, please read the [Contributing Guide](../../CONTRIBUTING.md) . New contributions are accepted as [Pull Requests](https://github.com/jscad/OpenJSCAD.org/pulls/) via GithHub.
100
+ * If you want to submit a change or a patch, please read the [Contributing Guide](../../CONTRIBUTING.md). New contributions are accepted as [Pull Requests](https://github.com/jscad/OpenJSCAD.org/pulls/) via GitHub.
101
101
 
102
102
  * We only accept bug reports and pull requests on **GitHub**.
103
103
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jscad/x3d-deserializer",
3
- "version": "2.1.2",
3
+ "version": "2.1.5",
4
4
  "description": "X3D Deserializer for JSCAD",
5
5
  "repository": "https://github.com/jscad/OpenJSCAD.org/",
6
6
  "main": "src/index.js",
@@ -26,7 +26,7 @@
26
26
  "access": "public"
27
27
  },
28
28
  "dependencies": {
29
- "@jscad/array-utils": "2.1.1",
29
+ "@jscad/array-utils": "2.1.4",
30
30
  "@jscad/modeling": "2.4.0",
31
31
  "saxes": "5.0.1"
32
32
  },
@@ -34,5 +34,5 @@
34
34
  "ava": "3.15.0",
35
35
  "nyc": "15.1.0"
36
36
  },
37
- "gitHead": "b6c5675d2d9a292e0ba24896bf22d0e9dc5d4270"
37
+ "gitHead": "85fa1fcdfb2d516a201ecf31da242e64b5b3274e"
38
38
  }
@@ -1,7 +1,7 @@
1
1
  const Vector3 = require('./Vector3')
2
2
  const Rotation4 = require('./Rotation4')
3
3
 
4
- function Matrix4() {
4
+ function Matrix4 () {
5
5
  if (arguments.length) {
6
6
  this[0] = arguments[0]
7
7
  this[1] = arguments[1]