mirror of
https://github.com/schrodinger/pymol-open-source.git
synced 2026-06-04 20:04:21 +08:00
16 lines
202 B
C
16 lines
202 B
C
#pragma once
|
|
|
|
enum class MViewAction
|
|
{
|
|
Store = 0,
|
|
Clear = 1,
|
|
Interpolate = 2,
|
|
Reinterpolate = 3,
|
|
Smooth = 4,
|
|
Reset = 5,
|
|
Uninterpolate = 6,
|
|
Toggle = 7,
|
|
ToggleInterp = 8,
|
|
Purge = 9
|
|
};
|