2026-07-25 12:39:32 +02:00
|
|
|
internal import CPlaydate
|
|
|
|
|
|
|
|
|
|
extension Graphics {
|
2026-09-18 13:15:08 +00:00
|
|
|
/// Line end caps. Wraps `LCDLineCapStyle`.
|
2026-07-25 12:39:32 +02:00
|
|
|
public enum LineCapStyle: UInt32, Sendable {
|
2026-09-18 13:15:08 +00:00
|
|
|
/// Flat, ending at the endpoint.
|
2026-07-25 12:39:32 +02:00
|
|
|
case butt = 0
|
2026-09-18 13:15:08 +00:00
|
|
|
/// Square, extending past the endpoint.
|
2026-07-25 12:39:32 +02:00
|
|
|
case square = 1
|
|
|
|
|
case round = 2
|
|
|
|
|
|
|
|
|
|
var cValue: LCDLineCapStyle { LCDLineCapStyle(LCDLineCapStyle.RawValue(rawValue)) }
|
|
|
|
|
}
|
|
|
|
|
}
|