agent def + windows fixes + 2d view + 3d view

This commit is contained in:
STEINNI
2025-09-26 21:02:32 +00:00
parent 73e2b5a762
commit dd860b45a9
5 changed files with 177 additions and 107 deletions
@@ -17,14 +17,39 @@ class DashboardsController extends EICController {
this.loadWindow(
'dashboards/MainDashboardView',
{
title: 'Main dashboard',
title: '3D view',
static: true,
expanded: true
expanded: false,
windowStyle:{
width: '800px',
height: '600px',
left: '50px',
top: '100px',
}
},
{
models: models
models: models,
camName: 'persp1'
}
)
this.loadWindow(
'dashboards/MainDashboardView',
{
title: '2D View',
static: true,
expanded: false,
windowStyle:{
width: '600px',
height: '450px',
right:'10px',
top:'100px',
}
},
{
models: models,
camName: 'cam2Dtop'
}
)
}
}