Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VTK
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ben Boeckel
VTK
Commits
d65632f2
Commit
d65632f2
authored
5 years ago
by
Sankhesh Jhaveri
Browse files
Options
Downloads
Patches
Plain Diff
Fix global static causing access violation exception
parent
e49f199d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Rendering/OpenGL2/Testing/Cxx/TestFluidDemo.cxx
+21
-12
21 additions, 12 deletions
Rendering/OpenGL2/Testing/Cxx/TestFluidDemo.cxx
Rendering/OpenGL2/Testing/Cxx/TestFluidMapper.cxx
+32
-31
32 additions, 31 deletions
Rendering/OpenGL2/Testing/Cxx/TestFluidMapper.cxx
with
53 additions
and
43 deletions
Rendering/OpenGL2/Testing/Cxx/TestFluidDemo.cxx
+
21
−
12
View file @
d65632f2
...
...
@@ -61,39 +61,44 @@ static vtkNew<vtkFloatArray> g_Colors;
// Pause/resume animation by pressing spacebar
// Press 'd' to change display mode
// Press 'm' to change filter method
void
keypressFunc
(
vtkObject
*
caller
,
unsigned
long
,
void
*
,
void
*
)
void
keypressFunc
(
vtkObject
*
caller
,
unsigned
long
vtkNotUsed
(
eventId
),
void
*
clientData
,
void
*
vtkNotUsed
(
callData
))
{
const
auto
iren
=
static_cast
<
vtkRenderWindowInteractor
*>
(
caller
);
auto
fluidMapper
=
static_cast
<
vtkOpenGLFluidMapper
*>
(
clientData
);
if
(
iren
->
GetKeyCode
()
==
' '
)
{
g_Animation
=
!
g_Animation
;
}
else
if
(
iren
->
GetKeyCode
()
==
'd'
)
{
auto
mode
=
static_cast
<
int
>
(
g_F
luidMapper
->
GetDisplayMode
());
auto
mode
=
static_cast
<
int
>
(
f
luidMapper
->
GetDisplayMode
());
mode
=
(
mode
+
1
)
%
vtkOpenGLFluidMapper
::
NumDisplayModes
;
g_F
luidMapper
->
SetDisplayMode
(
f
luidMapper
->
SetDisplayMode
(
static_cast
<
vtkOpenGLFluidMapper
::
FluidDisplayMode
>
(
mode
));
static_cast
<
vtkRenderWindowInteractor
*>
(
caller
)
->
Render
();
}
else
if
(
iren
->
GetKeyCode
()
==
'm'
)
{
auto
filter
=
static_cast
<
int
>
(
g_F
luidMapper
->
GetSurfaceFilterMethod
());
auto
filter
=
static_cast
<
int
>
(
f
luidMapper
->
GetSurfaceFilterMethod
());
filter
=
(
filter
+
1
)
%
vtkOpenGLFluidMapper
::
NumFilterMethods
;
g_F
luidMapper
->
SetSurfaceFilterMethod
(
f
luidMapper
->
SetSurfaceFilterMethod
(
static_cast
<
vtkOpenGLFluidMapper
::
FluidSurfaceFilterMethod
>
(
filter
));
static_cast
<
vtkRenderWindowInteractor
*>
(
caller
)
->
Render
();
}
}
// Update particle animation data
void
updateFunc
(
vtkObject
*
caller
,
unsigned
long
,
void
*
,
void
*
)
void
updateFunc
(
vtkObject
*
caller
,
unsigned
long
vtkNotUsed
(
eventId
),
void
*
clientData
,
void
*
vtkNotUsed
(
callData
))
{
if
(
!
g_Animation
)
{
return
;
}
auto
dragon
=
static_cast
<
vtkActor
*>
(
clientData
);
// Max number of particle layers in x dimension
constexpr
static
uint32_t
maxLayers
=
static_cast
<
uint32_t
>
(
17.0
f
/
g_Spacing
);
...
...
@@ -167,10 +172,10 @@ void updateFunc(vtkObject* caller, unsigned long, void*, void*)
lastX
+=
g_Spacing
*
stepRatio
;
#ifdef ANIMATE_DRAGON
g_D
ragon
->
SetPosition
(
g_DragonPos
[
0
],
g_DragonPos
[
1
]
+
static_cast
<
double
>
(
std
::
cos
(
waveSpeed
*
t
))
*
0.5
,
g_DragonPos
[
2
]);
d
ragon
->
SetPosition
(
g_DragonPos
[
0
],
g_DragonPos
[
1
]
+
static_cast
<
double
>
(
std
::
cos
(
waveSpeed
*
t
))
*
0.5
,
g_DragonPos
[
2
]);
#endif
// Append one more layer
...
...
@@ -225,10 +230,12 @@ void setupInteractiveDemo(
vtkRenderer
*
renderer
,
vtkRenderWindowInteractor
*
iren
,
#ifdef VERTEX_COLOR
vtkPolyData
*
pointData
vtkPolyData
*
pointData
,
#else
vtkPolyData
*
vtkPolyData
*
vtkNotUsed
(
pointData
),
#endif
vtkActor
*
dragon
,
vtkOpenGLFluidMapper
*
fluidMapper
)
{
//------------------------------------------------------------
...
...
@@ -270,7 +277,9 @@ void setupInteractiveDemo(
vtkNew
<
vtkCallbackCommand
>
updateCallback
;
vtkNew
<
vtkCallbackCommand
>
keypressCallback
;
updateCallback
->
SetCallback
(
updateFunc
);
updateCallback
->
SetClientData
(
dragon
);
keypressCallback
->
SetCallback
(
keypressFunc
);
keypressCallback
->
SetClientData
(
fluidMapper
);
iren
->
AddObserver
(
vtkCommand
::
TimerEvent
,
updateCallback
);
iren
->
AddObserver
(
vtkCommand
::
KeyPressEvent
,
keypressCallback
);
...
...
This diff is collapsed.
Click to expand it.
Rendering/OpenGL2/Testing/Cxx/TestFluidMapper.cxx
+
32
−
31
View file @
d65632f2
...
...
@@ -52,11 +52,7 @@
// color
#define BLUE_WATER
// Fluid mapper, need to be global static to control parameters interactively
static
vtkNew
<
vtkOpenGLFluidMapper
>
g_FluidMapper
;
// Global variables for particle data
static
vtkNew
<
vtkActor
>
g_Dragon
;
static
vtkNew
<
vtkPoints
>
g_Points
;
constexpr
static
double
g_DragonPos
[
3
]{
2
,
-
0.5
,
3
};
...
...
@@ -64,7 +60,7 @@ constexpr static float g_ParticleRadius = 0.03f;
//-----------------------------------------------------------------------------
// Enable this for interactive demonstration
//
#define INTERACTIVE_DEMO
//#define INTERACTIVE_DEMO
#ifdef INTERACTIVE_DEMO
#include
"TestFluidDemo.cxx"
#endif
...
...
@@ -93,14 +89,16 @@ int TestFluidMapper(int argc, char* argv[])
vtkNew
<
vtkPolyDataMapper
>
dragonMapper
;
dragonMapper
->
SetInputConnection
(
reader
->
GetOutputPort
());
g_Dragon
->
SetMapper
(
dragonMapper
);
g_Dragon
->
SetScale
(
20
,
20
,
20
);
g_Dragon
->
SetPosition
(
g_DragonPos
[
0
],
g_DragonPos
[
1
],
g_DragonPos
[
2
]);
g_Dragon
->
GetProperty
()
->
SetDiffuseColor
(
0.780392
,
0.568627
,
0.113725
);
g_Dragon
->
GetProperty
()
->
SetSpecular
(
1.0
);
g_Dragon
->
GetProperty
()
->
SetSpecularPower
(
80.0
);
g_Dragon
->
GetProperty
()
->
SetDiffuse
(
0.7
);
renderer
->
AddActor
(
g_Dragon
);
vtkNew
<
vtkActor
>
dragon
;
dragon
->
SetMapper
(
dragonMapper
);
dragon
->
SetScale
(
20
,
20
,
20
);
dragon
->
SetPosition
(
g_DragonPos
[
0
],
g_DragonPos
[
1
],
g_DragonPos
[
2
]);
dragon
->
GetProperty
()
->
SetDiffuseColor
(
0.780392
,
0.568627
,
0.113725
);
dragon
->
GetProperty
()
->
SetSpecular
(
1.0
);
dragon
->
GetProperty
()
->
SetSpecularPower
(
80.0
);
dragon
->
GetProperty
()
->
SetDiffuse
(
0.7
);
renderer
->
AddActor
(
dragon
);
//------------------------------------------------------------
vtkSmartPointer
<
vtkPBRIrradianceTexture
>
irradiance
=
renderer
->
GetEnvMapIrradiance
();
...
...
@@ -177,10 +175,13 @@ int TestFluidMapper(int argc, char* argv[])
vtkNew
<
vtkPolyData
>
pointData
;
pointData
->
SetPoints
(
g_Points
);
g_FluidMapper
->
SetInputData
(
pointData
);
vtkNew
<
vtkOpenGLFluidMapper
>
fluidMapper
;
fluidMapper
->
SetInputData
(
pointData
);
#ifdef INTERACTIVE_DEMO
setupInteractiveDemo
(
renderWindow
,
renderer
,
iren
,
pointData
);
setupInteractiveDemo
(
renderWindow
,
renderer
,
iren
,
pointData
,
dragon
,
fluidMapper
);
#else
renderWindow
->
SetSize
(
400
,
400
);
const
float
spacing
=
0.1
f
;
...
...
@@ -206,71 +207,71 @@ int TestFluidMapper(int argc, char* argv[])
// Set the radius of the rendered spheres to be 2 times larger than the actual
// sphere radius This is necessary to fuse the gaps between particles and
// obtain a smooth surface
g_F
luidMapper
->
SetParticleRadius
(
g_ParticleRadius
*
3.0
f
);
f
luidMapper
->
SetParticleRadius
(
g_ParticleRadius
*
3.0
f
);
// Set the number of iterations to filter the depth surface
// This is an optional parameter, default value is 3
// Usually set this to around 3-5
// Too many filter iterations will over-smooth the surface
g_F
luidMapper
->
SetSurfaceFilterIterations
(
3
);
f
luidMapper
->
SetSurfaceFilterIterations
(
3
);
// Set the filter radius for smoothing the depth surface
// This is an optional parameter, default value is 5
g_F
luidMapper
->
SetSurfaceFilterRadius
(
5
);
f
luidMapper
->
SetSurfaceFilterRadius
(
5
);
// Set the filtering method, it's up to personal choice
// This is an optional parameter, default value is NarrowRange, other value is
// BilateralGaussian
g_F
luidMapper
->
SetSurfaceFilterMethod
(
f
luidMapper
->
SetSurfaceFilterMethod
(
vtkOpenGLFluidMapper
::
FluidSurfaceFilterMethod
::
NarrowRange
);
// Set the display method, from transparent volume to opaque surface etc
// Default value is TransparentFluidVolume
g_F
luidMapper
->
SetDisplayMode
(
f
luidMapper
->
SetDisplayMode
(
vtkOpenGLFluidMapper
::
FluidDisplayMode
::
TransparentFluidVolume
);
#ifdef BLUE_WATER
// Set the volume attenuation color (color that will be absorbed
// exponentially through the fluid volume) (below is the attenuation color
// that will produce blue volume fluid)
g_F
luidMapper
->
SetAttenuationColor
(
0.8
f
,
0.2
f
,
0.15
f
);
f
luidMapper
->
SetAttenuationColor
(
0.8
f
,
0.2
f
,
0.15
f
);
// Set the attenuation scale, which will be multiplied with the
// attenuation color Default value is 1.0
g_F
luidMapper
->
SetAttenuationScale
(
1.0
f
);
f
luidMapper
->
SetAttenuationScale
(
1.0
f
);
#else // Not BLUE_WATER
// This is blood
g_F
luidMapper
->
SetAttenuationColor
(
0.2
f
,
0.95
f
,
0.95
f
);
g_F
luidMapper
->
SetAttenuationScale
(
3.0
f
);
f
luidMapper
->
SetAttenuationColor
(
0.2
f
,
0.95
f
,
0.95
f
);
f
luidMapper
->
SetAttenuationScale
(
3.0
f
);
#endif
// Set the surface color (applicable only if the display mode is
// <Filter/Unfiltered>OpaqueSurface)
g_F
luidMapper
->
SetOpaqueColor
(
0.0
f
,
0.0
f
,
0.9
f
);
f
luidMapper
->
SetOpaqueColor
(
0.0
f
,
0.0
f
,
0.9
f
);
// Set the particle color power and scale
// (applicable only if there is color data for each point)
// The particle color is then recomputed as newColor = pow(oldColor, power) *
// scale
g_F
luidMapper
->
SetParticleColorPower
(
0.1
f
);
g_F
luidMapper
->
SetParticleColorScale
(
0.57
f
);
f
luidMapper
->
SetParticleColorPower
(
0.1
f
);
f
luidMapper
->
SetParticleColorScale
(
0.57
f
);
// Set the additional reflection parameter, to add more light reflecting off
// the surface Default value is 0.0
g_F
luidMapper
->
SetAdditionalReflection
(
0.0
f
);
f
luidMapper
->
SetAdditionalReflection
(
0.0
f
);
// Set the refractive index (1.33 for water)
// Default value is 1.33
g_F
luidMapper
->
SetRefractiveIndex
(
1.33
f
);
f
luidMapper
->
SetRefractiveIndex
(
1.33
f
);
// Set the refraction scale, this will explicity change the amount of
// refraction Default value is 1
g_F
luidMapper
->
SetRefractionScale
(
0.07
f
);
f
luidMapper
->
SetRefractionScale
(
0.07
f
);
// <========== end parameters turning for fluid mapper
vtkNew
<
vtkVolume
>
vol
;
vol
->
SetMapper
(
g_F
luidMapper
);
vol
->
SetMapper
(
f
luidMapper
);
renderer
->
AddVolume
(
vol
);
//------------------------------------------------------------
vtkNew
<
vtkTimerLog
>
timer
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment