nightly (development)
latest release (v5.13.3)
5.13.3
5.13.2
5.13.1
5.13.0
5.12.1
5.12.0
5.11.2
5.11.1
5.11.0
5.10.2
5.10.1
5.10.0
5.9.1
5.9.0
5.8.1
5.8.0
5.7.0
5.6.2
5.5.2
C++
Python
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
c
f
g
i
l
m
n
p
q
r
s
t
v
w
+
Functions
c
g
l
m
n
p
q
r
s
t
v
+
Variables
_
l
m
q
v
Typedefs
Enumerations
+
Enumerator
a
c
g
l
m
n
p
q
r
s
t
v
w
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
2
3
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
2
3
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
g
i
l
m
n
p
q
r
s
t
u
v
w
+
Enumerations
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
+
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Properties
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Related Functions
:
a
b
c
d
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
x
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
v
w
x
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
v
w
+
Typedefs
b
c
g
i
k
m
n
o
p
q
s
u
v
z
Enumerations
+
Enumerator
c
k
v
x
y
z
+
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Remoting
Animation
vtkPVKeyFrameAnimationCueForProxies.h
Go to the documentation of this file.
1
// SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
2
// SPDX-License-Identifier: BSD-3-Clause
10
#ifndef vtkPVKeyFrameAnimationCueForProxies_h
11
#define vtkPVKeyFrameAnimationCueForProxies_h
12
13
#include "
vtkPVKeyFrameAnimationCue.h
"
14
15
class
vtkSMProxy
;
16
class
vtkSMProperty
;
17
class
vtkSMDomain
;
18
19
class
VTKREMOTINGANIMATION_EXPORT
vtkPVKeyFrameAnimationCueForProxies
20
:
public
vtkPVKeyFrameAnimationCue
21
{
22
public
:
23
static
vtkPVKeyFrameAnimationCueForProxies
*
New
();
24
vtkTypeMacro(
vtkPVKeyFrameAnimationCueForProxies
,
vtkPVKeyFrameAnimationCue
);
25
void
PrintSelf
(ostream& os,
vtkIndent
indent)
override
;
26
28
31
void
SetAnimatedProxy(
vtkSMProxy
*);
32
vtkGetObjectMacro(AnimatedProxy,
vtkSMProxy
);
34
35
void
RemoveAnimatedProxy();
36
38
41
vtkSetStringMacro(AnimatedPropertyName);
42
vtkGetStringMacro(AnimatedPropertyName);
44
46
49
vtkSetStringMacro(AnimatedDomainName);
50
vtkGetStringMacro(AnimatedDomainName);
52
54
60
void
BeginUpdateAnimationValues
()
override
;
61
void
SetAnimationValue
(
int
index,
double
value)
override
;
62
void
EndUpdateAnimationValues
()
override
;
64
65
protected
:
66
vtkPVKeyFrameAnimationCueForProxies
();
67
~
vtkPVKeyFrameAnimationCueForProxies
()
override
;
68
72
vtkSMProperty
* GetAnimatedProperty();
73
77
vtkSMDomain
* GetAnimatedDomain();
78
79
vtkSMProxy
*
AnimatedProxy
;
80
char
*
AnimatedPropertyName
;
81
char
*
AnimatedDomainName
;
82
int
ValueIndexMax
;
83
84
private
:
85
vtkPVKeyFrameAnimationCueForProxies
(
const
vtkPVKeyFrameAnimationCueForProxies
&) =
delete
;
86
void
operator=(
const
vtkPVKeyFrameAnimationCueForProxies
&) =
delete
;
87
};
88
89
#endif
vtkPVKeyFrameAnimationCueForProxies::AnimatedProxy
vtkSMProxy * AnimatedProxy
Definition:
vtkPVKeyFrameAnimationCueForProxies.h:79
vtkAnimationCue::New
static vtkAnimationCue * New()
vtkPVKeyFrameAnimationCueForProxies::AnimatedPropertyName
char * AnimatedPropertyName
Definition:
vtkPVKeyFrameAnimationCueForProxies.h:80
vtkPVKeyFrameAnimationCue.h
vtkPVKeyFrameAnimationCueForProxies
vtkPVKeyFrameAnimationCueForProxies extends vtkPVKeyFrameAnimationCue to update properties on proxies...
Definition:
vtkPVKeyFrameAnimationCueForProxies.h:19
vtkSMProperty
superclass for all SM properties
Definition:
vtkSMProperty.h:150
vtkPVAnimationCue::EndUpdateAnimationValues
virtual void EndUpdateAnimationValues()=0
Used to update the animated item.
vtkPVKeyFrameAnimationCueForProxies::ValueIndexMax
int ValueIndexMax
Definition:
vtkPVKeyFrameAnimationCueForProxies.h:82
vtkPVAnimationCue::SetAnimationValue
virtual void SetAnimationValue(int index, double value)=0
Used to update the animated item.
vtkPVKeyFrameAnimationCueForProxies::AnimatedDomainName
char * AnimatedDomainName
Definition:
vtkPVKeyFrameAnimationCueForProxies.h:81
vtkPVKeyFrameAnimationCue
vtkPVKeyFrameAnimationCue is a specialization of vtkPVAnimationCue that uses the vtkPVKeyFrameCueMani...
Definition:
vtkPVKeyFrameAnimationCue.h:18
vtkIndent
vtkSMDomain
represents the possible values a property can have
Definition:
vtkSMDomain.h:37
vtkSMProxy
proxy for a VTK object(s) on a server
Definition:
vtkSMProxy.h:140
VTKREMOTINGANIMATION_EXPORT
#define VTKREMOTINGANIMATION_EXPORT
Definition:
vtkRemotingAnimationModule.h:15
vtkPVAnimationCue::BeginUpdateAnimationValues
virtual void BeginUpdateAnimationValues()=0
Used to update the animated item.
vtkPVKeyFrameAnimationCue::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Generated by
1.8.13 on Wed Apr 23 2025