Skip to content

Commit

Permalink
Soft enforcement of unit quaternions.
Browse files Browse the repository at this point in the history
  • Loading branch information
lexaknyazev committed May 31, 2017
1 parent e4b00f8 commit 75be81f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion specification/2.0/schema/node.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@
"type": "array",
"description": "The node's unit quaternion rotation in the order (x, y, z, w), where w is the scalar.",
"items": {
"type": "number"
"type": "number",
"minimum": -1.0,
"maximum": 1.0
},
"minItems": 4,
"maxItems": 4,
Expand Down

0 comments on commit 75be81f

Please sign in to comment.