Skip to content

Commit 2c404ef

Browse files
Merge remote-tracking branch 'origin/master'
2 parents 0d0a1d0 + bc61818 commit 2c404ef

5 files changed

Lines changed: 21 additions & 8 deletions

File tree

archive/windows/covise.iss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ ShowLanguageDialog=yes
200200
[Types]
201201
Name: standard; Description: COVISE Standard Installation
202202
Name: custom; Description: Custom Installation; Flags: iscustom
203-
Name: retistry; Description: Registry only, dont install any files
203+
Name: retistry; Description: Registry only, don t install any files
204204
[Components]
205205

206206
Name: core; Description: COVISE core system; Types: standard custom
@@ -352,6 +352,7 @@ Source: {#CUDAPATH}\bin\*.dll; DestDir: {#DLIB}; Flags: skipifsourcedoesntexist;
352352
Source: {#FFMPEG}\bin\*.dll; DestDir: {#DLIB}; Flags: skipifsourcedoesntexist; Components: core
353353
Source: {#BOOST}\lib\*.dll; DestDir: {#DLIB}; Flags: skipifsourcedoesntexist; Components: core
354354
Source: {#INTEL}\bin\*.dll; DestDir: {#DLIB}; Flags: skipifsourcedoesntexist; Components: core
355+
Source: {#EXTERNLIBS}\all\libfbxsdk.dll; DestDir: {#DLIB}; Flags: skipifsourcedoesntexist; Components: core
355356

356357
Source: {#SYS}; DestDir: {#DLIB}; Flags: recursesubdirs; Components: core
357358
;Source: {#XERCES}\bin\*.exe; DestDir: {#DLIB}; Flags: skipifsourcedoesntexist; Components: core
@@ -590,7 +591,7 @@ Filename: {app}\{#ARCHSUFFIX}\lib\bin\w_cproc_p_11.1.072_redist_intel64.exe; Par
590591
#elif ARCHSUFFIX == "amdwin64opt"
591592
Filename: {app}\{#ARCHSUFFIX}\lib\vcredist_x64_sp1_secfix.exe; Parameters: /Q; Description: Install VisualStudio 2005 SP1 Runtime (incl. ATL sec.fix); Flags: postinstall shellexec
592593
#endif
593-
; dont run because environment is not yet up to date...Filename: {app}\{#ARCHSUFFIX}\bin\coviseDaemon.exe; Parameters: ; Description: Start COVISE Daemon; Flags: nowait postinstall shellexec
594+
; don t run because environment is not yet up to date...Filename: {app}\{#ARCHSUFFIX}\bin\coviseDaemon.exe; Parameters: ; Description: Start COVISE Daemon; Flags: nowait postinstall shellexec
594595
595596
[UninstallDelete]
596597
Type: files; Name: "{commonappdata}\Autodesk\Revit\Addins\2023\OpenFOAMInterface.addin"

bin/hlrsDemo

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,10 @@ demo 140 "Zweite mobilitaetswoche" run_marienplatz_mobilitaetswoche
317317

318318
demo 141 "FLOWER" vistle /data/iag/windpark_gagnon/FLOWer_Beispiel_MERIDIONAL/workflows/tracer_cluster.vsl
319319

320-
demo 142 "EuropaPark" cover /data/mack-research/Europa-Park-Twin/presentation.wrl
320+
run_EP() {
321+
opencover opencover://plugin/GeoData /data/mack-research/Europa-Park-Twin/presentation.wrl
322+
}
323+
demo 142 "EuropaPark" run_EP
321324

322325
# Vistle
323326
category="Vistle"

config/config.uwe.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<UseVertexBufferObjects value="false" />
3434
<Input>
3535
<MouseNav value="true" />
36-
<Device>
36+
<!--Device>
3737
3838
3939
<DTrackCave driver="dtrack" port="5000" serverHost="192.168.1.2">
@@ -114,7 +114,7 @@
114114
<Person name="Tripod" eyeDistance="0.0" head="TripodHead" hand="CaveHand" buttons="CaveMouse" />
115115
<Person name="Camera" eyeDistance="0.0" head="CaveCamera" hand="CaveHand" buttons="CaveMouse" />
116116
<Person name="Gloves" eyeDistance="0.0" head="CaveGloves" hand="CaveHand" buttons="CaveMouse" />
117-
</Persons>
117+
</Persons-->
118118
</Input>
119119
<Plugin>
120120
<Browser logLevel="1" logFile="/tmp/browserlog.txt" />

config/config.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,11 @@
146146
<!--Console value="on" file="/tmp/coverlog"/-->
147147
<Plugin>
148148

149+
<LamurePointCloud>
150+
<upload value="64" />
151+
<vram value="2000" />
152+
<ram value="10000" />
153+
</LamurePointCloud>
149154
<RhrClient mpiThread="false" />
150155
<Browser menu="true" logLevel="1" logFile="/tmp/browserlog.txt" />
151156

src/OpenCOVER/fixLOD/fixLOD.cpp

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,14 @@ int fixLOD(float factor, const std::string& filename)
3939
{
4040
nrl.push_back(ranges[i]);
4141
}
42-
nrl[0].first = factor*plod->getRadius();
42+
double newRad = factor * plod->getRadius();
43+
nrl[0].first = newRad;
4344
nrl[0].second = 1.0E10;
44-
nrl[1].first = 0.0;
45-
nrl[1].second = factor*plod->getRadius();
45+
for (int i = 1; i< (int)ranges.size(); i++)
46+
{
47+
nrl[i].first = 0.0;
48+
nrl[i].second = newRad;
49+
}
4650
plod->setRangeList(nrl);
4751
osgDB::writeNodeFile(*root, fn.c_str(), options);
4852
}

0 commit comments

Comments
 (0)