1
1
mirror of https://github.com/exyte/Macaw.git synced 2024-09-11 13:15:35 +03:00
Macaw/Source/MCAShapeLayerLineCap_macOS.swift
2018-10-04 14:43:11 +07:00

32 lines
706 B
Swift

//
// MCAShapeLayerLineCap_macOS.swift
// MacawOSX
//
// Created by Anton Marunko on 27/09/2018.
// Copyright © 2018 Exyte. All rights reserved.
//
import Foundation
#if os(OSX)
import AppKit
public struct MCAShapeLayerLineCap {
static let butt = CAShapeLayerLineCap.butt
static let round = CAShapeLayerLineCap.round
static let square = CAShapeLayerLineCap.square
static func mapToGraphics(model: LineCap) -> CAShapeLayerLineCap {
switch model {
case .butt:
return MCAShapeLayerLineCap.butt
case .round:
return MCAShapeLayerLineCap.round
case .square:
return MCAShapeLayerLineCap.square
}
}
}
#endif