Files
print-calculator/frontend/src/app/shared/components/stl-viewer/stl-viewer.component.html
Joe Küng 0ef97eeb9b
All checks were successful
Build and Deploy / test-backend (push) Successful in 33s
Build and Deploy / test-frontend (push) Successful in 1m5s
Build and Deploy / build-and-push (push) Successful in 43s
Build and Deploy / deploy (push) Successful in 9s
PR Checks / prettier-autofix (pull_request) Successful in 11s
PR Checks / test-backend (pull_request) Successful in 26s
PR Checks / security-sast (pull_request) Successful in 32s
PR Checks / test-frontend (pull_request) Successful in 1m6s
feat(back-end and front-end) 3d visualization for cad
2026-03-04 16:49:18 +01:00

19 lines
432 B
HTML

<div
class="viewer-container"
#rendererContainer
[style.height.px]="height"
[style.border-radius]="borderRadius"
>
@if (loading) {
<div class="loading-overlay">
<div class="spinner"></div>
<span>{{ "STL_VIEWER.LOADING" | translate }}</span>
</div>
}
@if (file && !loading) {
<div class="dims-overlay">
{{ dimensions.x }} x {{ dimensions.y }} x {{ dimensions.z }} mm
</div>
}
</div>