Skip to content

Commit

Permalink
fix: expand bounding box to 3m width and depth (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
Olaf-Wolf3D authored Feb 21, 2024
1 parent b897f48 commit 371c2f3
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions schemas/scene.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,21 +120,21 @@
"prefixItems": [
{
"type": "number",
"minimum": -1.0,
"minimum": -1.5,
"maximum": 0.0,
"errorMessage": "Bounding Box X minimum for body area must be between -1.0 and 0.0. Found ${0} and index ${0#}"
"errorMessage": "Bounding Box X minimum for body area must be between -1.5 and 0.0. Found ${0} for index ${0#}"
},
{
"type": "number",
"minimum": -0.1,
"maximum": 1.5,
"errorMessage": "Bounding Box Y minimum for body area must be between -0.1 and 0.5. Found ${0} and index ${0#}"
"errorMessage": "Bounding Box Y minimum for body area must be between -0.1 and 0.5. Found ${0} for index ${0#}"
},
{
"type": "number",
"minimum": -1.0,
"minimum": -1.5,
"maximum": 0.0,
"errorMessage": "Bounding Box Z minimum for body area must be between -1.0 and 0.0. Found ${0} and index ${0#}"
"errorMessage": "Bounding Box Z minimum for body area must be between -1.5 and 0.0. Found ${0} for index ${0#}"
}
],
"items": false,
Expand All @@ -148,20 +148,20 @@
{
"type": "number",
"minimum": 0.0,
"maximum": 1.0,
"errorMessage": "Bounding Box Z maximum for body area must be between 0.0 and 1.0. Found ${0} and index ${0#}"
"maximum": 1.5,
"errorMessage": "Bounding Box Z maximum for body area must be between 0.0 and 1.5. Found ${0} for index ${0#}"
},
{
"type": "number",
"minimum": 0.0,
"maximum": 3.0,
"errorMessage": "Bounding Box Z maximum for body area must be between 0.0 and 3.0. Found ${0} and index ${0#}"
"errorMessage": "Bounding Box Z maximum for body area must be between 0.0 and 3.0. Found ${0} for index ${0#}"
},
{
"type": "number",
"minimum": 0.0,
"maximum": 1.0,
"errorMessage": "Bounding Box Z maximum for body area must be between 0.0 and 1.0. Found ${0} and index ${0#}"
"maximum": 1.5,
"errorMessage": "Bounding Box Z maximum for body area must be between 0.0 and 1.5. Found ${0} for index ${0#}"
}
],
"items": false,
Expand Down

0 comments on commit 371c2f3

Please sign in to comment.