Skip to content

Commit

Permalink
Update 3dlib.js
Browse files Browse the repository at this point in the history
  • Loading branch information
hrishiballal committed Apr 15, 2024
1 parent 1ff84ea commit 738b2b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions static/workers/3dlib.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ function generateFinal3DGeoms(constraintedModelDesigns) {
var max_height = 0;
var min_height = 0;
try {
max_height = curFeat.properties.max_height;
max_height = curFeat.properties.volume_information.max_height;
} catch (err) {
max_height = 0;
}
try {
min_height = curFeat.properties.min_height;
min_height = curFeat.properties.volume_information.min_height;
} catch (err) {
min_height = 0;
}
Expand Down

0 comments on commit 738b2b4

Please sign in to comment.