The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build DLCoreGraphics, reference master (d0c75e), with Swift 6.1 for Linux on 26 Apr 2025 09:23:42 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

28 |         return lhs.translated(by: rhs)
   |                              `- error: incorrect argument label in call (have 'by:', expected 'byX:')
29 |     }
30 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:28:38: error: missing argument for parameter 'y' in call
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
28 |         return lhs.translated(by: rhs)
   |                                      `- error: missing argument for parameter 'y' in call
29 |     }
30 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Geometry/Translatable2D.swift:24:10: note: 'translated(byX:y:)' declared here
22 |     ///   - y: The y offset used for translation.
23 |     /// - Returns: The translated copy of self.
24 |     func translated(byX x: CGFloat, y: CGFloat) -> Self
   |          `- note: 'translated(byX:y:)' declared here
25 |     // swiftlint:enable identifier_name
26 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:32:22: error: incorrect argument label in call (have 'by:', expected 'byX:')
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
32 |         lhs.translate(by: rhs)
   |                      `- error: incorrect argument label in call (have 'by:', expected 'byX:')
33 |     }
34 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:32:30: error: missing argument for parameter 'y' in call
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
32 |         lhs.translate(by: rhs)
   |                              `- error: missing argument for parameter 'y' in call
33 |     }
34 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Geometry/Translatable2D.swift:17:19: note: 'translate(byX:y:)' declared here
15 |     ///   - x: The x offset used for translation.
16 |     ///   - y: The y offset used for translation.
17 |     mutating func translate(byX x: CGFloat, y: CGFloat)
   |                   `- note: 'translate(byX:y:)' declared here
18 |     /// Creates a translated copy of self.
19 |     ///
[67/81] Compiling DLCoreGraphics Translatable2D+CGVectorExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+CGVectorExtension.swift:11:40: error: cannot find type 'CGVector' in scope
 9 |
10 | public extension Translatable2D {
11 |     mutating func translate(by vector: CGVector) {
   |                                        `- error: cannot find type 'CGVector' in scope
12 |         translate(byX: vector.dx, y: vector.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+CGVectorExtension.swift:15:32: error: cannot find type 'CGVector' in scope
13 |     }
14 |
15 |     func translated(by vector: CGVector) -> Self {
   |                                `- error: cannot find type 'CGVector' in scope
16 |         return translated(byX: vector.dx, y: vector.dy)
17 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:31:47: error: cannot find type 'CGVector' in scope
29 |     }
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
32 |         lhs.translate(by: rhs)
33 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:39:47: error: cannot find type 'CGVector' in scope
37 |     }
38 |
39 |     static func -= (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
40 |         lhs += (-rhs)
41 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:28:30: error: incorrect argument label in call (have 'by:', expected 'byX:')
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
28 |         return lhs.translated(by: rhs)
   |                              `- error: incorrect argument label in call (have 'by:', expected 'byX:')
29 |     }
30 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:28:38: error: missing argument for parameter 'y' in call
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
28 |         return lhs.translated(by: rhs)
   |                                      `- error: missing argument for parameter 'y' in call
29 |     }
30 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Geometry/Translatable2D.swift:24:10: note: 'translated(byX:y:)' declared here
22 |     ///   - y: The y offset used for translation.
23 |     /// - Returns: The translated copy of self.
24 |     func translated(byX x: CGFloat, y: CGFloat) -> Self
   |          `- note: 'translated(byX:y:)' declared here
25 |     // swiftlint:enable identifier_name
26 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:32:22: error: incorrect argument label in call (have 'by:', expected 'byX:')
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
32 |         lhs.translate(by: rhs)
   |                      `- error: incorrect argument label in call (have 'by:', expected 'byX:')
33 |     }
34 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:32:30: error: missing argument for parameter 'y' in call
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
32 |         lhs.translate(by: rhs)
   |                              `- error: missing argument for parameter 'y' in call
33 |     }
34 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Geometry/Translatable2D.swift:17:19: note: 'translate(byX:y:)' declared here
15 |     ///   - x: The x offset used for translation.
16 |     ///   - y: The y offset used for translation.
17 |     mutating func translate(byX x: CGFloat, y: CGFloat)
   |                   `- note: 'translate(byX:y:)' declared here
18 |     /// Creates a translated copy of self.
19 |     ///
[68/81] Compiling DLCoreGraphics Translatable2D+OperatorsExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+CGVectorExtension.swift:11:40: error: cannot find type 'CGVector' in scope
 9 |
10 | public extension Translatable2D {
11 |     mutating func translate(by vector: CGVector) {
   |                                        `- error: cannot find type 'CGVector' in scope
12 |         translate(byX: vector.dx, y: vector.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+CGVectorExtension.swift:15:32: error: cannot find type 'CGVector' in scope
13 |     }
14 |
15 |     func translated(by vector: CGVector) -> Self {
   |                                `- error: cannot find type 'CGVector' in scope
16 |         return translated(byX: vector.dx, y: vector.dy)
17 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:31:47: error: cannot find type 'CGVector' in scope
29 |     }
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
32 |         lhs.translate(by: rhs)
33 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:39:47: error: cannot find type 'CGVector' in scope
37 |     }
38 |
39 |     static func -= (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
40 |         lhs += (-rhs)
41 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:28:30: error: incorrect argument label in call (have 'by:', expected 'byX:')
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
28 |         return lhs.translated(by: rhs)
   |                              `- error: incorrect argument label in call (have 'by:', expected 'byX:')
29 |     }
30 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:28:38: error: missing argument for parameter 'y' in call
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
28 |         return lhs.translated(by: rhs)
   |                                      `- error: missing argument for parameter 'y' in call
29 |     }
30 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Geometry/Translatable2D.swift:24:10: note: 'translated(byX:y:)' declared here
22 |     ///   - y: The y offset used for translation.
23 |     /// - Returns: The translated copy of self.
24 |     func translated(byX x: CGFloat, y: CGFloat) -> Self
   |          `- note: 'translated(byX:y:)' declared here
25 |     // swiftlint:enable identifier_name
26 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:32:22: error: incorrect argument label in call (have 'by:', expected 'byX:')
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
32 |         lhs.translate(by: rhs)
   |                      `- error: incorrect argument label in call (have 'by:', expected 'byX:')
33 |     }
34 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:32:30: error: missing argument for parameter 'y' in call
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
32 |         lhs.translate(by: rhs)
   |                              `- error: missing argument for parameter 'y' in call
33 |     }
34 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Geometry/Translatable2D.swift:17:19: note: 'translate(byX:y:)' declared here
15 |     ///   - x: The x offset used for translation.
16 |     ///   - y: The y offset used for translation.
17 |     mutating func translate(byX x: CGFloat, y: CGFloat)
   |                   `- note: 'translate(byX:y:)' declared here
18 |     /// Creates a translated copy of self.
19 |     ///
[69/81] Compiling DLCoreGraphics UIEdgeInsets+InversibleExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+CGVectorExtension.swift:11:40: error: cannot find type 'CGVector' in scope
 9 |
10 | public extension Translatable2D {
11 |     mutating func translate(by vector: CGVector) {
   |                                        `- error: cannot find type 'CGVector' in scope
12 |         translate(byX: vector.dx, y: vector.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+CGVectorExtension.swift:15:32: error: cannot find type 'CGVector' in scope
13 |     }
14 |
15 |     func translated(by vector: CGVector) -> Self {
   |                                `- error: cannot find type 'CGVector' in scope
16 |         return translated(byX: vector.dx, y: vector.dy)
17 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:31:47: error: cannot find type 'CGVector' in scope
29 |     }
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
32 |         lhs.translate(by: rhs)
33 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:39:47: error: cannot find type 'CGVector' in scope
37 |     }
38 |
39 |     static func -= (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
40 |         lhs += (-rhs)
41 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:28:30: error: incorrect argument label in call (have 'by:', expected 'byX:')
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
28 |         return lhs.translated(by: rhs)
   |                              `- error: incorrect argument label in call (have 'by:', expected 'byX:')
29 |     }
30 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:28:38: error: missing argument for parameter 'y' in call
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
28 |         return lhs.translated(by: rhs)
   |                                      `- error: missing argument for parameter 'y' in call
29 |     }
30 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Geometry/Translatable2D.swift:24:10: note: 'translated(byX:y:)' declared here
22 |     ///   - y: The y offset used for translation.
23 |     /// - Returns: The translated copy of self.
24 |     func translated(byX x: CGFloat, y: CGFloat) -> Self
   |          `- note: 'translated(byX:y:)' declared here
25 |     // swiftlint:enable identifier_name
26 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:32:22: error: incorrect argument label in call (have 'by:', expected 'byX:')
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
32 |         lhs.translate(by: rhs)
   |                      `- error: incorrect argument label in call (have 'by:', expected 'byX:')
33 |     }
34 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:32:30: error: missing argument for parameter 'y' in call
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
32 |         lhs.translate(by: rhs)
   |                              `- error: missing argument for parameter 'y' in call
33 |     }
34 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Geometry/Translatable2D.swift:17:19: note: 'translate(byX:y:)' declared here
15 |     ///   - x: The x offset used for translation.
16 |     ///   - y: The y offset used for translation.
17 |     mutating func translate(byX x: CGFloat, y: CGFloat)
   |                   `- note: 'translate(byX:y:)' declared here
18 |     /// Creates a translated copy of self.
19 |     ///
[70/81] Compiling DLCoreGraphics UIEdgeInsetsExtension.swift
[71/81] Compiling DLCoreGraphics AbsoluteValueApplicable.swift
[72/81] Compiling DLCoreGraphics Inversible.swift
[73/81] Compiling DLCoreGraphics Roundable.swift
[74/81] Compiling DLCoreGraphics CGVectorExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVectorExtension.swift:11:18: error: cannot find type 'CGVector' in scope
 9 | import DLAngle
10 |
11 | public extension CGVector {
   |                  `- error: cannot find type 'CGVector' in scope
12 |     /// The length of the vector segment.
13 |     var magnitude: CGFloat {
[75/81] Compiling DLCoreGraphics AbsoluteValueApplicable+FoundationExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVectorExtension.swift:11:18: error: cannot find type 'CGVector' in scope
 9 | import DLAngle
10 |
11 | public extension CGVector {
   |                  `- error: cannot find type 'CGVector' in scope
12 |     /// The length of the vector segment.
13 |     var magnitude: CGFloat {
[76/81] Compiling DLCoreGraphics Roundable+FoundationExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVectorExtension.swift:11:18: error: cannot find type 'CGVector' in scope
 9 | import DLAngle
10 |
11 | public extension CGVector {
   |                  `- error: cannot find type 'CGVector' in scope
12 |     /// The length of the vector segment.
13 |     var magnitude: CGFloat {
[77/81] Compiling DLCoreGraphics Roundable+UIScreenExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVectorExtension.swift:11:18: error: cannot find type 'CGVector' in scope
 9 | import DLAngle
10 |
11 | public extension CGVector {
   |                  `- error: cannot find type 'CGVector' in scope
12 |     /// The length of the vector segment.
13 |     var magnitude: CGFloat {
[78/81] Compiling DLCoreGraphics Scalable2D.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
[79/81] Compiling DLCoreGraphics Segment.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
[80/81] Compiling DLCoreGraphics Transformable2D.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
[81/81] Compiling DLCoreGraphics Translatable2D.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/13] Compiling DLInterval IntervalType.swift
[3/14] Compiling DLInterval Boundary.swift
[4/14] Compiling DLInterval Double+FrameworkExtension.swift
[5/14] Compiling DLInterval UnionInterval.swift
[6/14] Compiling DLInterval IntervalOperators.swift
[7/14] Compiling DLInterval ExpressibleByIntervalTuple.swift
[8/14] Compiling DLInterval ExpressibleByRange.swift
[9/14] Compiling DLInterval IntervalExtremum.swift
[10/14] Compiling DLInterval ExpressibleByClosedRange.swift
[11/14] Compiling DLInterval ExpressibleByIntervalArray.swift
[12/14] Emitting module DLInterval
[13/14] Compiling DLInterval Interval.swift
[14/14] Compiling DLInterval IntervalBoundary.swift
[16/38] Compiling DLAngle Radian+HyperbolicTrigonometricFunctions.swift
[17/38] Compiling DLAngle Radian+InverseHyperbolicTrigonometricFunctions.swift
[18/38] Compiling DLAngle Radian+InverseTrigonometricFunctions.swift
[19/41] Emitting module DLAngle
[20/41] Compiling DLAngle RadianConstants.swift
[21/41] Compiling DLAngle ArgumentsChecker.swift
[22/41] Compiling DLAngle Atan2ArgumentsChecker.swift
[23/41] Compiling DLAngle Radian+Measument.swift
[24/41] Compiling DLAngle Radian+TrigonometricFunctions.swift
[25/41] Compiling DLAngle Radian.swift
[26/41] Compiling DLAngle IntervalType.swift
[27/41] Compiling DLAngle Predicate.swift
[28/41] Compiling DLAngle TrigonometricArgumentsChecker.swift
[29/41] Compiling DLAngle TrigonometricError.swift
[30/41] Compiling DLAngle TrigonometricFunction.swift
[31/41] Compiling DLAngle GenericTrigonometry.swift
[32/41] Compiling DLAngle Trigonometry+HyperbolicTrigonometricFunctions.swift
[33/41] Compiling DLAngle Trigonometry+InverseHyperbolicTrigonometricFunctions.swift
[34/41] Compiling DLAngle Trigonometry+InverseTrigonometricFunctions.swift
[35/41] Compiling DLAngle Angle.swift
[36/41] Compiling DLAngle Degree+Measurement.swift
[37/41] Compiling DLAngle Degree.swift
[38/41] Compiling DLAngle NormalizedType.swift
[39/41] Compiling DLAngle Trigonometry+TrigonometricFunctions.swift
[40/41] Compiling DLAngle Trigonometry+Validation.swift
[41/41] Compiling DLAngle Trigonometry.swift
[43/74] Compiling DLCoreGraphics CGVectorExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVectorExtension.swift:11:18: error: cannot find type 'CGVector' in scope
 9 | import DLAngle
10 |
11 | public extension CGVector {
   |                  `- error: cannot find type 'CGVector' in scope
12 |     /// The length of the vector segment.
13 |     var magnitude: CGFloat {
[44/74] Compiling DLCoreGraphics AbsoluteValueApplicable+FoundationExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVectorExtension.swift:11:18: error: cannot find type 'CGVector' in scope
 9 | import DLAngle
10 |
11 | public extension CGVector {
   |                  `- error: cannot find type 'CGVector' in scope
12 |     /// The length of the vector segment.
13 |     var magnitude: CGFloat {
[45/74] Compiling DLCoreGraphics Roundable+FoundationExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVectorExtension.swift:11:18: error: cannot find type 'CGVector' in scope
 9 | import DLAngle
10 |
11 | public extension CGVector {
   |                  `- error: cannot find type 'CGVector' in scope
12 |     /// The length of the vector segment.
13 |     var magnitude: CGFloat {
[46/74] Compiling DLCoreGraphics Roundable+UIScreenExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVectorExtension.swift:11:18: error: cannot find type 'CGVector' in scope
 9 | import DLAngle
10 |
11 | public extension CGVector {
   |                  `- error: cannot find type 'CGVector' in scope
12 |     /// The length of the vector segment.
13 |     var magnitude: CGFloat {
[47/74] Compiling DLCoreGraphics CGVector+CompareExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+CompareExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Comparable {
   |           `- error: cannot find type 'CGVector' in scope
11 |     public static func < (lhs: CGVector, rhs: CGVector) -> Bool {
12 |         return lhs.magnitude < rhs.magnitude
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Inversible {
   |           `- error: cannot find type 'CGVector' in scope
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+RoundExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Roundable {
   |           `- error: cannot find type 'CGVector' in scope
11 |     mutating public func round() {
12 |         dx = Darwin.round(dx)
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+ScaleExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Scalable2D {
   |           `- error: cannot find type 'CGVector' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func scale(byX x: CGFloat, y: CGFloat) {
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+CompareExtension.swift:11:32: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Comparable {
11 |     public static func < (lhs: CGVector, rhs: CGVector) -> Bool {
   |                                `- error: cannot find type 'CGVector' in scope
12 |         return lhs.magnitude < rhs.magnitude
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+CompareExtension.swift:11:47: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Comparable {
11 |     public static func < (lhs: CGVector, rhs: CGVector) -> Bool {
   |                                               `- error: cannot find type 'CGVector' in scope
12 |         return lhs.magnitude < rhs.magnitude
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+RoundExtension.swift:16:30: error: cannot find type 'CGVector' in scope
14 |     }
15 |
16 |     public func rounded() -> CGVector {
   |                              `- error: cannot find type 'CGVector' in scope
17 |         return CGVector(dx: Darwin.round(dx), dy: Darwin.round(dy))
18 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+RoundExtension.swift:25:30: error: cannot find type 'CGVector' in scope
23 |     }
24 |
25 |     public func ceiling() -> CGVector {
   |                              `- error: cannot find type 'CGVector' in scope
26 |         return CGVector(dx: Darwin.ceil(dx), dy: Darwin.ceil(dy))
27 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+RoundExtension.swift:34:31: error: cannot find type 'CGVector' in scope
32 |     }
33 |
34 |     public func flooring() -> CGVector {
   |                               `- error: cannot find type 'CGVector' in scope
35 |         return CGVector(dx: Darwin.floor(dx), dy: Darwin.floor(dy))
36 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+ScaleExtension.swift:18:55: error: cannot find type 'CGVector' in scope
16 |
17 |     // swiftlint:disable:next identifier_name
18 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGVector {
   |                                                       `- error: cannot find type 'CGVector' in scope
19 |         return CGVector(dx: dx * x, dy: dy * y)
20 |     }
[48/74] Compiling DLCoreGraphics CGVector+InversibleExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+CompareExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Comparable {
   |           `- error: cannot find type 'CGVector' in scope
11 |     public static func < (lhs: CGVector, rhs: CGVector) -> Bool {
12 |         return lhs.magnitude < rhs.magnitude
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Inversible {
   |           `- error: cannot find type 'CGVector' in scope
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+RoundExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Roundable {
   |           `- error: cannot find type 'CGVector' in scope
11 |     mutating public func round() {
12 |         dx = Darwin.round(dx)
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+ScaleExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Scalable2D {
   |           `- error: cannot find type 'CGVector' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func scale(byX x: CGFloat, y: CGFloat) {
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+CompareExtension.swift:11:32: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Comparable {
11 |     public static func < (lhs: CGVector, rhs: CGVector) -> Bool {
   |                                `- error: cannot find type 'CGVector' in scope
12 |         return lhs.magnitude < rhs.magnitude
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+CompareExtension.swift:11:47: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Comparable {
11 |     public static func < (lhs: CGVector, rhs: CGVector) -> Bool {
   |                                               `- error: cannot find type 'CGVector' in scope
12 |         return lhs.magnitude < rhs.magnitude
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+RoundExtension.swift:16:30: error: cannot find type 'CGVector' in scope
14 |     }
15 |
16 |     public func rounded() -> CGVector {
   |                              `- error: cannot find type 'CGVector' in scope
17 |         return CGVector(dx: Darwin.round(dx), dy: Darwin.round(dy))
18 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+RoundExtension.swift:25:30: error: cannot find type 'CGVector' in scope
23 |     }
24 |
25 |     public func ceiling() -> CGVector {
   |                              `- error: cannot find type 'CGVector' in scope
26 |         return CGVector(dx: Darwin.ceil(dx), dy: Darwin.ceil(dy))
27 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+RoundExtension.swift:34:31: error: cannot find type 'CGVector' in scope
32 |     }
33 |
34 |     public func flooring() -> CGVector {
   |                               `- error: cannot find type 'CGVector' in scope
35 |         return CGVector(dx: Darwin.floor(dx), dy: Darwin.floor(dy))
36 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+ScaleExtension.swift:18:55: error: cannot find type 'CGVector' in scope
16 |
17 |     // swiftlint:disable:next identifier_name
18 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGVector {
   |                                                       `- error: cannot find type 'CGVector' in scope
19 |         return CGVector(dx: dx * x, dy: dy * y)
20 |     }
[49/74] Compiling DLCoreGraphics CGVector+RoundExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+CompareExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Comparable {
   |           `- error: cannot find type 'CGVector' in scope
11 |     public static func < (lhs: CGVector, rhs: CGVector) -> Bool {
12 |         return lhs.magnitude < rhs.magnitude
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Inversible {
   |           `- error: cannot find type 'CGVector' in scope
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+RoundExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Roundable {
   |           `- error: cannot find type 'CGVector' in scope
11 |     mutating public func round() {
12 |         dx = Darwin.round(dx)
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+ScaleExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Scalable2D {
   |           `- error: cannot find type 'CGVector' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func scale(byX x: CGFloat, y: CGFloat) {
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+CompareExtension.swift:11:32: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Comparable {
11 |     public static func < (lhs: CGVector, rhs: CGVector) -> Bool {
   |                                `- error: cannot find type 'CGVector' in scope
12 |         return lhs.magnitude < rhs.magnitude
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+CompareExtension.swift:11:47: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Comparable {
11 |     public static func < (lhs: CGVector, rhs: CGVector) -> Bool {
   |                                               `- error: cannot find type 'CGVector' in scope
12 |         return lhs.magnitude < rhs.magnitude
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+RoundExtension.swift:16:30: error: cannot find type 'CGVector' in scope
14 |     }
15 |
16 |     public func rounded() -> CGVector {
   |                              `- error: cannot find type 'CGVector' in scope
17 |         return CGVector(dx: Darwin.round(dx), dy: Darwin.round(dy))
18 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+RoundExtension.swift:25:30: error: cannot find type 'CGVector' in scope
23 |     }
24 |
25 |     public func ceiling() -> CGVector {
   |                              `- error: cannot find type 'CGVector' in scope
26 |         return CGVector(dx: Darwin.ceil(dx), dy: Darwin.ceil(dy))
27 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+RoundExtension.swift:34:31: error: cannot find type 'CGVector' in scope
32 |     }
33 |
34 |     public func flooring() -> CGVector {
   |                               `- error: cannot find type 'CGVector' in scope
35 |         return CGVector(dx: Darwin.floor(dx), dy: Darwin.floor(dy))
36 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+ScaleExtension.swift:18:55: error: cannot find type 'CGVector' in scope
16 |
17 |     // swiftlint:disable:next identifier_name
18 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGVector {
   |                                                       `- error: cannot find type 'CGVector' in scope
19 |         return CGVector(dx: dx * x, dy: dy * y)
20 |     }
[50/74] Compiling DLCoreGraphics CGVector+ScaleExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+CompareExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Comparable {
   |           `- error: cannot find type 'CGVector' in scope
11 |     public static func < (lhs: CGVector, rhs: CGVector) -> Bool {
12 |         return lhs.magnitude < rhs.magnitude
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Inversible {
   |           `- error: cannot find type 'CGVector' in scope
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+RoundExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Roundable {
   |           `- error: cannot find type 'CGVector' in scope
11 |     mutating public func round() {
12 |         dx = Darwin.round(dx)
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+ScaleExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Scalable2D {
   |           `- error: cannot find type 'CGVector' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func scale(byX x: CGFloat, y: CGFloat) {
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+CompareExtension.swift:11:32: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Comparable {
11 |     public static func < (lhs: CGVector, rhs: CGVector) -> Bool {
   |                                `- error: cannot find type 'CGVector' in scope
12 |         return lhs.magnitude < rhs.magnitude
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+CompareExtension.swift:11:47: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Comparable {
11 |     public static func < (lhs: CGVector, rhs: CGVector) -> Bool {
   |                                               `- error: cannot find type 'CGVector' in scope
12 |         return lhs.magnitude < rhs.magnitude
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+RoundExtension.swift:16:30: error: cannot find type 'CGVector' in scope
14 |     }
15 |
16 |     public func rounded() -> CGVector {
   |                              `- error: cannot find type 'CGVector' in scope
17 |         return CGVector(dx: Darwin.round(dx), dy: Darwin.round(dy))
18 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+RoundExtension.swift:25:30: error: cannot find type 'CGVector' in scope
23 |     }
24 |
25 |     public func ceiling() -> CGVector {
   |                              `- error: cannot find type 'CGVector' in scope
26 |         return CGVector(dx: Darwin.ceil(dx), dy: Darwin.ceil(dy))
27 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+RoundExtension.swift:34:31: error: cannot find type 'CGVector' in scope
32 |     }
33 |
34 |     public func flooring() -> CGVector {
   |                               `- error: cannot find type 'CGVector' in scope
35 |         return CGVector(dx: Darwin.floor(dx), dy: Darwin.floor(dy))
36 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+ScaleExtension.swift:18:55: error: cannot find type 'CGVector' in scope
16 |
17 |     // swiftlint:disable:next identifier_name
18 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGVector {
   |                                                       `- error: cannot find type 'CGVector' in scope
19 |         return CGVector(dx: dx * x, dy: dy * y)
20 |     }
[51/78] Compiling DLCoreGraphics UIEdgeInsetsExtension.swift
[52/78] Compiling DLCoreGraphics AbsoluteValueApplicable.swift
[53/78] Compiling DLCoreGraphics Inversible.swift
[54/78] Compiling DLCoreGraphics Roundable.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[55/78] Emitting module DLCoreGraphics
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+AbsoluteValueExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: AbsoluteValueApplicable {
   |           `- error: cannot find type 'CGVector' in scope
11 |     mutating public func applyAbs() {
12 |         dx = abs(dx)
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+CompareExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Comparable {
   |           `- error: cannot find type 'CGVector' in scope
11 |     public static func < (lhs: CGVector, rhs: CGVector) -> Bool {
12 |         return lhs.magnitude < rhs.magnitude
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Inversible {
   |           `- error: cannot find type 'CGVector' in scope
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+RoundExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Roundable {
   |           `- error: cannot find type 'CGVector' in scope
11 |     mutating public func round() {
12 |         dx = Darwin.round(dx)
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+ScaleExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: Scalable2D {
   |           `- error: cannot find type 'CGVector' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func scale(byX x: CGFloat, y: CGFloat) {
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVectorExtension.swift:11:18: error: cannot find type 'CGVector' in scope
 9 | import DLAngle
10 |
11 | public extension CGVector {
   |                  `- error: cannot find type 'CGVector' in scope
12 |     /// The length of the vector segment.
13 |     var magnitude: CGFloat {
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+CGVectorExtension.swift:11:40: error: cannot find type 'CGVector' in scope
 9 |
10 | public extension Translatable2D {
11 |     mutating func translate(by vector: CGVector) {
   |                                        `- error: cannot find type 'CGVector' in scope
12 |         translate(byX: vector.dx, y: vector.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+CGVectorExtension.swift:15:32: error: cannot find type 'CGVector' in scope
13 |     }
14 |
15 |     func translated(by vector: CGVector) -> Self {
   |                                `- error: cannot find type 'CGVector' in scope
16 |         return translated(byX: vector.dx, y: vector.dy)
17 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:31:47: error: cannot find type 'CGVector' in scope
29 |     }
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
32 |         lhs.translate(by: rhs)
33 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:39:47: error: cannot find type 'CGVector' in scope
37 |     }
38 |
39 |     static func -= (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
40 |         lhs += (-rhs)
41 |     }
[56/78] Compiling DLCoreGraphics CGPoint+AbsoluteValueExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:12:13: error: cannot find 'Darwin' in scope
10 | extension CGPoint: Roundable {
11 |     mutating public func round() {
12 |         x = Darwin.round(x)
   |             `- error: cannot find 'Darwin' in scope
13 |         y = Darwin.round(y)
14 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:13:13: error: cannot find 'Darwin' in scope
11 |     mutating public func round() {
12 |         x = Darwin.round(x)
13 |         y = Darwin.round(y)
   |             `- error: cannot find 'Darwin' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:17:27: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGPoint {
17 |         return CGPoint(x: Darwin.round(x), y: Darwin.round(y))
   |                           `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:17:47: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGPoint {
17 |         return CGPoint(x: Darwin.round(x), y: Darwin.round(y))
   |                                               `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:21:13: error: cannot find 'Darwin' in scope
19 |
20 |     mutating public func ceil() {
21 |         x = Darwin.ceil(x)
   |             `- error: cannot find 'Darwin' in scope
22 |         y = Darwin.ceil(y)
23 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:22:13: error: cannot find 'Darwin' in scope
20 |     mutating public func ceil() {
21 |         x = Darwin.ceil(x)
22 |         y = Darwin.ceil(y)
   |             `- error: cannot find 'Darwin' in scope
23 |     }
24 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:26:27: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGPoint {
26 |         return CGPoint(x: Darwin.ceil(x), y: Darwin.ceil(y))
   |                           `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:26:46: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGPoint {
26 |         return CGPoint(x: Darwin.ceil(x), y: Darwin.ceil(y))
   |                                              `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:30:13: error: cannot find 'Darwin' in scope
28 |
29 |     mutating public func floor() {
30 |         x = Darwin.floor(x)
   |             `- error: cannot find 'Darwin' in scope
31 |         y = Darwin.floor(y)
32 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:31:13: error: cannot find 'Darwin' in scope
29 |     mutating public func floor() {
30 |         x = Darwin.floor(x)
31 |         y = Darwin.floor(y)
   |             `- error: cannot find 'Darwin' in scope
32 |     }
33 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:35:27: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGPoint {
35 |         return CGPoint(x: Darwin.floor(x), y: Darwin.floor(y))
   |                           `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:35:47: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGPoint {
35 |         return CGPoint(x: Darwin.floor(x), y: Darwin.floor(y))
   |                                               `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
[57/78] Compiling DLCoreGraphics CGPoint+InversibleExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:12:13: error: cannot find 'Darwin' in scope
10 | extension CGPoint: Roundable {
11 |     mutating public func round() {
12 |         x = Darwin.round(x)
   |             `- error: cannot find 'Darwin' in scope
13 |         y = Darwin.round(y)
14 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:13:13: error: cannot find 'Darwin' in scope
11 |     mutating public func round() {
12 |         x = Darwin.round(x)
13 |         y = Darwin.round(y)
   |             `- error: cannot find 'Darwin' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:17:27: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGPoint {
17 |         return CGPoint(x: Darwin.round(x), y: Darwin.round(y))
   |                           `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:17:47: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGPoint {
17 |         return CGPoint(x: Darwin.round(x), y: Darwin.round(y))
   |                                               `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:21:13: error: cannot find 'Darwin' in scope
19 |
20 |     mutating public func ceil() {
21 |         x = Darwin.ceil(x)
   |             `- error: cannot find 'Darwin' in scope
22 |         y = Darwin.ceil(y)
23 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:22:13: error: cannot find 'Darwin' in scope
20 |     mutating public func ceil() {
21 |         x = Darwin.ceil(x)
22 |         y = Darwin.ceil(y)
   |             `- error: cannot find 'Darwin' in scope
23 |     }
24 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:26:27: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGPoint {
26 |         return CGPoint(x: Darwin.ceil(x), y: Darwin.ceil(y))
   |                           `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:26:46: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGPoint {
26 |         return CGPoint(x: Darwin.ceil(x), y: Darwin.ceil(y))
   |                                              `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:30:13: error: cannot find 'Darwin' in scope
28 |
29 |     mutating public func floor() {
30 |         x = Darwin.floor(x)
   |             `- error: cannot find 'Darwin' in scope
31 |         y = Darwin.floor(y)
32 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:31:13: error: cannot find 'Darwin' in scope
29 |     mutating public func floor() {
30 |         x = Darwin.floor(x)
31 |         y = Darwin.floor(y)
   |             `- error: cannot find 'Darwin' in scope
32 |     }
33 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:35:27: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGPoint {
35 |         return CGPoint(x: Darwin.floor(x), y: Darwin.floor(y))
   |                           `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:35:47: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGPoint {
35 |         return CGPoint(x: Darwin.floor(x), y: Darwin.floor(y))
   |                                               `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
[58/78] Compiling DLCoreGraphics CGPoint+RoundExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:12:13: error: cannot find 'Darwin' in scope
10 | extension CGPoint: Roundable {
11 |     mutating public func round() {
12 |         x = Darwin.round(x)
   |             `- error: cannot find 'Darwin' in scope
13 |         y = Darwin.round(y)
14 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:13:13: error: cannot find 'Darwin' in scope
11 |     mutating public func round() {
12 |         x = Darwin.round(x)
13 |         y = Darwin.round(y)
   |             `- error: cannot find 'Darwin' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:17:27: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGPoint {
17 |         return CGPoint(x: Darwin.round(x), y: Darwin.round(y))
   |                           `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:17:47: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGPoint {
17 |         return CGPoint(x: Darwin.round(x), y: Darwin.round(y))
   |                                               `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:21:13: error: cannot find 'Darwin' in scope
19 |
20 |     mutating public func ceil() {
21 |         x = Darwin.ceil(x)
   |             `- error: cannot find 'Darwin' in scope
22 |         y = Darwin.ceil(y)
23 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:22:13: error: cannot find 'Darwin' in scope
20 |     mutating public func ceil() {
21 |         x = Darwin.ceil(x)
22 |         y = Darwin.ceil(y)
   |             `- error: cannot find 'Darwin' in scope
23 |     }
24 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:26:27: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGPoint {
26 |         return CGPoint(x: Darwin.ceil(x), y: Darwin.ceil(y))
   |                           `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:26:46: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGPoint {
26 |         return CGPoint(x: Darwin.ceil(x), y: Darwin.ceil(y))
   |                                              `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:30:13: error: cannot find 'Darwin' in scope
28 |
29 |     mutating public func floor() {
30 |         x = Darwin.floor(x)
   |             `- error: cannot find 'Darwin' in scope
31 |         y = Darwin.floor(y)
32 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:31:13: error: cannot find 'Darwin' in scope
29 |     mutating public func floor() {
30 |         x = Darwin.floor(x)
31 |         y = Darwin.floor(y)
   |             `- error: cannot find 'Darwin' in scope
32 |     }
33 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:35:27: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGPoint {
35 |         return CGPoint(x: Darwin.floor(x), y: Darwin.floor(y))
   |                           `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:35:47: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGPoint {
35 |         return CGPoint(x: Darwin.floor(x), y: Darwin.floor(y))
   |                                               `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
[59/78] Compiling DLCoreGraphics CGPoint+ScaleExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:12:13: error: cannot find 'Darwin' in scope
10 | extension CGPoint: Roundable {
11 |     mutating public func round() {
12 |         x = Darwin.round(x)
   |             `- error: cannot find 'Darwin' in scope
13 |         y = Darwin.round(y)
14 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:13:13: error: cannot find 'Darwin' in scope
11 |     mutating public func round() {
12 |         x = Darwin.round(x)
13 |         y = Darwin.round(y)
   |             `- error: cannot find 'Darwin' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:17:27: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGPoint {
17 |         return CGPoint(x: Darwin.round(x), y: Darwin.round(y))
   |                           `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:17:47: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGPoint {
17 |         return CGPoint(x: Darwin.round(x), y: Darwin.round(y))
   |                                               `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:21:13: error: cannot find 'Darwin' in scope
19 |
20 |     mutating public func ceil() {
21 |         x = Darwin.ceil(x)
   |             `- error: cannot find 'Darwin' in scope
22 |         y = Darwin.ceil(y)
23 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:22:13: error: cannot find 'Darwin' in scope
20 |     mutating public func ceil() {
21 |         x = Darwin.ceil(x)
22 |         y = Darwin.ceil(y)
   |             `- error: cannot find 'Darwin' in scope
23 |     }
24 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:26:27: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGPoint {
26 |         return CGPoint(x: Darwin.ceil(x), y: Darwin.ceil(y))
   |                           `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:26:46: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGPoint {
26 |         return CGPoint(x: Darwin.ceil(x), y: Darwin.ceil(y))
   |                                              `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:30:13: error: cannot find 'Darwin' in scope
28 |
29 |     mutating public func floor() {
30 |         x = Darwin.floor(x)
   |             `- error: cannot find 'Darwin' in scope
31 |         y = Darwin.floor(y)
32 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:31:13: error: cannot find 'Darwin' in scope
29 |     mutating public func floor() {
30 |         x = Darwin.floor(x)
31 |         y = Darwin.floor(y)
   |             `- error: cannot find 'Darwin' in scope
32 |     }
33 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:35:27: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGPoint {
35 |         return CGPoint(x: Darwin.floor(x), y: Darwin.floor(y))
   |                           `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:35:47: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGPoint {
35 |         return CGPoint(x: Darwin.floor(x), y: Darwin.floor(y))
   |                                               `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
[60/78] Compiling DLCoreGraphics CGPoint+TranslateExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:12:13: error: cannot find 'Darwin' in scope
10 | extension CGPoint: Roundable {
11 |     mutating public func round() {
12 |         x = Darwin.round(x)
   |             `- error: cannot find 'Darwin' in scope
13 |         y = Darwin.round(y)
14 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:13:13: error: cannot find 'Darwin' in scope
11 |     mutating public func round() {
12 |         x = Darwin.round(x)
13 |         y = Darwin.round(y)
   |             `- error: cannot find 'Darwin' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:17:27: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGPoint {
17 |         return CGPoint(x: Darwin.round(x), y: Darwin.round(y))
   |                           `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:17:47: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGPoint {
17 |         return CGPoint(x: Darwin.round(x), y: Darwin.round(y))
   |                                               `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:21:13: error: cannot find 'Darwin' in scope
19 |
20 |     mutating public func ceil() {
21 |         x = Darwin.ceil(x)
   |             `- error: cannot find 'Darwin' in scope
22 |         y = Darwin.ceil(y)
23 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:22:13: error: cannot find 'Darwin' in scope
20 |     mutating public func ceil() {
21 |         x = Darwin.ceil(x)
22 |         y = Darwin.ceil(y)
   |             `- error: cannot find 'Darwin' in scope
23 |     }
24 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:26:27: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGPoint {
26 |         return CGPoint(x: Darwin.ceil(x), y: Darwin.ceil(y))
   |                           `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:26:46: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGPoint {
26 |         return CGPoint(x: Darwin.ceil(x), y: Darwin.ceil(y))
   |                                              `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:30:13: error: cannot find 'Darwin' in scope
28 |
29 |     mutating public func floor() {
30 |         x = Darwin.floor(x)
   |             `- error: cannot find 'Darwin' in scope
31 |         y = Darwin.floor(y)
32 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:31:13: error: cannot find 'Darwin' in scope
29 |     mutating public func floor() {
30 |         x = Darwin.floor(x)
31 |         y = Darwin.floor(y)
   |             `- error: cannot find 'Darwin' in scope
32 |     }
33 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:35:27: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGPoint {
35 |         return CGPoint(x: Darwin.floor(x), y: Darwin.floor(y))
   |                           `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+RoundExtension.swift:35:47: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGPoint {
35 |         return CGPoint(x: Darwin.floor(x), y: Darwin.floor(y))
   |                                               `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+ScaleExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGPoint/CGPoint+TranslateExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGPoint {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
[61/78] Compiling DLCoreGraphics CGSize+AbsoluteValueExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:31:47: error: cannot find type 'CGVector' in scope
29 |     }
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
32 |         lhs.translate(by: rhs)
33 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:39:47: error: cannot find type 'CGVector' in scope
37 |     }
38 |
39 |     static func -= (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
40 |         lhs += (-rhs)
41 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:12:17: error: cannot find 'Darwin' in scope
10 | extension CGSize: Roundable {
11 |     mutating public func round() {
12 |         width = Darwin.round(width)
   |                 `- error: cannot find 'Darwin' in scope
13 |         height = Darwin.round(height)
14 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:13:18: error: cannot find 'Darwin' in scope
11 |     mutating public func round() {
12 |         width = Darwin.round(width)
13 |         height = Darwin.round(height)
   |                  `- error: cannot find 'Darwin' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:17:30: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGSize {
17 |         return CGSize(width: Darwin.round(width), height: Darwin.round(height))
   |                              `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:17:59: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGSize {
17 |         return CGSize(width: Darwin.round(width), height: Darwin.round(height))
   |                                                           `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:21:17: error: cannot find 'Darwin' in scope
19 |
20 |     mutating public func ceil() {
21 |         width = Darwin.ceil(width)
   |                 `- error: cannot find 'Darwin' in scope
22 |         height = Darwin.ceil(height)
23 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:22:18: error: cannot find 'Darwin' in scope
20 |     mutating public func ceil() {
21 |         width = Darwin.ceil(width)
22 |         height = Darwin.ceil(height)
   |                  `- error: cannot find 'Darwin' in scope
23 |     }
24 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:26:30: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGSize {
26 |         return CGSize(width: Darwin.ceil(width), height: Darwin.ceil(height))
   |                              `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:26:58: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGSize {
26 |         return CGSize(width: Darwin.ceil(width), height: Darwin.ceil(height))
   |                                                          `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:30:17: error: cannot find 'Darwin' in scope
28 |
29 |     mutating public func floor() {
30 |         width = Darwin.floor(width)
   |                 `- error: cannot find 'Darwin' in scope
31 |         height = Darwin.floor(height)
32 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:31:18: error: cannot find 'Darwin' in scope
29 |     mutating public func floor() {
30 |         width = Darwin.floor(width)
31 |         height = Darwin.floor(height)
   |                  `- error: cannot find 'Darwin' in scope
32 |     }
33 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:35:30: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGSize {
35 |         return CGSize(width: Darwin.floor(width), height: Darwin.floor(height))
   |                              `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:35:59: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGSize {
35 |         return CGSize(width: Darwin.floor(width), height: Darwin.floor(height))
   |                                                           `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGSize {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGSize {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+AbsoluteValueExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: AbsoluteValueApplicable {
   |           `- error: cannot find type 'CGVector' in scope
11 |     mutating public func applyAbs() {
12 |         dx = abs(dx)
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+AbsoluteValueExtension.swift:16:33: error: cannot find type 'CGVector' in scope
14 |     }
15 |
16 |     public func appliedAbs() -> CGVector {
   |                                 `- error: cannot find type 'CGVector' in scope
17 |         return CGVector(dx: abs(dx), dy: abs(dy))
18 |     }
[62/78] Compiling DLCoreGraphics CGSize+OperatorsExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:31:47: error: cannot find type 'CGVector' in scope
29 |     }
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
32 |         lhs.translate(by: rhs)
33 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:39:47: error: cannot find type 'CGVector' in scope
37 |     }
38 |
39 |     static func -= (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
40 |         lhs += (-rhs)
41 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:12:17: error: cannot find 'Darwin' in scope
10 | extension CGSize: Roundable {
11 |     mutating public func round() {
12 |         width = Darwin.round(width)
   |                 `- error: cannot find 'Darwin' in scope
13 |         height = Darwin.round(height)
14 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:13:18: error: cannot find 'Darwin' in scope
11 |     mutating public func round() {
12 |         width = Darwin.round(width)
13 |         height = Darwin.round(height)
   |                  `- error: cannot find 'Darwin' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:17:30: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGSize {
17 |         return CGSize(width: Darwin.round(width), height: Darwin.round(height))
   |                              `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:17:59: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGSize {
17 |         return CGSize(width: Darwin.round(width), height: Darwin.round(height))
   |                                                           `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:21:17: error: cannot find 'Darwin' in scope
19 |
20 |     mutating public func ceil() {
21 |         width = Darwin.ceil(width)
   |                 `- error: cannot find 'Darwin' in scope
22 |         height = Darwin.ceil(height)
23 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:22:18: error: cannot find 'Darwin' in scope
20 |     mutating public func ceil() {
21 |         width = Darwin.ceil(width)
22 |         height = Darwin.ceil(height)
   |                  `- error: cannot find 'Darwin' in scope
23 |     }
24 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:26:30: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGSize {
26 |         return CGSize(width: Darwin.ceil(width), height: Darwin.ceil(height))
   |                              `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:26:58: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGSize {
26 |         return CGSize(width: Darwin.ceil(width), height: Darwin.ceil(height))
   |                                                          `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:30:17: error: cannot find 'Darwin' in scope
28 |
29 |     mutating public func floor() {
30 |         width = Darwin.floor(width)
   |                 `- error: cannot find 'Darwin' in scope
31 |         height = Darwin.floor(height)
32 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:31:18: error: cannot find 'Darwin' in scope
29 |     mutating public func floor() {
30 |         width = Darwin.floor(width)
31 |         height = Darwin.floor(height)
   |                  `- error: cannot find 'Darwin' in scope
32 |     }
33 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:35:30: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGSize {
35 |         return CGSize(width: Darwin.floor(width), height: Darwin.floor(height))
   |                              `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:35:59: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGSize {
35 |         return CGSize(width: Darwin.floor(width), height: Darwin.floor(height))
   |                                                           `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGSize {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGSize {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+AbsoluteValueExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: AbsoluteValueApplicable {
   |           `- error: cannot find type 'CGVector' in scope
11 |     mutating public func applyAbs() {
12 |         dx = abs(dx)
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+AbsoluteValueExtension.swift:16:33: error: cannot find type 'CGVector' in scope
14 |     }
15 |
16 |     public func appliedAbs() -> CGVector {
   |                                 `- error: cannot find type 'CGVector' in scope
17 |         return CGVector(dx: abs(dx), dy: abs(dy))
18 |     }
[63/78] Compiling DLCoreGraphics CGSize+RoundExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:31:47: error: cannot find type 'CGVector' in scope
29 |     }
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
32 |         lhs.translate(by: rhs)
33 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:39:47: error: cannot find type 'CGVector' in scope
37 |     }
38 |
39 |     static func -= (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
40 |         lhs += (-rhs)
41 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:12:17: error: cannot find 'Darwin' in scope
10 | extension CGSize: Roundable {
11 |     mutating public func round() {
12 |         width = Darwin.round(width)
   |                 `- error: cannot find 'Darwin' in scope
13 |         height = Darwin.round(height)
14 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:13:18: error: cannot find 'Darwin' in scope
11 |     mutating public func round() {
12 |         width = Darwin.round(width)
13 |         height = Darwin.round(height)
   |                  `- error: cannot find 'Darwin' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:17:30: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGSize {
17 |         return CGSize(width: Darwin.round(width), height: Darwin.round(height))
   |                              `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:17:59: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGSize {
17 |         return CGSize(width: Darwin.round(width), height: Darwin.round(height))
   |                                                           `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:21:17: error: cannot find 'Darwin' in scope
19 |
20 |     mutating public func ceil() {
21 |         width = Darwin.ceil(width)
   |                 `- error: cannot find 'Darwin' in scope
22 |         height = Darwin.ceil(height)
23 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:22:18: error: cannot find 'Darwin' in scope
20 |     mutating public func ceil() {
21 |         width = Darwin.ceil(width)
22 |         height = Darwin.ceil(height)
   |                  `- error: cannot find 'Darwin' in scope
23 |     }
24 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:26:30: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGSize {
26 |         return CGSize(width: Darwin.ceil(width), height: Darwin.ceil(height))
   |                              `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:26:58: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGSize {
26 |         return CGSize(width: Darwin.ceil(width), height: Darwin.ceil(height))
   |                                                          `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:30:17: error: cannot find 'Darwin' in scope
28 |
29 |     mutating public func floor() {
30 |         width = Darwin.floor(width)
   |                 `- error: cannot find 'Darwin' in scope
31 |         height = Darwin.floor(height)
32 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:31:18: error: cannot find 'Darwin' in scope
29 |     mutating public func floor() {
30 |         width = Darwin.floor(width)
31 |         height = Darwin.floor(height)
   |                  `- error: cannot find 'Darwin' in scope
32 |     }
33 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:35:30: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGSize {
35 |         return CGSize(width: Darwin.floor(width), height: Darwin.floor(height))
   |                              `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:35:59: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGSize {
35 |         return CGSize(width: Darwin.floor(width), height: Darwin.floor(height))
   |                                                           `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGSize {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGSize {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+AbsoluteValueExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: AbsoluteValueApplicable {
   |           `- error: cannot find type 'CGVector' in scope
11 |     mutating public func applyAbs() {
12 |         dx = abs(dx)
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+AbsoluteValueExtension.swift:16:33: error: cannot find type 'CGVector' in scope
14 |     }
15 |
16 |     public func appliedAbs() -> CGVector {
   |                                 `- error: cannot find type 'CGVector' in scope
17 |         return CGVector(dx: abs(dx), dy: abs(dy))
18 |     }
[64/78] Compiling DLCoreGraphics CGSize+ScaleExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:31:47: error: cannot find type 'CGVector' in scope
29 |     }
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
32 |         lhs.translate(by: rhs)
33 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:39:47: error: cannot find type 'CGVector' in scope
37 |     }
38 |
39 |     static func -= (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
40 |         lhs += (-rhs)
41 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:12:17: error: cannot find 'Darwin' in scope
10 | extension CGSize: Roundable {
11 |     mutating public func round() {
12 |         width = Darwin.round(width)
   |                 `- error: cannot find 'Darwin' in scope
13 |         height = Darwin.round(height)
14 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:13:18: error: cannot find 'Darwin' in scope
11 |     mutating public func round() {
12 |         width = Darwin.round(width)
13 |         height = Darwin.round(height)
   |                  `- error: cannot find 'Darwin' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:17:30: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGSize {
17 |         return CGSize(width: Darwin.round(width), height: Darwin.round(height))
   |                              `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:17:59: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGSize {
17 |         return CGSize(width: Darwin.round(width), height: Darwin.round(height))
   |                                                           `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:21:17: error: cannot find 'Darwin' in scope
19 |
20 |     mutating public func ceil() {
21 |         width = Darwin.ceil(width)
   |                 `- error: cannot find 'Darwin' in scope
22 |         height = Darwin.ceil(height)
23 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:22:18: error: cannot find 'Darwin' in scope
20 |     mutating public func ceil() {
21 |         width = Darwin.ceil(width)
22 |         height = Darwin.ceil(height)
   |                  `- error: cannot find 'Darwin' in scope
23 |     }
24 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:26:30: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGSize {
26 |         return CGSize(width: Darwin.ceil(width), height: Darwin.ceil(height))
   |                              `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:26:58: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGSize {
26 |         return CGSize(width: Darwin.ceil(width), height: Darwin.ceil(height))
   |                                                          `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:30:17: error: cannot find 'Darwin' in scope
28 |
29 |     mutating public func floor() {
30 |         width = Darwin.floor(width)
   |                 `- error: cannot find 'Darwin' in scope
31 |         height = Darwin.floor(height)
32 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:31:18: error: cannot find 'Darwin' in scope
29 |     mutating public func floor() {
30 |         width = Darwin.floor(width)
31 |         height = Darwin.floor(height)
   |                  `- error: cannot find 'Darwin' in scope
32 |     }
33 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:35:30: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGSize {
35 |         return CGSize(width: Darwin.floor(width), height: Darwin.floor(height))
   |                              `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:35:59: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGSize {
35 |         return CGSize(width: Darwin.floor(width), height: Darwin.floor(height))
   |                                                           `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGSize {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGSize {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+AbsoluteValueExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: AbsoluteValueApplicable {
   |           `- error: cannot find type 'CGVector' in scope
11 |     mutating public func applyAbs() {
12 |         dx = abs(dx)
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+AbsoluteValueExtension.swift:16:33: error: cannot find type 'CGVector' in scope
14 |     }
15 |
16 |     public func appliedAbs() -> CGVector {
   |                                 `- error: cannot find type 'CGVector' in scope
17 |         return CGVector(dx: abs(dx), dy: abs(dy))
18 |     }
[65/78] Compiling DLCoreGraphics CGVector+AbsoluteValueExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:31:47: error: cannot find type 'CGVector' in scope
29 |     }
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
32 |         lhs.translate(by: rhs)
33 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:39:47: error: cannot find type 'CGVector' in scope
37 |     }
38 |
39 |     static func -= (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
40 |         lhs += (-rhs)
41 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:12:17: error: cannot find 'Darwin' in scope
10 | extension CGSize: Roundable {
11 |     mutating public func round() {
12 |         width = Darwin.round(width)
   |                 `- error: cannot find 'Darwin' in scope
13 |         height = Darwin.round(height)
14 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:13:18: error: cannot find 'Darwin' in scope
11 |     mutating public func round() {
12 |         width = Darwin.round(width)
13 |         height = Darwin.round(height)
   |                  `- error: cannot find 'Darwin' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:17:30: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGSize {
17 |         return CGSize(width: Darwin.round(width), height: Darwin.round(height))
   |                              `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:17:59: error: cannot find 'Darwin' in scope
15 |
16 |     public func rounded() -> CGSize {
17 |         return CGSize(width: Darwin.round(width), height: Darwin.round(height))
   |                                                           `- error: cannot find 'Darwin' in scope
18 |     }
19 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:21:17: error: cannot find 'Darwin' in scope
19 |
20 |     mutating public func ceil() {
21 |         width = Darwin.ceil(width)
   |                 `- error: cannot find 'Darwin' in scope
22 |         height = Darwin.ceil(height)
23 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:22:18: error: cannot find 'Darwin' in scope
20 |     mutating public func ceil() {
21 |         width = Darwin.ceil(width)
22 |         height = Darwin.ceil(height)
   |                  `- error: cannot find 'Darwin' in scope
23 |     }
24 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:26:30: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGSize {
26 |         return CGSize(width: Darwin.ceil(width), height: Darwin.ceil(height))
   |                              `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:26:58: error: cannot find 'Darwin' in scope
24 |
25 |     public func ceiling() -> CGSize {
26 |         return CGSize(width: Darwin.ceil(width), height: Darwin.ceil(height))
   |                                                          `- error: cannot find 'Darwin' in scope
27 |     }
28 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:30:17: error: cannot find 'Darwin' in scope
28 |
29 |     mutating public func floor() {
30 |         width = Darwin.floor(width)
   |                 `- error: cannot find 'Darwin' in scope
31 |         height = Darwin.floor(height)
32 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:31:18: error: cannot find 'Darwin' in scope
29 |     mutating public func floor() {
30 |         width = Darwin.floor(width)
31 |         height = Darwin.floor(height)
   |                  `- error: cannot find 'Darwin' in scope
32 |     }
33 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:35:30: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGSize {
35 |         return CGSize(width: Darwin.floor(width), height: Darwin.floor(height))
   |                              `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+RoundExtension.swift:35:59: error: cannot find 'Darwin' in scope
33 |
34 |     public func flooring() -> CGSize {
35 |         return CGSize(width: Darwin.floor(width), height: Darwin.floor(height))
   |                                                           `- error: cannot find 'Darwin' in scope
36 |     }
37 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     public mutating func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGSize {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGSize/CGSize+ScaleExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGSize {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+AbsoluteValueExtension.swift:10:11: error: cannot find type 'CGVector' in scope
 8 | import Foundation
 9 |
10 | extension CGVector: AbsoluteValueApplicable {
   |           `- error: cannot find type 'CGVector' in scope
11 |     mutating public func applyAbs() {
12 |         dx = abs(dx)
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+AbsoluteValueExtension.swift:16:33: error: cannot find type 'CGVector' in scope
14 |     }
15 |
16 |     public func appliedAbs() -> CGVector {
   |                                 `- error: cannot find type 'CGVector' in scope
17 |         return CGVector(dx: abs(dx), dy: abs(dy))
18 |     }
[66/78] Compiling DLCoreGraphics Scalable2D+OperatorsExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+CGVectorExtension.swift:11:40: error: cannot find type 'CGVector' in scope
 9 |
10 | public extension Translatable2D {
11 |     mutating func translate(by vector: CGVector) {
   |                                        `- error: cannot find type 'CGVector' in scope
12 |         translate(byX: vector.dx, y: vector.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+CGVectorExtension.swift:15:32: error: cannot find type 'CGVector' in scope
13 |     }
14 |
15 |     func translated(by vector: CGVector) -> Self {
   |                                `- error: cannot find type 'CGVector' in scope
16 |         return translated(byX: vector.dx, y: vector.dy)
17 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:31:47: error: cannot find type 'CGVector' in scope
29 |     }
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
32 |         lhs.translate(by: rhs)
33 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:39:47: error: cannot find type 'CGVector' in scope
37 |     }
38 |
39 |     static func -= (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
40 |         lhs += (-rhs)
41 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:28:30: error: incorrect argument label in call (have 'by:', expected 'byX:')
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
28 |         return lhs.translated(by: rhs)
   |                              `- error: incorrect argument label in call (have 'by:', expected 'byX:')
29 |     }
30 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:28:38: error: missing argument for parameter 'y' in call
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
28 |         return lhs.translated(by: rhs)
   |                                      `- error: missing argument for parameter 'y' in call
29 |     }
30 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Geometry/Translatable2D.swift:24:10: note: 'translated(byX:y:)' declared here
22 |     ///   - y: The y offset used for translation.
23 |     /// - Returns: The translated copy of self.
24 |     func translated(byX x: CGFloat, y: CGFloat) -> Self
   |          `- note: 'translated(byX:y:)' declared here
25 |     // swiftlint:enable identifier_name
26 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:32:22: error: incorrect argument label in call (have 'by:', expected 'byX:')
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
32 |         lhs.translate(by: rhs)
   |                      `- error: incorrect argument label in call (have 'by:', expected 'byX:')
33 |     }
34 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:32:30: error: missing argument for parameter 'y' in call
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
32 |         lhs.translate(by: rhs)
   |                              `- error: missing argument for parameter 'y' in call
33 |     }
34 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Geometry/Translatable2D.swift:17:19: note: 'translate(byX:y:)' declared here
15 |     ///   - x: The x offset used for translation.
16 |     ///   - y: The y offset used for translation.
17 |     mutating func translate(byX x: CGFloat, y: CGFloat)
   |                   `- note: 'translate(byX:y:)' declared here
18 |     /// Creates a translated copy of self.
19 |     ///
[67/78] Compiling DLCoreGraphics Translatable2D+CGVectorExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+CGVectorExtension.swift:11:40: error: cannot find type 'CGVector' in scope
 9 |
10 | public extension Translatable2D {
11 |     mutating func translate(by vector: CGVector) {
   |                                        `- error: cannot find type 'CGVector' in scope
12 |         translate(byX: vector.dx, y: vector.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+CGVectorExtension.swift:15:32: error: cannot find type 'CGVector' in scope
13 |     }
14 |
15 |     func translated(by vector: CGVector) -> Self {
   |                                `- error: cannot find type 'CGVector' in scope
16 |         return translated(byX: vector.dx, y: vector.dy)
17 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:31:47: error: cannot find type 'CGVector' in scope
29 |     }
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
32 |         lhs.translate(by: rhs)
33 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:39:47: error: cannot find type 'CGVector' in scope
37 |     }
38 |
39 |     static func -= (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
40 |         lhs += (-rhs)
41 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:28:30: error: incorrect argument label in call (have 'by:', expected 'byX:')
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
28 |         return lhs.translated(by: rhs)
   |                              `- error: incorrect argument label in call (have 'by:', expected 'byX:')
29 |     }
30 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:28:38: error: missing argument for parameter 'y' in call
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
28 |         return lhs.translated(by: rhs)
   |                                      `- error: missing argument for parameter 'y' in call
29 |     }
30 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Geometry/Translatable2D.swift:24:10: note: 'translated(byX:y:)' declared here
22 |     ///   - y: The y offset used for translation.
23 |     /// - Returns: The translated copy of self.
24 |     func translated(byX x: CGFloat, y: CGFloat) -> Self
   |          `- note: 'translated(byX:y:)' declared here
25 |     // swiftlint:enable identifier_name
26 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:32:22: error: incorrect argument label in call (have 'by:', expected 'byX:')
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
32 |         lhs.translate(by: rhs)
   |                      `- error: incorrect argument label in call (have 'by:', expected 'byX:')
33 |     }
34 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:32:30: error: missing argument for parameter 'y' in call
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
32 |         lhs.translate(by: rhs)
   |                              `- error: missing argument for parameter 'y' in call
33 |     }
34 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Geometry/Translatable2D.swift:17:19: note: 'translate(byX:y:)' declared here
15 |     ///   - x: The x offset used for translation.
16 |     ///   - y: The y offset used for translation.
17 |     mutating func translate(byX x: CGFloat, y: CGFloat)
   |                   `- note: 'translate(byX:y:)' declared here
18 |     /// Creates a translated copy of self.
19 |     ///
[68/78] Compiling DLCoreGraphics Translatable2D+OperatorsExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+CGVectorExtension.swift:11:40: error: cannot find type 'CGVector' in scope
 9 |
10 | public extension Translatable2D {
11 |     mutating func translate(by vector: CGVector) {
   |                                        `- error: cannot find type 'CGVector' in scope
12 |         translate(byX: vector.dx, y: vector.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+CGVectorExtension.swift:15:32: error: cannot find type 'CGVector' in scope
13 |     }
14 |
15 |     func translated(by vector: CGVector) -> Self {
   |                                `- error: cannot find type 'CGVector' in scope
16 |         return translated(byX: vector.dx, y: vector.dy)
17 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:31:47: error: cannot find type 'CGVector' in scope
29 |     }
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
32 |         lhs.translate(by: rhs)
33 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:39:47: error: cannot find type 'CGVector' in scope
37 |     }
38 |
39 |     static func -= (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
40 |         lhs += (-rhs)
41 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:28:30: error: incorrect argument label in call (have 'by:', expected 'byX:')
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
28 |         return lhs.translated(by: rhs)
   |                              `- error: incorrect argument label in call (have 'by:', expected 'byX:')
29 |     }
30 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:28:38: error: missing argument for parameter 'y' in call
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
28 |         return lhs.translated(by: rhs)
   |                                      `- error: missing argument for parameter 'y' in call
29 |     }
30 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Geometry/Translatable2D.swift:24:10: note: 'translated(byX:y:)' declared here
22 |     ///   - y: The y offset used for translation.
23 |     /// - Returns: The translated copy of self.
24 |     func translated(byX x: CGFloat, y: CGFloat) -> Self
   |          `- note: 'translated(byX:y:)' declared here
25 |     // swiftlint:enable identifier_name
26 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:32:22: error: incorrect argument label in call (have 'by:', expected 'byX:')
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
32 |         lhs.translate(by: rhs)
   |                      `- error: incorrect argument label in call (have 'by:', expected 'byX:')
33 |     }
34 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:32:30: error: missing argument for parameter 'y' in call
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
32 |         lhs.translate(by: rhs)
   |                              `- error: missing argument for parameter 'y' in call
33 |     }
34 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Geometry/Translatable2D.swift:17:19: note: 'translate(byX:y:)' declared here
15 |     ///   - x: The x offset used for translation.
16 |     ///   - y: The y offset used for translation.
17 |     mutating func translate(byX x: CGFloat, y: CGFloat)
   |                   `- note: 'translate(byX:y:)' declared here
18 |     /// Creates a translated copy of self.
19 |     ///
[69/78] Compiling DLCoreGraphics UIEdgeInsets+InversibleExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+CGVectorExtension.swift:11:40: error: cannot find type 'CGVector' in scope
 9 |
10 | public extension Translatable2D {
11 |     mutating func translate(by vector: CGVector) {
   |                                        `- error: cannot find type 'CGVector' in scope
12 |         translate(byX: vector.dx, y: vector.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+CGVectorExtension.swift:15:32: error: cannot find type 'CGVector' in scope
13 |     }
14 |
15 |     func translated(by vector: CGVector) -> Self {
   |                                `- error: cannot find type 'CGVector' in scope
16 |         return translated(byX: vector.dx, y: vector.dy)
17 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:31:47: error: cannot find type 'CGVector' in scope
29 |     }
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
32 |         lhs.translate(by: rhs)
33 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:39:47: error: cannot find type 'CGVector' in scope
37 |     }
38 |
39 |     static func -= (_ lhs: inout Self, _ rhs: CGVector) {
   |                                               `- error: cannot find type 'CGVector' in scope
40 |         lhs += (-rhs)
41 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:28:30: error: incorrect argument label in call (have 'by:', expected 'byX:')
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
28 |         return lhs.translated(by: rhs)
   |                              `- error: incorrect argument label in call (have 'by:', expected 'byX:')
29 |     }
30 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:28:38: error: missing argument for parameter 'y' in call
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
28 |         return lhs.translated(by: rhs)
   |                                      `- error: missing argument for parameter 'y' in call
29 |     }
30 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Geometry/Translatable2D.swift:24:10: note: 'translated(byX:y:)' declared here
22 |     ///   - y: The y offset used for translation.
23 |     /// - Returns: The translated copy of self.
24 |     func translated(byX x: CGFloat, y: CGFloat) -> Self
   |          `- note: 'translated(byX:y:)' declared here
25 |     // swiftlint:enable identifier_name
26 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:32:22: error: incorrect argument label in call (have 'by:', expected 'byX:')
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
32 |         lhs.translate(by: rhs)
   |                      `- error: incorrect argument label in call (have 'by:', expected 'byX:')
33 |     }
34 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:32:30: error: missing argument for parameter 'y' in call
30 |
31 |     static func += (_ lhs: inout Self, _ rhs: CGVector) {
32 |         lhs.translate(by: rhs)
   |                              `- error: missing argument for parameter 'y' in call
33 |     }
34 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Geometry/Translatable2D.swift:17:19: note: 'translate(byX:y:)' declared here
15 |     ///   - x: The x offset used for translation.
16 |     ///   - y: The y offset used for translation.
17 |     mutating func translate(byX x: CGFloat, y: CGFloat)
   |                   `- note: 'translate(byX:y:)' declared here
18 |     /// Creates a translated copy of self.
19 |     ///
[70/78] Compiling DLCoreGraphics CGRect+AbsoluteValueExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
[71/78] Compiling DLCoreGraphics CGRect+RoundExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
[72/78] Compiling DLCoreGraphics CGRect+ScaleExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
[73/78] Compiling DLCoreGraphics CGRect+TranslateExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
[74/78] Compiling DLCoreGraphics CGRectExtension.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func scale(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+ScaleExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func scaled(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(scaleX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:13:16: error: cannot find 'applying' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:13:25: error: cannot find 'CGAffineTransform' in scope
11 |     // swiftlint:disable:next identifier_name
12 |     mutating public func translate(byX x: CGFloat, y: CGFloat) {
13 |         self = applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
14 |     }
15 |
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:18:16: error: cannot find 'applying' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                `- error: cannot find 'applying' in scope
19 |     }
20 | }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGRect/CGRect+TranslateExtension.swift:18:25: error: cannot find 'CGAffineTransform' in scope
16 |     // swiftlint:disable:next identifier_name
17 |     public func translated(byX x: CGFloat, y: CGFloat) -> CGRect {
18 |         return applying(CGAffineTransform(translationX: x, y: y))
   |                         `- error: cannot find 'CGAffineTransform' in scope
19 |     }
20 | }
[75/78] Compiling DLCoreGraphics Scalable2D.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
[76/78] Compiling DLCoreGraphics Segment.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
[77/78] Compiling DLCoreGraphics Transformable2D.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
[78/78] Compiling DLCoreGraphics Translatable2D.swift
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:27:40: error: cannot find type 'CGVector' in scope
25 |     }
26 |
27 |     static func + (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
28 |         return lhs.translated(by: rhs)
29 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:56: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                                        `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/CoreGraphics/CGVector/CGVector+InversibleExtension.swift:11:43: error: cannot find type 'CGVector' in scope
 9 |
10 | extension CGVector: Inversible {
11 |     prefix public static func - (_ value: CGVector) -> CGVector {
   |                                           `- error: cannot find type 'CGVector' in scope
12 |         return CGVector(dx: -value.dx, dy: -value.dy)
13 |     }
/host/spi-builder-workspace/Sources/DLCoreGraphics/Extensions/Geometry/Translatable2D+OperatorsExtension.swift:35:40: error: cannot find type 'CGVector' in scope
33 |     }
34 |
35 |     static func - (_ lhs: Self, _ rhs: CGVector) -> Self {
   |                                        `- error: cannot find type 'CGVector' in scope
36 |         return lhs + (-rhs)
37 |     }
BUILD FAILURE 6.1 linux