-
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#### Added - Rotation options to mesh visualization, community forum request. - Custom debug logging for future troubleshooting - Custom commands that will give additional buttons on tab - Cancel button to stop processing when visualization gets stuck - Larger precision number processing - Themify support, will now color the background and axis based on tab colors - Marlin Mesh Bed Leveling support - Marlin OpenScad Output support - Option to show webcam while processing #### Updated - Several UI improvements - Timeout logic to also stop processing on server side - Plotly library to version 1.52.2
- Loading branch information
Showing
35 changed files
with
12,006 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
octoprint_bedlevelvisualizer/static/css/bedlevelvisualizer.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
div#bedlevelvisualizergraph div.modebar { | ||
left: 50%; | ||
transform: translateX(-50%); | ||
} | ||
|
||
#bedlevelvisualizer_webcam_container{ | ||
width:100%; | ||
overflow: hidden; | ||
position:relative; | ||
outline:0; | ||
background-color:#000; | ||
margin-bottom: 10px; | ||
} | ||
#bedlevelvisualizer_webcam_container .webcam_rotated{ | ||
position:relative; | ||
width:100%; | ||
padding-bottom:100%; | ||
pointer-events:none; | ||
} | ||
#bedlevelvisualizer_webcam_container .webcam_rotated .webcam_fixed_ratio{ | ||
position:absolute; | ||
transform:rotate(-90deg); | ||
top:0; | ||
bottom:0; | ||
pointer-events:none; | ||
} | ||
#bedlevelvisualizer_webcam_container .webcam_rotated .webcam_fixed_ratio .webcam_fixed_ratio_inner{ | ||
width:100%; | ||
height:100%; | ||
pointer-events:none; | ||
} | ||
#bedlevelvisualizer_webcam_container .webcam_unrotated .webcam_fixed_ratio{ | ||
width:100%; | ||
pointer-events:none; | ||
padding-bottom:100%; | ||
position:relative; | ||
} | ||
#bedlevelvisualizer_webcam_container .webcam_unrotated .webcam_fixed_ratio.ratio43{ | ||
padding-bottom:75%; | ||
} | ||
#bedlevelvisualizer_webcam_container .webcam_unrotated .webcam_fixed_ratio.ratio169{ | ||
padding-bottom:56.25%; | ||
} | ||
#bedlevelvisualizer_webcam_container .webcam_unrotated .webcam_fixed_ratio.ratio1610{ | ||
padding-bottom:62.5%; | ||
} | ||
#bedlevelvisualizer_webcam_container .webcam_unrotated .webcam_fixed_ratio .webcam_fixed_ratio_inner{ | ||
position:absolute; | ||
top:0; | ||
bottom:0; | ||
left:0; | ||
right:0; | ||
pointer-events:none; | ||
} | ||
#bedlevelvisualizer_webcam_container img{ | ||
width:100%; | ||
height:100%; | ||
object-fit:contain; | ||
} |
1 change: 1 addition & 0 deletions
1
octoprint_bedlevelvisualizer/static/css/font-awesome-v4-shims.min.css
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.