mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-06 11:39:49 -06:00
Fix wrong order of path type enum, and make it enum class
This commit is contained in:
@@ -39,10 +39,10 @@ namespace openspace::interaction {
|
||||
|
||||
class Path {
|
||||
public:
|
||||
enum Type {
|
||||
AvoidCollision,
|
||||
Linear,
|
||||
enum class Type {
|
||||
AvoidCollision = 0,
|
||||
ZoomOutOverview,
|
||||
Linear,
|
||||
AvoidCollisionWithLookAt // @TODO (2021-08-13, emmbr) This type right now leads
|
||||
// to rapid rotations, but is useful in specific
|
||||
// scenarios, e.g. close to surfaces. Later we want to
|
||||
|
||||
Reference in New Issue
Block a user