Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

KHR_implicit_shapes extension Draft Proposal #2370

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Convert some minimum properties to exclusiveMinimum, to avoid some de…
…generate geometries
  • Loading branch information
eoineoineoin committed Apr 19, 2024
commit 757ab3b90966c63ba3bb5856ca93929efb26fca8
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 10,7 @@
"description": "The extents of the box in each axis in local space.",
"items": {
"type": "number",
"minimum": 0.0
"exclusiveMinimum": 0.0
},
"minItems": 3,
"maxItems": 3,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 8,7 @@
"height": {
"type": "number",
"description": "The distance between the centers of the two capping spheres of capsule.",
"minimum": 0.0,
"exclusiveMinimum": 0.0,
"default": 0.5
},
"radiusBottom": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 8,7 @@
"height": {
"type": "number",
"description": "The height of the cylinder, centered along the Y axis.",
"minimum": 0.0,
"exclusiveMinimum": 0.0,
"default": 0.5
},
"radiusBottom": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 8,7 @@
"radius": {
"type": "number",
"description": "The radius of the sphere.",
"minimum": 0.0,
"exclusiveMinimum": 0.0,
"default": 0.5
},
"extensions": { },
Expand Down
Loading