Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
third-party
cinema_python
Commits
29a671f6
Commit
29a671f6
authored
Feb 21, 2019
by
Utkarsh Ayachit
⛰
Browse files
python3: convert `dict_keys` to list for python2.
parent
730bd007
Pipeline
#130631
passed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
cinema_python/adaptors/paraview/pv_introspect.py
View file @
29a671f6
...
...
@@ -711,7 +711,7 @@ def explore(cs, proxies, iSave=True, currentTime=None, userDefined={},
dist
=
paraview
.
simple
.
GetActiveCamera
().
GetDistance
()
# associate control points with parameters of the data store
params
=
cs
.
parameter_list
.
keys
()
params
=
list
(
cs
.
parameter_list
.
keys
()
)
tracks
=
[]
if
camType
==
"phi-theta"
:
up
=
[
math
.
fabs
(
x
)
for
x
in
view_proxy
.
CameraViewUp
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment