Skip to content

Commit

Permalink
Fix access contol
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriyvan committed Dec 15, 2023
1 parent e3ad3d5 commit b874832
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/geometrize/Bitmap.swift
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ public struct Bitmap {
}

// https://home.jeita.or.jp/tsc/std-pdf/CP3451C.pdf, page 30
enum ExifOrientation: Int {
public enum ExifOrientation: Int {
// 1 The Oth row is at the visual top of the image, and the 0th column is the visual left-hand side.
case up = 1
// 2 The Oth row is at the visual top of the image, and the Oth column is the visual right-hand side.
Expand All @@ -290,7 +290,7 @@ public struct Bitmap {
case right = 8
}

mutating func rotateToUpOrientation(accordingTo orientation: ExifOrientation) {
public mutating func rotateToUpOrientation(accordingTo orientation: ExifOrientation) {
switch orientation {
case .up:
()
Expand Down

0 comments on commit b874832

Please sign in to comment.