Skip to content

Commit

Permalink
fix: make CropRegion props public (#299)
Browse files Browse the repository at this point in the history
Co-authored-by: Karllas <28707155+Karllas@users.noreply.github.com>
  • Loading branch information
Karllas and Karllas committed Apr 17, 2023
1 parent fe92535 commit d919e54
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Sources/Mantis/CropData.swift
Expand Up @@ -35,10 +35,10 @@ public typealias Transformation = (
)

public struct CropRegion: Equatable {
var topLeft: CGPoint
var topRight: CGPoint
var bottomLeft: CGPoint
var bottomRight: CGPoint
public var topLeft: CGPoint
public var topRight: CGPoint
public var bottomLeft: CGPoint
public var bottomRight: CGPoint
}

public typealias CropInfo = (
Expand Down

0 comments on commit d919e54

Please sign in to comment.