-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
73 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,24 @@ | ||
namespace Sdcb.RotationDetector; | ||
|
||
/// <summary> | ||
/// Enum representing the degrees of rotation. | ||
/// </summary> | ||
public enum RotationDegree | ||
{ | ||
_0, | ||
_90, | ||
_180, | ||
_270, | ||
} | ||
/// <summary> | ||
/// Represents the 0-degree rotation angle. | ||
/// </summary> | ||
_0, | ||
/// <summary> | ||
/// Represents the 90-degree rotation angle. | ||
/// </summary> | ||
_90, | ||
/// <summary> | ||
/// Represents the 180-degree rotation angle. | ||
/// </summary> | ||
_180, | ||
/// <summary> | ||
/// Represents the 270-degree rotation angle. | ||
/// </summary> | ||
_270, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters