Skip to main content

RotationType

An enum that describes the strategies that rotation actions can use

Index

Enumeration Members

Clockwise

Clockwise: clockwise

Rotation via Clockwise will travel in a clockwise direction, regardless of the starting and ending points.

CounterClockwise

CounterClockwise: counter-clockwise

Rotation via CounterClockwise will travel in a counterclockwise direction, regardless of the starting and ending points.

LongestPath

LongestPath: longest-path

Rotation via LongestPath will use the largest angle between the starting and ending points.

ShortestPath

ShortestPath: shortest-path

Rotation via ShortestPath will use the smallest angle between the starting and ending points. This strategy is the default behavior.