FrameSize

public struct FrameSize : Equatable, Comparable, Codable
  • Declaration

    Swift

    public static func < (lhs: FrameSize, rhs: FrameSize) -> Bool
  • Declaration

    Swift

    public static func == (lhs: `Self`, rhs: `Self`) -> Bool
  • Declaration

    Swift

    public static func / (lhs: `Self`, scale: Int) -> FrameSize
  • Declaration

    Swift

    public static func * (lhs: `Self`, scale: Int) -> FrameSize
  • Declaration

    Swift

    public static func / (lhs: `Self`, scale: Double) -> FrameSize
  • Declaration

    Swift

    public static func * (lhs: `Self`, scale: Double) -> FrameSize
  • Declaration

    Swift

    public static func / (lhs: `Self`, scale: Float) -> FrameSize
  • Declaration

    Swift

    public static func * (lhs: `Self`, scale: Float) -> FrameSize
  • Declaration

    Swift

    public let width: Int
  • Declaration

    Swift

    public let height: Int
  • Declaration

    Swift

    public var size: Int { get }
  • Declaration

    Swift

    public init(width: Int, height: Int)