The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build SwiftGraphics, reference 0.3.1 (93fc37), with Swift 6.1 for macOS (SPM) on 26 Apr 2025 09:10:55 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64

Build Log

    |                                       `- error: cannot find type 'CGContext' in scope
127 |         //        super.debugDraw(in: context)
128 |         Circle(center: origin, radius: 20).draw()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:134:32: error: argument passed to call that takes no arguments
132 |         dirPoint += origin
133 |
134 |         dirPoint.debugDraw(in: context)
    |                                `- error: argument passed to call that takes no arguments
135 |     }
136 |
[13/39] Compiling SwiftGraphics Polygon.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:126:39: error: cannot find type 'CGContext' in scope
124 |     /// Draws a representation of the emitter suitable for debugging.
125 |     /// - Parameter context: Context in which to draw
126 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
127 |         //        super.debugDraw(in: context)
128 |         Circle(center: origin, radius: 20).draw()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:134:32: error: argument passed to call that takes no arguments
132 |         dirPoint += origin
133 |
134 |         dirPoint.debugDraw(in: context)
    |                                `- error: argument passed to call that takes no arguments
135 |     }
136 |
[14/39] Compiling SwiftGraphics SVGContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/SVG Drawing/SVGContext.swift:48:31: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 46 |     public convenience init(sketch: SketchView) {
 47 |         self.init(
 48 |             width: Int(sketch.bounds.width),
    |                               `- warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 49 |             height: Int(sketch.bounds.height)
 50 |         )
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:139:18: note: property declared here
137 | - (void)scaleUnitSquareToSize:(NSSize)newUnitSize;
138 | - (void)rotateByAngle:(CGFloat)angle;
139 | @property NSRect bounds;
    |                  `- note: property declared here
140 |
141 | @property (getter=isFlipped, readonly) BOOL flipped;
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/SVG Drawing/SVGContext.swift:49:32: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 47 |         self.init(
 48 |             width: Int(sketch.bounds.width),
 49 |             height: Int(sketch.bounds.height)
    |                                `- warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 50 |         )
 51 |     }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:139:18: note: property declared here
137 | - (void)scaleUnitSquareToSize:(NSSize)newUnitSize;
138 | - (void)rotateByAngle:(CGFloat)angle;
139 | @property NSRect bounds;
    |                  `- note: property declared here
140 |
141 | @property (getter=isFlipped, readonly) BOOL flipped;
[15/39] Compiling SwiftGraphics SVGDrawable.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/SVG Drawing/SVGContext.swift:48:31: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 46 |     public convenience init(sketch: SketchView) {
 47 |         self.init(
 48 |             width: Int(sketch.bounds.width),
    |                               `- warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 49 |             height: Int(sketch.bounds.height)
 50 |         )
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:139:18: note: property declared here
137 | - (void)scaleUnitSquareToSize:(NSSize)newUnitSize;
138 | - (void)rotateByAngle:(CGFloat)angle;
139 | @property NSRect bounds;
    |                  `- note: property declared here
140 |
141 | @property (getter=isFlipped, readonly) BOOL flipped;
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/SVG Drawing/SVGContext.swift:49:32: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 47 |         self.init(
 48 |             width: Int(sketch.bounds.width),
 49 |             height: Int(sketch.bounds.height)
    |                                `- warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 50 |         )
 51 |     }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:139:18: note: property declared here
137 | - (void)scaleUnitSquareToSize:(NSSize)newUnitSize;
138 | - (void)rotateByAngle:(CGFloat)angle;
139 | @property NSRect bounds;
    |                  `- note: property declared here
140 |
141 | @property (getter=isFlipped, readonly) BOOL flipped;
[16/39] Compiling SwiftGraphics Angles.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/SVG Drawing/SVGContext.swift:48:31: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 46 |     public convenience init(sketch: SketchView) {
 47 |         self.init(
 48 |             width: Int(sketch.bounds.width),
    |                               `- warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 49 |             height: Int(sketch.bounds.height)
 50 |         )
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:139:18: note: property declared here
137 | - (void)scaleUnitSquareToSize:(NSSize)newUnitSize;
138 | - (void)rotateByAngle:(CGFloat)angle;
139 | @property NSRect bounds;
    |                  `- note: property declared here
140 |
141 | @property (getter=isFlipped, readonly) BOOL flipped;
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/SVG Drawing/SVGContext.swift:49:32: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 47 |         self.init(
 48 |             width: Int(sketch.bounds.width),
 49 |             height: Int(sketch.bounds.height)
    |                                `- warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 50 |         )
 51 |     }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:139:18: note: property declared here
137 | - (void)scaleUnitSquareToSize:(NSSize)newUnitSize;
138 | - (void)rotateByAngle:(CGFloat)angle;
139 | @property NSRect bounds;
    |                  `- note: property declared here
140 |
141 | @property (getter=isFlipped, readonly) BOOL flipped;
[17/39] Compiling SwiftGraphics Array.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/SVG Drawing/SVGContext.swift:48:31: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 46 |     public convenience init(sketch: SketchView) {
 47 |         self.init(
 48 |             width: Int(sketch.bounds.width),
    |                               `- warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 49 |             height: Int(sketch.bounds.height)
 50 |         )
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:139:18: note: property declared here
137 | - (void)scaleUnitSquareToSize:(NSSize)newUnitSize;
138 | - (void)rotateByAngle:(CGFloat)angle;
139 | @property NSRect bounds;
    |                  `- note: property declared here
140 |
141 | @property (getter=isFlipped, readonly) BOOL flipped;
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/SVG Drawing/SVGContext.swift:49:32: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 47 |         self.init(
 48 |             width: Int(sketch.bounds.width),
 49 |             height: Int(sketch.bounds.height)
    |                                `- warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 50 |         )
 51 |     }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:139:18: note: property declared here
137 | - (void)scaleUnitSquareToSize:(NSSize)newUnitSize;
138 | - (void)rotateByAngle:(CGFloat)angle;
139 | @property NSRect bounds;
    |                  `- note: property declared here
140 |
141 | @property (getter=isFlipped, readonly) BOOL flipped;
[18/39] Compiling SwiftGraphics Clamped.swift
[19/39] Compiling SwiftGraphics Double.swift
[20/39] Compiling SwiftGraphics String.swift
[21/39] Compiling SwiftGraphics XMLElement.swift
[22/39] Compiling SwiftGraphics Fresnel.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/BezierPath.swift:138:29: error: argument passed to call that takes no arguments
136 |     /// - Parameter context: Context in which to draw
137 |     public func debugDraw(in context: CGContext) {
138 |         start.debugDraw(in: context)
    |                             `- error: argument passed to call that takes no arguments
139 |         points.forEach {
140 |             $0.point.debugDraw(in: context)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/BezierPath.swift:140:36: error: argument passed to call that takes no arguments
138 |         start.debugDraw(in: context)
139 |         points.forEach {
140 |             $0.point.debugDraw(in: context)
    |                                    `- error: argument passed to call that takes no arguments
141 |         }
142 |     }
[23/39] Compiling SwiftGraphics LinearEmitter.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/BezierPath.swift:138:29: error: argument passed to call that takes no arguments
136 |     /// - Parameter context: Context in which to draw
137 |     public func debugDraw(in context: CGContext) {
138 |         start.debugDraw(in: context)
    |                             `- error: argument passed to call that takes no arguments
139 |         points.forEach {
140 |             $0.point.debugDraw(in: context)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/BezierPath.swift:140:36: error: argument passed to call that takes no arguments
138 |         start.debugDraw(in: context)
139 |         points.forEach {
140 |             $0.point.debugDraw(in: context)
    |                                    `- error: argument passed to call that takes no arguments
141 |         }
142 |     }
[24/39] Compiling SwiftGraphics BezierPath.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/BezierPath.swift:138:29: error: argument passed to call that takes no arguments
136 |     /// - Parameter context: Context in which to draw
137 |     public func debugDraw(in context: CGContext) {
138 |         start.debugDraw(in: context)
    |                             `- error: argument passed to call that takes no arguments
139 |         points.forEach {
140 |             $0.point.debugDraw(in: context)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/BezierPath.swift:140:36: error: argument passed to call that takes no arguments
138 |         start.debugDraw(in: context)
139 |         points.forEach {
140 |             $0.point.debugDraw(in: context)
    |                                    `- error: argument passed to call that takes no arguments
141 |         }
142 |     }
[25/39] Compiling SwiftGraphics Circle.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:191:39: error: cannot find type 'CGContext' in scope
189 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
190 |     /// - Parameter context: Context in which to draw
191 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
192 |         let normal = self.normal()
193 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:194:33: error: cannot infer contextual base in reference to member 'init'
192 |         let normal = self.normal()
193 |
194 |         context.setStrokeColor(.init(red: 255, green: 0, blue: 128, alpha: 1))
    |                                 `- error: cannot infer contextual base in reference to member 'init'
195 |         Line(
196 |             center.x,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:202:33: error: cannot infer contextual base in reference to member 'init'
200 |         ).draw()
201 |
202 |         context.setStrokeColor(.init(gray: 0.5, alpha: 1))
    |                                 `- error: cannot infer contextual base in reference to member 'init'
203 |         self.draw(in: context)
204 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Path.swift:106:30: error: argument passed to call that takes no arguments
104 |     public func debugDraw(in context: CGContext) {
105 |         points.forEach {
106 |             $0.debugDraw(in: context)
    |                              `- error: argument passed to call that takes no arguments
107 |         }
108 |     }
[26/39] Compiling SwiftGraphics Line.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:191:39: error: cannot find type 'CGContext' in scope
189 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
190 |     /// - Parameter context: Context in which to draw
191 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
192 |         let normal = self.normal()
193 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:194:33: error: cannot infer contextual base in reference to member 'init'
192 |         let normal = self.normal()
193 |
194 |         context.setStrokeColor(.init(red: 255, green: 0, blue: 128, alpha: 1))
    |                                 `- error: cannot infer contextual base in reference to member 'init'
195 |         Line(
196 |             center.x,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:202:33: error: cannot infer contextual base in reference to member 'init'
200 |         ).draw()
201 |
202 |         context.setStrokeColor(.init(gray: 0.5, alpha: 1))
    |                                 `- error: cannot infer contextual base in reference to member 'init'
203 |         self.draw(in: context)
204 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Path.swift:106:30: error: argument passed to call that takes no arguments
104 |     public func debugDraw(in context: CGContext) {
105 |         points.forEach {
106 |             $0.debugDraw(in: context)
    |                              `- error: argument passed to call that takes no arguments
107 |         }
108 |     }
[27/39] Compiling SwiftGraphics Path.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:191:39: error: cannot find type 'CGContext' in scope
189 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
190 |     /// - Parameter context: Context in which to draw
191 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
192 |         let normal = self.normal()
193 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:194:33: error: cannot infer contextual base in reference to member 'init'
192 |         let normal = self.normal()
193 |
194 |         context.setStrokeColor(.init(red: 255, green: 0, blue: 128, alpha: 1))
    |                                 `- error: cannot infer contextual base in reference to member 'init'
195 |         Line(
196 |             center.x,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:202:33: error: cannot infer contextual base in reference to member 'init'
200 |         ).draw()
201 |
202 |         context.setStrokeColor(.init(gray: 0.5, alpha: 1))
    |                                 `- error: cannot infer contextual base in reference to member 'init'
203 |         self.draw(in: context)
204 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Path.swift:106:30: error: argument passed to call that takes no arguments
104 |     public func debugDraw(in context: CGContext) {
105 |         points.forEach {
106 |             $0.debugDraw(in: context)
    |                              `- error: argument passed to call that takes no arguments
107 |         }
108 |     }
[28/39] Compiling SwiftGraphics BlendMode.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:35:29: error: cannot find type 'CGContext' in scope
33 |         case is SVGContext:
34 |             break
35 |         case let context as CGContext:
   |                             `- error: cannot find type 'CGContext' in scope
36 |             debugDraw(in: context)
37 |         default:
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:36:27: error: argument passed to call that takes no arguments
34 |             break
35 |         case let context as CGContext:
36 |             debugDraw(in: context)
   |                           `- error: argument passed to call that takes no arguments
37 |         default:
38 |             break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:14:23: warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |
13 |     /// Returns the current `DrawingContext`, if any
14 |     public static var current: DrawingContext?
   |                       |- warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'current' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'current' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     /// Color of the outline of the shape
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:17:23: warning: static property 'strokeColor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 |
16 |     /// Color of the outline of the shape
17 |     public static var strokeColor: Color = .black
   |                       |- warning: static property 'strokeColor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'strokeColor' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'strokeColor' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     /// Color of the fill of the shape
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:20:23: warning: static property 'fillColor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 |
19 |     /// Color of the fill of the shape
20 |     public static var fillColor: Color = .clear
   |                       |- warning: static property 'fillColor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'fillColor' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'fillColor' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Weight of the outline of the shape
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:23:23: warning: static property 'strokeWeight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
21 |
22 |     /// Weight of the outline of the shape
23 |     public static var strokeWeight: Double = 1
   |                       |- warning: static property 'strokeWeight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'strokeWeight' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'strokeWeight' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// Color blending mode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:26:23: warning: static property 'blendMode' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 |     /// Color blending mode
26 |     public static var blendMode: BlendMode = .normal
   |                       |- warning: static property 'blendMode' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'blendMode' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'blendMode' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:35:11: error: cannot find type 'CGContext' in scope
33 | }
34 |
35 | extension CGContext: DrawingContext {
   |           `- error: cannot find type 'CGContext' in scope
36 |
37 | }
[29/39] Compiling SwiftGraphics CGDrawable.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:35:29: error: cannot find type 'CGContext' in scope
33 |         case is SVGContext:
34 |             break
35 |         case let context as CGContext:
   |                             `- error: cannot find type 'CGContext' in scope
36 |             debugDraw(in: context)
37 |         default:
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:36:27: error: argument passed to call that takes no arguments
34 |             break
35 |         case let context as CGContext:
36 |             debugDraw(in: context)
   |                           `- error: argument passed to call that takes no arguments
37 |         default:
38 |             break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:14:23: warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |
13 |     /// Returns the current `DrawingContext`, if any
14 |     public static var current: DrawingContext?
   |                       |- warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'current' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'current' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     /// Color of the outline of the shape
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:17:23: warning: static property 'strokeColor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 |
16 |     /// Color of the outline of the shape
17 |     public static var strokeColor: Color = .black
   |                       |- warning: static property 'strokeColor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'strokeColor' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'strokeColor' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     /// Color of the fill of the shape
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:20:23: warning: static property 'fillColor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 |
19 |     /// Color of the fill of the shape
20 |     public static var fillColor: Color = .clear
   |                       |- warning: static property 'fillColor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'fillColor' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'fillColor' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Weight of the outline of the shape
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:23:23: warning: static property 'strokeWeight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
21 |
22 |     /// Weight of the outline of the shape
23 |     public static var strokeWeight: Double = 1
   |                       |- warning: static property 'strokeWeight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'strokeWeight' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'strokeWeight' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// Color blending mode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:26:23: warning: static property 'blendMode' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 |     /// Color blending mode
26 |     public static var blendMode: BlendMode = .normal
   |                       |- warning: static property 'blendMode' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'blendMode' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'blendMode' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:35:11: error: cannot find type 'CGContext' in scope
33 | }
34 |
35 | extension CGContext: DrawingContext {
   |           `- error: cannot find type 'CGContext' in scope
36 |
37 | }
[30/39] Compiling SwiftGraphics Color.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:35:29: error: cannot find type 'CGContext' in scope
33 |         case is SVGContext:
34 |             break
35 |         case let context as CGContext:
   |                             `- error: cannot find type 'CGContext' in scope
36 |             debugDraw(in: context)
37 |         default:
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:36:27: error: argument passed to call that takes no arguments
34 |             break
35 |         case let context as CGContext:
36 |             debugDraw(in: context)
   |                           `- error: argument passed to call that takes no arguments
37 |         default:
38 |             break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:14:23: warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |
13 |     /// Returns the current `DrawingContext`, if any
14 |     public static var current: DrawingContext?
   |                       |- warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'current' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'current' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     /// Color of the outline of the shape
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:17:23: warning: static property 'strokeColor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 |
16 |     /// Color of the outline of the shape
17 |     public static var strokeColor: Color = .black
   |                       |- warning: static property 'strokeColor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'strokeColor' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'strokeColor' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     /// Color of the fill of the shape
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:20:23: warning: static property 'fillColor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 |
19 |     /// Color of the fill of the shape
20 |     public static var fillColor: Color = .clear
   |                       |- warning: static property 'fillColor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'fillColor' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'fillColor' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Weight of the outline of the shape
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:23:23: warning: static property 'strokeWeight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
21 |
22 |     /// Weight of the outline of the shape
23 |     public static var strokeWeight: Double = 1
   |                       |- warning: static property 'strokeWeight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'strokeWeight' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'strokeWeight' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// Color blending mode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:26:23: warning: static property 'blendMode' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 |     /// Color blending mode
26 |     public static var blendMode: BlendMode = .normal
   |                       |- warning: static property 'blendMode' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'blendMode' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'blendMode' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:35:11: error: cannot find type 'CGContext' in scope
33 | }
34 |
35 | extension CGContext: DrawingContext {
   |           `- error: cannot find type 'CGContext' in scope
36 |
37 | }
[31/39] Compiling SwiftGraphics DrawingContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:35:29: error: cannot find type 'CGContext' in scope
33 |         case is SVGContext:
34 |             break
35 |         case let context as CGContext:
   |                             `- error: cannot find type 'CGContext' in scope
36 |             debugDraw(in: context)
37 |         default:
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:36:27: error: argument passed to call that takes no arguments
34 |             break
35 |         case let context as CGContext:
36 |             debugDraw(in: context)
   |                           `- error: argument passed to call that takes no arguments
37 |         default:
38 |             break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:14:23: warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |
13 |     /// Returns the current `DrawingContext`, if any
14 |     public static var current: DrawingContext?
   |                       |- warning: static property 'current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'current' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'current' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     /// Color of the outline of the shape
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:17:23: warning: static property 'strokeColor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 |
16 |     /// Color of the outline of the shape
17 |     public static var strokeColor: Color = .black
   |                       |- warning: static property 'strokeColor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'strokeColor' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'strokeColor' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     /// Color of the fill of the shape
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:20:23: warning: static property 'fillColor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 |
19 |     /// Color of the fill of the shape
20 |     public static var fillColor: Color = .clear
   |                       |- warning: static property 'fillColor' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'fillColor' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'fillColor' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Weight of the outline of the shape
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:23:23: warning: static property 'strokeWeight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
21 |
22 |     /// Weight of the outline of the shape
23 |     public static var strokeWeight: Double = 1
   |                       |- warning: static property 'strokeWeight' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'strokeWeight' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'strokeWeight' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// Color blending mode
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:26:23: warning: static property 'blendMode' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
24 |
25 |     /// Color blending mode
26 |     public static var blendMode: BlendMode = .normal
   |                       |- warning: static property 'blendMode' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'blendMode' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'blendMode' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:35:11: error: cannot find type 'CGContext' in scope
33 | }
34 |
35 | extension CGContext: DrawingContext {
   |           `- error: cannot find type 'CGContext' in scope
36 |
37 | }
[32/39] Compiling SwiftGraphics Perlin.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Math/Perlin.swift:18:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PerlinGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | ///
 14 | /// Implemented from p5.js
 15 | public class PerlinGenerator {
    |              `- note: class 'PerlinGenerator' does not conform to the 'Sendable' protocol
 16 |
 17 |     /// A shared generator
 18 |     public static let shared = PerlinGenerator()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PerlinGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     let yWrapB = 4
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Ray Tracing/DirectionalEmitter.swift:67:39: error: cannot find type 'CGContext' in scope
65 |     /// Draws a representation of the emitter suitable for debugging.
66 |     /// - Parameter context: Context in which to draw
67 |     public func debugDraw(in context: CGContext) {
   |                                       `- error: cannot find type 'CGContext' in scope
68 |         let ray = Ray(origin: origin.copy(), direction: direction.copy())
69 |         ray.debugDraw(in: context)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:126:39: error: cannot find type 'CGContext' in scope
124 |     /// Draws a representation of the emitter suitable for debugging.
125 |     /// - Parameter context: Context in which to draw
126 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
127 |         //        super.debugDraw(in: context)
128 |         Circle(center: origin, radius: 20).draw()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:304:34: error: cannot find type 'CGContext' in scope
302 |     /// Draw the receiver in the specified context
303 |     /// - Parameter context: Context in which to draw
304 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
305 |         Rectangle(x: x, y: y, width: 1, height: 1).draw(in: context)
306 |     }
[33/39] Compiling SwiftGraphics CircleEmitter.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Math/Perlin.swift:18:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PerlinGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | ///
 14 | /// Implemented from p5.js
 15 | public class PerlinGenerator {
    |              `- note: class 'PerlinGenerator' does not conform to the 'Sendable' protocol
 16 |
 17 |     /// A shared generator
 18 |     public static let shared = PerlinGenerator()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PerlinGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     let yWrapB = 4
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Ray Tracing/DirectionalEmitter.swift:67:39: error: cannot find type 'CGContext' in scope
65 |     /// Draws a representation of the emitter suitable for debugging.
66 |     /// - Parameter context: Context in which to draw
67 |     public func debugDraw(in context: CGContext) {
   |                                       `- error: cannot find type 'CGContext' in scope
68 |         let ray = Ray(origin: origin.copy(), direction: direction.copy())
69 |         ray.debugDraw(in: context)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:126:39: error: cannot find type 'CGContext' in scope
124 |     /// Draws a representation of the emitter suitable for debugging.
125 |     /// - Parameter context: Context in which to draw
126 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
127 |         //        super.debugDraw(in: context)
128 |         Circle(center: origin, radius: 20).draw()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:304:34: error: cannot find type 'CGContext' in scope
302 |     /// Draw the receiver in the specified context
303 |     /// - Parameter context: Context in which to draw
304 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
305 |         Rectangle(x: x, y: y, width: 1, height: 1).draw(in: context)
306 |     }
[34/39] Compiling SwiftGraphics DirectionalEmitter.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Math/Perlin.swift:18:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PerlinGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | ///
 14 | /// Implemented from p5.js
 15 | public class PerlinGenerator {
    |              `- note: class 'PerlinGenerator' does not conform to the 'Sendable' protocol
 16 |
 17 |     /// A shared generator
 18 |     public static let shared = PerlinGenerator()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PerlinGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     let yWrapB = 4
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Ray Tracing/DirectionalEmitter.swift:67:39: error: cannot find type 'CGContext' in scope
65 |     /// Draws a representation of the emitter suitable for debugging.
66 |     /// - Parameter context: Context in which to draw
67 |     public func debugDraw(in context: CGContext) {
   |                                       `- error: cannot find type 'CGContext' in scope
68 |         let ray = Ray(origin: origin.copy(), direction: direction.copy())
69 |         ray.debugDraw(in: context)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:126:39: error: cannot find type 'CGContext' in scope
124 |     /// Draws a representation of the emitter suitable for debugging.
125 |     /// - Parameter context: Context in which to draw
126 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
127 |         //        super.debugDraw(in: context)
128 |         Circle(center: origin, radius: 20).draw()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:304:34: error: cannot find type 'CGContext' in scope
302 |     /// Draw the receiver in the specified context
303 |     /// - Parameter context: Context in which to draw
304 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
305 |         Rectangle(x: x, y: y, width: 1, height: 1).draw(in: context)
306 |     }
[35/39] Compiling SwiftGraphics Emitter.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Math/Perlin.swift:18:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PerlinGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
 13 | ///
 14 | /// Implemented from p5.js
 15 | public class PerlinGenerator {
    |              `- note: class 'PerlinGenerator' does not conform to the 'Sendable' protocol
 16 |
 17 |     /// A shared generator
 18 |     public static let shared = PerlinGenerator()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'PerlinGenerator' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     let yWrapB = 4
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Ray Tracing/DirectionalEmitter.swift:67:39: error: cannot find type 'CGContext' in scope
65 |     /// Draws a representation of the emitter suitable for debugging.
66 |     /// - Parameter context: Context in which to draw
67 |     public func debugDraw(in context: CGContext) {
   |                                       `- error: cannot find type 'CGContext' in scope
68 |         let ray = Ray(origin: origin.copy(), direction: direction.copy())
69 |         ray.debugDraw(in: context)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:126:39: error: cannot find type 'CGContext' in scope
124 |     /// Draws a representation of the emitter suitable for debugging.
125 |     /// - Parameter context: Context in which to draw
126 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
127 |         //        super.debugDraw(in: context)
128 |         Circle(center: origin, radius: 20).draw()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:304:34: error: cannot find type 'CGContext' in scope
302 |     /// Draw the receiver in the specified context
303 |     /// - Parameter context: Context in which to draw
304 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
305 |         Rectangle(x: x, y: y, width: 1, height: 1).draw(in: context)
306 |     }
[36/39] Compiling SwiftGraphics Shape.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:31:45: error: argument passed to call that takes no arguments
29 |             (self as? SVGDrawable)?.draw(in: context)
30 |         case let context as CGContext:
31 |             (self as? CGDrawable)?.draw(in: context)
   |                                             `- error: argument passed to call that takes no arguments
32 |         default:
33 |             break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:161:32: error: cannot find type 'CGContext' in scope
159 |     /// Draw the receiver in the specified context
160 |     /// - Parameter context: Context in which to draw
161 |     open func draw(in context: CGContext) {
    |                                `- error: cannot find type 'CGContext' in scope
162 |         let rect = CGRect(x: x, y: y, width: width, height: height)
163 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/SketchView.swift:35:67: error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 33 |
 34 |         // Set the context to CoreGraphics
 35 |         SwiftGraphicsContext.current = NSGraphicsContext.current?.cgContext
    |                                                                   `- error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 36 |
 37 |         let startTime = Date()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/SketchView.swift:51:67: error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 49 |
 50 |         // Set the context to CoreGraphics
 51 |         SwiftGraphicsContext.current = NSGraphicsContext.current?.cgContext
    |                                                                   `- error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 52 |
 53 |         sketch.draw()
[37/39] Compiling SwiftGraphics Sketch Protcols.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:31:45: error: argument passed to call that takes no arguments
29 |             (self as? SVGDrawable)?.draw(in: context)
30 |         case let context as CGContext:
31 |             (self as? CGDrawable)?.draw(in: context)
   |                                             `- error: argument passed to call that takes no arguments
32 |         default:
33 |             break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:161:32: error: cannot find type 'CGContext' in scope
159 |     /// Draw the receiver in the specified context
160 |     /// - Parameter context: Context in which to draw
161 |     open func draw(in context: CGContext) {
    |                                `- error: cannot find type 'CGContext' in scope
162 |         let rect = CGRect(x: x, y: y, width: width, height: height)
163 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/SketchView.swift:35:67: error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 33 |
 34 |         // Set the context to CoreGraphics
 35 |         SwiftGraphicsContext.current = NSGraphicsContext.current?.cgContext
    |                                                                   `- error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 36 |
 37 |         let startTime = Date()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/SketchView.swift:51:67: error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 49 |
 50 |         // Set the context to CoreGraphics
 51 |         SwiftGraphicsContext.current = NSGraphicsContext.current?.cgContext
    |                                                                   `- error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 52 |
 53 |         sketch.draw()
[38/39] Compiling SwiftGraphics Sketch.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:31:45: error: argument passed to call that takes no arguments
29 |             (self as? SVGDrawable)?.draw(in: context)
30 |         case let context as CGContext:
31 |             (self as? CGDrawable)?.draw(in: context)
   |                                             `- error: argument passed to call that takes no arguments
32 |         default:
33 |             break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:161:32: error: cannot find type 'CGContext' in scope
159 |     /// Draw the receiver in the specified context
160 |     /// - Parameter context: Context in which to draw
161 |     open func draw(in context: CGContext) {
    |                                `- error: cannot find type 'CGContext' in scope
162 |         let rect = CGRect(x: x, y: y, width: width, height: height)
163 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/SketchView.swift:35:67: error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 33 |
 34 |         // Set the context to CoreGraphics
 35 |         SwiftGraphicsContext.current = NSGraphicsContext.current?.cgContext
    |                                                                   `- error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 36 |
 37 |         let startTime = Date()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/SketchView.swift:51:67: error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 49 |
 50 |         // Set the context to CoreGraphics
 51 |         SwiftGraphicsContext.current = NSGraphicsContext.current?.cgContext
    |                                                                   `- error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 52 |
 53 |         sketch.draw()
[39/39] Compiling SwiftGraphics SketchView.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:31:45: error: argument passed to call that takes no arguments
29 |             (self as? SVGDrawable)?.draw(in: context)
30 |         case let context as CGContext:
31 |             (self as? CGDrawable)?.draw(in: context)
   |                                             `- error: argument passed to call that takes no arguments
32 |         default:
33 |             break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:161:32: error: cannot find type 'CGContext' in scope
159 |     /// Draw the receiver in the specified context
160 |     /// - Parameter context: Context in which to draw
161 |     open func draw(in context: CGContext) {
    |                                `- error: cannot find type 'CGContext' in scope
162 |         let rect = CGRect(x: x, y: y, width: width, height: height)
163 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/SketchView.swift:35:67: error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 33 |
 34 |         // Set the context to CoreGraphics
 35 |         SwiftGraphicsContext.current = NSGraphicsContext.current?.cgContext
    |                                                                   `- error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 36 |
 37 |         let startTime = Date()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/SketchView.swift:51:67: error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 49 |
 50 |         // Set the context to CoreGraphics
 51 |         SwiftGraphicsContext.current = NSGraphicsContext.current?.cgContext
    |                                                                   `- error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 52 |
 53 |         sketch.draw()
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[2/35] Emitting module SwiftGraphics
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:126:39: error: cannot find type 'CGContext' in scope
124 |     /// Draws a representation of the emitter suitable for debugging.
125 |     /// - Parameter context: Context in which to draw
126 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
127 |         //        super.debugDraw(in: context)
128 |         Circle(center: origin, radius: 20).draw()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:35:11: error: cannot find type 'CGContext' in scope
33 | }
34 |
35 | extension CGContext: DrawingContext {
   |           `- error: cannot find type 'CGContext' in scope
36 |
37 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Ray Tracing/DirectionalEmitter.swift:67:39: error: cannot find type 'CGContext' in scope
65 |     /// Draws a representation of the emitter suitable for debugging.
66 |     /// - Parameter context: Context in which to draw
67 |     public func debugDraw(in context: CGContext) {
   |                                       `- error: cannot find type 'CGContext' in scope
68 |         let ray = Ray(origin: origin.copy(), direction: direction.copy())
69 |         ray.debugDraw(in: context)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:50:39: error: cannot find type 'CGContext' in scope
48 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
49 |     /// - Parameter context: Context in which to draw
50 |     public func debugDraw(in context: CGContext) {
   |                                       `- error: cannot find type 'CGContext' in scope
51 |         draw(in: context)
52 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:191:39: error: cannot find type 'CGContext' in scope
189 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
190 |     /// - Parameter context: Context in which to draw
191 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
192 |         let normal = self.normal()
193 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:161:32: error: cannot find type 'CGContext' in scope
159 |     /// Draw the receiver in the specified context
160 |     /// - Parameter context: Context in which to draw
161 |     open func draw(in context: CGContext) {
    |                                `- error: cannot find type 'CGContext' in scope
162 |         let rect = CGRect(x: x, y: y, width: width, height: height)
163 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:173:37: error: cannot find type 'CGContext' in scope
171 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
172 |     /// - Parameter context: Context in which to draw
173 |     open func debugDraw(in context: CGContext) {
    |                                     `- error: cannot find type 'CGContext' in scope
174 |
175 |         let tlColor = CGColor(red: 255 / 255, green: 159 / 255, blue: 82 / 255, alpha: 1)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:304:34: error: cannot find type 'CGContext' in scope
302 |     /// Draw the receiver in the specified context
303 |     /// - Parameter context: Context in which to draw
304 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
305 |         Rectangle(x: x, y: y, width: 1, height: 1).draw(in: context)
306 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
[3/38] Compiling SwiftGraphics BlendMode.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:35:29: error: cannot find type 'CGContext' in scope
33 |         case is SVGContext:
34 |             break
35 |         case let context as CGContext:
   |                             `- error: cannot find type 'CGContext' in scope
36 |             debugDraw(in: context)
37 |         default:
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:36:27: error: argument passed to call that takes no arguments
34 |             break
35 |         case let context as CGContext:
36 |             debugDraw(in: context)
   |                           `- error: argument passed to call that takes no arguments
37 |         default:
38 |             break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:35:11: error: cannot find type 'CGContext' in scope
33 | }
34 |
35 | extension CGContext: DrawingContext {
   |           `- error: cannot find type 'CGContext' in scope
36 |
37 | }
[4/38] Compiling SwiftGraphics CGDrawable.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:35:29: error: cannot find type 'CGContext' in scope
33 |         case is SVGContext:
34 |             break
35 |         case let context as CGContext:
   |                             `- error: cannot find type 'CGContext' in scope
36 |             debugDraw(in: context)
37 |         default:
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:36:27: error: argument passed to call that takes no arguments
34 |             break
35 |         case let context as CGContext:
36 |             debugDraw(in: context)
   |                           `- error: argument passed to call that takes no arguments
37 |         default:
38 |             break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:35:11: error: cannot find type 'CGContext' in scope
33 | }
34 |
35 | extension CGContext: DrawingContext {
   |           `- error: cannot find type 'CGContext' in scope
36 |
37 | }
[5/38] Compiling SwiftGraphics Color.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:35:29: error: cannot find type 'CGContext' in scope
33 |         case is SVGContext:
34 |             break
35 |         case let context as CGContext:
   |                             `- error: cannot find type 'CGContext' in scope
36 |             debugDraw(in: context)
37 |         default:
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:36:27: error: argument passed to call that takes no arguments
34 |             break
35 |         case let context as CGContext:
36 |             debugDraw(in: context)
   |                           `- error: argument passed to call that takes no arguments
37 |         default:
38 |             break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:35:11: error: cannot find type 'CGContext' in scope
33 | }
34 |
35 | extension CGContext: DrawingContext {
   |           `- error: cannot find type 'CGContext' in scope
36 |
37 | }
[6/38] Compiling SwiftGraphics DrawingContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:35:29: error: cannot find type 'CGContext' in scope
33 |         case is SVGContext:
34 |             break
35 |         case let context as CGContext:
   |                             `- error: cannot find type 'CGContext' in scope
36 |             debugDraw(in: context)
37 |         default:
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:36:27: error: argument passed to call that takes no arguments
34 |             break
35 |         case let context as CGContext:
36 |             debugDraw(in: context)
   |                           `- error: argument passed to call that takes no arguments
37 |         default:
38 |             break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/DrawingContext.swift:35:11: error: cannot find type 'CGContext' in scope
33 | }
34 |
35 | extension CGContext: DrawingContext {
   |           `- error: cannot find type 'CGContext' in scope
36 |
37 | }
[7/38] Compiling SwiftGraphics Clamped.swift
[8/38] Compiling SwiftGraphics Double.swift
[9/38] Compiling SwiftGraphics String.swift
[10/38] Compiling SwiftGraphics XMLElement.swift
[11/38] Compiling SwiftGraphics Fresnel.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/BezierPath.swift:138:29: error: argument passed to call that takes no arguments
136 |     /// - Parameter context: Context in which to draw
137 |     public func debugDraw(in context: CGContext) {
138 |         start.debugDraw(in: context)
    |                             `- error: argument passed to call that takes no arguments
139 |         points.forEach {
140 |             $0.point.debugDraw(in: context)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/BezierPath.swift:140:36: error: argument passed to call that takes no arguments
138 |         start.debugDraw(in: context)
139 |         points.forEach {
140 |             $0.point.debugDraw(in: context)
    |                                    `- error: argument passed to call that takes no arguments
141 |         }
142 |     }
[12/38] Compiling SwiftGraphics LinearEmitter.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/BezierPath.swift:138:29: error: argument passed to call that takes no arguments
136 |     /// - Parameter context: Context in which to draw
137 |     public func debugDraw(in context: CGContext) {
138 |         start.debugDraw(in: context)
    |                             `- error: argument passed to call that takes no arguments
139 |         points.forEach {
140 |             $0.point.debugDraw(in: context)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/BezierPath.swift:140:36: error: argument passed to call that takes no arguments
138 |         start.debugDraw(in: context)
139 |         points.forEach {
140 |             $0.point.debugDraw(in: context)
    |                                    `- error: argument passed to call that takes no arguments
141 |         }
142 |     }
[13/38] Compiling SwiftGraphics BezierPath.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/BezierPath.swift:138:29: error: argument passed to call that takes no arguments
136 |     /// - Parameter context: Context in which to draw
137 |     public func debugDraw(in context: CGContext) {
138 |         start.debugDraw(in: context)
    |                             `- error: argument passed to call that takes no arguments
139 |         points.forEach {
140 |             $0.point.debugDraw(in: context)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/BezierPath.swift:140:36: error: argument passed to call that takes no arguments
138 |         start.debugDraw(in: context)
139 |         points.forEach {
140 |             $0.point.debugDraw(in: context)
    |                                    `- error: argument passed to call that takes no arguments
141 |         }
142 |     }
[14/38] Compiling SwiftGraphics DefaultIntersections.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:126:39: error: cannot find type 'CGContext' in scope
124 |     /// Draws a representation of the emitter suitable for debugging.
125 |     /// - Parameter context: Context in which to draw
126 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
127 |         //        super.debugDraw(in: context)
128 |         Circle(center: origin, radius: 20).draw()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:134:32: error: argument passed to call that takes no arguments
132 |         dirPoint += origin
133 |
134 |         dirPoint.debugDraw(in: context)
    |                                `- error: argument passed to call that takes no arguments
135 |     }
136 |
[15/38] Compiling SwiftGraphics Intersectable.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:126:39: error: cannot find type 'CGContext' in scope
124 |     /// Draws a representation of the emitter suitable for debugging.
125 |     /// - Parameter context: Context in which to draw
126 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
127 |         //        super.debugDraw(in: context)
128 |         Circle(center: origin, radius: 20).draw()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:134:32: error: argument passed to call that takes no arguments
132 |         dirPoint += origin
133 |
134 |         dirPoint.debugDraw(in: context)
    |                                `- error: argument passed to call that takes no arguments
135 |     }
136 |
[16/38] Compiling SwiftGraphics RayTracable.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:126:39: error: cannot find type 'CGContext' in scope
124 |     /// Draws a representation of the emitter suitable for debugging.
125 |     /// - Parameter context: Context in which to draw
126 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
127 |         //        super.debugDraw(in: context)
128 |         Circle(center: origin, radius: 20).draw()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:134:32: error: argument passed to call that takes no arguments
132 |         dirPoint += origin
133 |
134 |         dirPoint.debugDraw(in: context)
    |                                `- error: argument passed to call that takes no arguments
135 |     }
136 |
[17/38] Compiling SwiftGraphics Polygon.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:126:39: error: cannot find type 'CGContext' in scope
124 |     /// Draws a representation of the emitter suitable for debugging.
125 |     /// - Parameter context: Context in which to draw
126 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
127 |         //        super.debugDraw(in: context)
128 |         Circle(center: origin, radius: 20).draw()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:134:32: error: argument passed to call that takes no arguments
132 |         dirPoint += origin
133 |
134 |         dirPoint.debugDraw(in: context)
    |                                `- error: argument passed to call that takes no arguments
135 |     }
136 |
[18/38] Compiling SwiftGraphics Shape.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:31:45: error: argument passed to call that takes no arguments
29 |             (self as? SVGDrawable)?.draw(in: context)
30 |         case let context as CGContext:
31 |             (self as? CGDrawable)?.draw(in: context)
   |                                             `- error: argument passed to call that takes no arguments
32 |         default:
33 |             break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:161:32: error: cannot find type 'CGContext' in scope
159 |     /// Draw the receiver in the specified context
160 |     /// - Parameter context: Context in which to draw
161 |     open func draw(in context: CGContext) {
    |                                `- error: cannot find type 'CGContext' in scope
162 |         let rect = CGRect(x: x, y: y, width: width, height: height)
163 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/SketchView.swift:35:67: error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 33 |
 34 |         // Set the context to CoreGraphics
 35 |         SwiftGraphicsContext.current = NSGraphicsContext.current?.cgContext
    |                                                                   `- error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 36 |
 37 |         let startTime = Date()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/SketchView.swift:51:67: error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 49 |
 50 |         // Set the context to CoreGraphics
 51 |         SwiftGraphicsContext.current = NSGraphicsContext.current?.cgContext
    |                                                                   `- error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 52 |
 53 |         sketch.draw()
[19/38] Compiling SwiftGraphics Sketch Protcols.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:31:45: error: argument passed to call that takes no arguments
29 |             (self as? SVGDrawable)?.draw(in: context)
30 |         case let context as CGContext:
31 |             (self as? CGDrawable)?.draw(in: context)
   |                                             `- error: argument passed to call that takes no arguments
32 |         default:
33 |             break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:161:32: error: cannot find type 'CGContext' in scope
159 |     /// Draw the receiver in the specified context
160 |     /// - Parameter context: Context in which to draw
161 |     open func draw(in context: CGContext) {
    |                                `- error: cannot find type 'CGContext' in scope
162 |         let rect = CGRect(x: x, y: y, width: width, height: height)
163 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/SketchView.swift:35:67: error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 33 |
 34 |         // Set the context to CoreGraphics
 35 |         SwiftGraphicsContext.current = NSGraphicsContext.current?.cgContext
    |                                                                   `- error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 36 |
 37 |         let startTime = Date()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/SketchView.swift:51:67: error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 49 |
 50 |         // Set the context to CoreGraphics
 51 |         SwiftGraphicsContext.current = NSGraphicsContext.current?.cgContext
    |                                                                   `- error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 52 |
 53 |         sketch.draw()
[20/38] Compiling SwiftGraphics Sketch.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:31:45: error: argument passed to call that takes no arguments
29 |             (self as? SVGDrawable)?.draw(in: context)
30 |         case let context as CGContext:
31 |             (self as? CGDrawable)?.draw(in: context)
   |                                             `- error: argument passed to call that takes no arguments
32 |         default:
33 |             break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:161:32: error: cannot find type 'CGContext' in scope
159 |     /// Draw the receiver in the specified context
160 |     /// - Parameter context: Context in which to draw
161 |     open func draw(in context: CGContext) {
    |                                `- error: cannot find type 'CGContext' in scope
162 |         let rect = CGRect(x: x, y: y, width: width, height: height)
163 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/SketchView.swift:35:67: error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 33 |
 34 |         // Set the context to CoreGraphics
 35 |         SwiftGraphicsContext.current = NSGraphicsContext.current?.cgContext
    |                                                                   `- error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 36 |
 37 |         let startTime = Date()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/SketchView.swift:51:67: error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 49 |
 50 |         // Set the context to CoreGraphics
 51 |         SwiftGraphicsContext.current = NSGraphicsContext.current?.cgContext
    |                                                                   `- error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 52 |
 53 |         sketch.draw()
[21/38] Compiling SwiftGraphics SketchView.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:31:45: error: argument passed to call that takes no arguments
29 |             (self as? SVGDrawable)?.draw(in: context)
30 |         case let context as CGContext:
31 |             (self as? CGDrawable)?.draw(in: context)
   |                                             `- error: argument passed to call that takes no arguments
32 |         default:
33 |             break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:161:32: error: cannot find type 'CGContext' in scope
159 |     /// Draw the receiver in the specified context
160 |     /// - Parameter context: Context in which to draw
161 |     open func draw(in context: CGContext) {
    |                                `- error: cannot find type 'CGContext' in scope
162 |         let rect = CGRect(x: x, y: y, width: width, height: height)
163 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/SketchView.swift:35:67: error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 33 |
 34 |         // Set the context to CoreGraphics
 35 |         SwiftGraphicsContext.current = NSGraphicsContext.current?.cgContext
    |                                                                   `- error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 36 |
 37 |         let startTime = Date()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/SketchView.swift:51:67: error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 49 |
 50 |         // Set the context to CoreGraphics
 51 |         SwiftGraphicsContext.current = NSGraphicsContext.current?.cgContext
    |                                                                   `- error: cannot assign value of type 'CGContext?' to type '(any DrawingContext)?'
 52 |
 53 |         sketch.draw()
[22/38] Compiling SwiftGraphics Circle.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:191:39: error: cannot find type 'CGContext' in scope
189 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
190 |     /// - Parameter context: Context in which to draw
191 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
192 |         let normal = self.normal()
193 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:194:33: error: cannot infer contextual base in reference to member 'init'
192 |         let normal = self.normal()
193 |
194 |         context.setStrokeColor(.init(red: 255, green: 0, blue: 128, alpha: 1))
    |                                 `- error: cannot infer contextual base in reference to member 'init'
195 |         Line(
196 |             center.x,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:202:33: error: cannot infer contextual base in reference to member 'init'
200 |         ).draw()
201 |
202 |         context.setStrokeColor(.init(gray: 0.5, alpha: 1))
    |                                 `- error: cannot infer contextual base in reference to member 'init'
203 |         self.draw(in: context)
204 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Path.swift:106:30: error: argument passed to call that takes no arguments
104 |     public func debugDraw(in context: CGContext) {
105 |         points.forEach {
106 |             $0.debugDraw(in: context)
    |                              `- error: argument passed to call that takes no arguments
107 |         }
108 |     }
[23/38] Compiling SwiftGraphics Line.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:191:39: error: cannot find type 'CGContext' in scope
189 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
190 |     /// - Parameter context: Context in which to draw
191 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
192 |         let normal = self.normal()
193 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:194:33: error: cannot infer contextual base in reference to member 'init'
192 |         let normal = self.normal()
193 |
194 |         context.setStrokeColor(.init(red: 255, green: 0, blue: 128, alpha: 1))
    |                                 `- error: cannot infer contextual base in reference to member 'init'
195 |         Line(
196 |             center.x,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:202:33: error: cannot infer contextual base in reference to member 'init'
200 |         ).draw()
201 |
202 |         context.setStrokeColor(.init(gray: 0.5, alpha: 1))
    |                                 `- error: cannot infer contextual base in reference to member 'init'
203 |         self.draw(in: context)
204 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Path.swift:106:30: error: argument passed to call that takes no arguments
104 |     public func debugDraw(in context: CGContext) {
105 |         points.forEach {
106 |             $0.debugDraw(in: context)
    |                              `- error: argument passed to call that takes no arguments
107 |         }
108 |     }
[24/38] Compiling SwiftGraphics Path.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:191:39: error: cannot find type 'CGContext' in scope
189 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
190 |     /// - Parameter context: Context in which to draw
191 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
192 |         let normal = self.normal()
193 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:194:33: error: cannot infer contextual base in reference to member 'init'
192 |         let normal = self.normal()
193 |
194 |         context.setStrokeColor(.init(red: 255, green: 0, blue: 128, alpha: 1))
    |                                 `- error: cannot infer contextual base in reference to member 'init'
195 |         Line(
196 |             center.x,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:202:33: error: cannot infer contextual base in reference to member 'init'
200 |         ).draw()
201 |
202 |         context.setStrokeColor(.init(gray: 0.5, alpha: 1))
    |                                 `- error: cannot infer contextual base in reference to member 'init'
203 |         self.draw(in: context)
204 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Path.swift:106:30: error: argument passed to call that takes no arguments
104 |     public func debugDraw(in context: CGContext) {
105 |         points.forEach {
106 |             $0.debugDraw(in: context)
    |                              `- error: argument passed to call that takes no arguments
107 |         }
108 |     }
[25/38] Compiling SwiftGraphics Perlin.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Ray Tracing/DirectionalEmitter.swift:67:39: error: cannot find type 'CGContext' in scope
65 |     /// Draws a representation of the emitter suitable for debugging.
66 |     /// - Parameter context: Context in which to draw
67 |     public func debugDraw(in context: CGContext) {
   |                                       `- error: cannot find type 'CGContext' in scope
68 |         let ray = Ray(origin: origin.copy(), direction: direction.copy())
69 |         ray.debugDraw(in: context)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:126:39: error: cannot find type 'CGContext' in scope
124 |     /// Draws a representation of the emitter suitable for debugging.
125 |     /// - Parameter context: Context in which to draw
126 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
127 |         //        super.debugDraw(in: context)
128 |         Circle(center: origin, radius: 20).draw()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:304:34: error: cannot find type 'CGContext' in scope
302 |     /// Draw the receiver in the specified context
303 |     /// - Parameter context: Context in which to draw
304 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
305 |         Rectangle(x: x, y: y, width: 1, height: 1).draw(in: context)
306 |     }
[26/38] Compiling SwiftGraphics CircleEmitter.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Ray Tracing/DirectionalEmitter.swift:67:39: error: cannot find type 'CGContext' in scope
65 |     /// Draws a representation of the emitter suitable for debugging.
66 |     /// - Parameter context: Context in which to draw
67 |     public func debugDraw(in context: CGContext) {
   |                                       `- error: cannot find type 'CGContext' in scope
68 |         let ray = Ray(origin: origin.copy(), direction: direction.copy())
69 |         ray.debugDraw(in: context)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:126:39: error: cannot find type 'CGContext' in scope
124 |     /// Draws a representation of the emitter suitable for debugging.
125 |     /// - Parameter context: Context in which to draw
126 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
127 |         //        super.debugDraw(in: context)
128 |         Circle(center: origin, radius: 20).draw()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:304:34: error: cannot find type 'CGContext' in scope
302 |     /// Draw the receiver in the specified context
303 |     /// - Parameter context: Context in which to draw
304 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
305 |         Rectangle(x: x, y: y, width: 1, height: 1).draw(in: context)
306 |     }
[27/38] Compiling SwiftGraphics DirectionalEmitter.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Ray Tracing/DirectionalEmitter.swift:67:39: error: cannot find type 'CGContext' in scope
65 |     /// Draws a representation of the emitter suitable for debugging.
66 |     /// - Parameter context: Context in which to draw
67 |     public func debugDraw(in context: CGContext) {
   |                                       `- error: cannot find type 'CGContext' in scope
68 |         let ray = Ray(origin: origin.copy(), direction: direction.copy())
69 |         ray.debugDraw(in: context)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:126:39: error: cannot find type 'CGContext' in scope
124 |     /// Draws a representation of the emitter suitable for debugging.
125 |     /// - Parameter context: Context in which to draw
126 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
127 |         //        super.debugDraw(in: context)
128 |         Circle(center: origin, radius: 20).draw()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:304:34: error: cannot find type 'CGContext' in scope
302 |     /// Draw the receiver in the specified context
303 |     /// - Parameter context: Context in which to draw
304 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
305 |         Rectangle(x: x, y: y, width: 1, height: 1).draw(in: context)
306 |     }
[28/38] Compiling SwiftGraphics Emitter.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Ray Tracing/DirectionalEmitter.swift:67:39: error: cannot find type 'CGContext' in scope
65 |     /// Draws a representation of the emitter suitable for debugging.
66 |     /// - Parameter context: Context in which to draw
67 |     public func debugDraw(in context: CGContext) {
   |                                       `- error: cannot find type 'CGContext' in scope
68 |         let ray = Ray(origin: origin.copy(), direction: direction.copy())
69 |         ray.debugDraw(in: context)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Intersectable/RayTracable.swift:126:39: error: cannot find type 'CGContext' in scope
124 |     /// Draws a representation of the emitter suitable for debugging.
125 |     /// - Parameter context: Context in which to draw
126 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
127 |         //        super.debugDraw(in: context)
128 |         Circle(center: origin, radius: 20).draw()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:304:34: error: cannot find type 'CGContext' in scope
302 |     /// Draw the receiver in the specified context
303 |     /// - Parameter context: Context in which to draw
304 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
305 |         Rectangle(x: x, y: y, width: 1, height: 1).draw(in: context)
306 |     }
[29/38] Compiling SwiftGraphics SVGContext.swift
[30/38] Compiling SwiftGraphics SVGDrawable.swift
[31/38] Compiling SwiftGraphics Angles.swift
[32/38] Compiling SwiftGraphics Array.swift
[33/38] Compiling SwiftGraphics BoundingBox.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:161:32: error: cannot find type 'CGContext' in scope
159 |     /// Draw the receiver in the specified context
160 |     /// - Parameter context: Context in which to draw
161 |     open func draw(in context: CGContext) {
    |                                `- error: cannot find type 'CGContext' in scope
162 |         let rect = CGRect(x: x, y: y, width: width, height: height)
163 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/BoundingBox.swift:48:29: error: cannot find type 'CGContext' in scope
46 |             contextWidth = Double(context.width)
47 |             contextHeight = Double(context.height)
48 |         case let context as CGContext:
   |                             `- error: cannot find type 'CGContext' in scope
49 |             contextWidth = Double(context.width) / 2
50 |             contextHeight = Double(context.height) / 2
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:50:39: error: cannot find type 'CGContext' in scope
48 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
49 |     /// - Parameter context: Context in which to draw
50 |     public func debugDraw(in context: CGContext) {
   |                                       `- error: cannot find type 'CGContext' in scope
51 |         draw(in: context)
52 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
[34/38] Compiling SwiftGraphics Circle+Drawable.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:161:32: error: cannot find type 'CGContext' in scope
159 |     /// Draw the receiver in the specified context
160 |     /// - Parameter context: Context in which to draw
161 |     open func draw(in context: CGContext) {
    |                                `- error: cannot find type 'CGContext' in scope
162 |         let rect = CGRect(x: x, y: y, width: width, height: height)
163 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/BoundingBox.swift:48:29: error: cannot find type 'CGContext' in scope
46 |             contextWidth = Double(context.width)
47 |             contextHeight = Double(context.height)
48 |         case let context as CGContext:
   |                             `- error: cannot find type 'CGContext' in scope
49 |             contextWidth = Double(context.width) / 2
50 |             contextHeight = Double(context.height) / 2
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:50:39: error: cannot find type 'CGContext' in scope
48 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
49 |     /// - Parameter context: Context in which to draw
50 |     public func debugDraw(in context: CGContext) {
   |                                       `- error: cannot find type 'CGContext' in scope
51 |         draw(in: context)
52 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
[35/38] Compiling SwiftGraphics Circle+RayTracable.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:161:32: error: cannot find type 'CGContext' in scope
159 |     /// Draw the receiver in the specified context
160 |     /// - Parameter context: Context in which to draw
161 |     open func draw(in context: CGContext) {
    |                                `- error: cannot find type 'CGContext' in scope
162 |         let rect = CGRect(x: x, y: y, width: width, height: height)
163 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/BoundingBox.swift:48:29: error: cannot find type 'CGContext' in scope
46 |             contextWidth = Double(context.width)
47 |             contextHeight = Double(context.height)
48 |         case let context as CGContext:
   |                             `- error: cannot find type 'CGContext' in scope
49 |             contextWidth = Double(context.width) / 2
50 |             contextHeight = Double(context.height) / 2
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:50:39: error: cannot find type 'CGContext' in scope
48 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
49 |     /// - Parameter context: Context in which to draw
50 |     public func debugDraw(in context: CGContext) {
   |                                       `- error: cannot find type 'CGContext' in scope
51 |         draw(in: context)
52 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
[36/38] Compiling SwiftGraphics Rectangle.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:161:32: error: cannot find type 'CGContext' in scope
159 |     /// Draw the receiver in the specified context
160 |     /// - Parameter context: Context in which to draw
161 |     open func draw(in context: CGContext) {
    |                                `- error: cannot find type 'CGContext' in scope
162 |         let rect = CGRect(x: x, y: y, width: width, height: height)
163 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:173:37: error: cannot find type 'CGContext' in scope
171 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
172 |     /// - Parameter context: Context in which to draw
173 |     open func debugDraw(in context: CGContext) {
    |                                     `- error: cannot find type 'CGContext' in scope
174 |
175 |         let tlColor = CGColor(red: 255 / 255, green: 159 / 255, blue: 82 / 255, alpha: 1)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:175:23: error: cannot find 'CGColor' in scope
173 |     open func debugDraw(in context: CGContext) {
174 |
175 |         let tlColor = CGColor(red: 255 / 255, green: 159 / 255, blue: 82 / 255, alpha: 1)
    |                       `- error: cannot find 'CGColor' in scope
176 |         let trColor = CGColor(red: 82 / 255, green: 243 / 255, blue: 255 / 255, alpha: 1)
177 |         let brColor = CGColor(red: 163 / 255, green: 82 / 255, blue: 255 / 255, alpha: 1)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:176:23: error: cannot find 'CGColor' in scope
174 |
175 |         let tlColor = CGColor(red: 255 / 255, green: 159 / 255, blue: 82 / 255, alpha: 1)
176 |         let trColor = CGColor(red: 82 / 255, green: 243 / 255, blue: 255 / 255, alpha: 1)
    |                       `- error: cannot find 'CGColor' in scope
177 |         let brColor = CGColor(red: 163 / 255, green: 82 / 255, blue: 255 / 255, alpha: 1)
178 |         let blColor = CGColor(red: 255 / 255, green: 82 / 255, blue: 82 / 255, alpha: 1)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:177:23: error: cannot find 'CGColor' in scope
175 |         let tlColor = CGColor(red: 255 / 255, green: 159 / 255, blue: 82 / 255, alpha: 1)
176 |         let trColor = CGColor(red: 82 / 255, green: 243 / 255, blue: 255 / 255, alpha: 1)
177 |         let brColor = CGColor(red: 163 / 255, green: 82 / 255, blue: 255 / 255, alpha: 1)
    |                       `- error: cannot find 'CGColor' in scope
178 |         let blColor = CGColor(red: 255 / 255, green: 82 / 255, blue: 82 / 255, alpha: 1)
179 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:178:23: error: cannot find 'CGColor' in scope
176 |         let trColor = CGColor(red: 82 / 255, green: 243 / 255, blue: 255 / 255, alpha: 1)
177 |         let brColor = CGColor(red: 163 / 255, green: 82 / 255, blue: 255 / 255, alpha: 1)
178 |         let blColor = CGColor(red: 255 / 255, green: 82 / 255, blue: 82 / 255, alpha: 1)
    |                       `- error: cannot find 'CGColor' in scope
179 |
180 |         context.setFillColor(tlColor)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:304:34: error: cannot find type 'CGContext' in scope
302 |     /// Draw the receiver in the specified context
303 |     /// - Parameter context: Context in which to draw
304 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
305 |         Rectangle(x: x, y: y, width: 1, height: 1).draw(in: context)
306 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
[37/38] Compiling SwiftGraphics Size.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:161:32: error: cannot find type 'CGContext' in scope
159 |     /// Draw the receiver in the specified context
160 |     /// - Parameter context: Context in which to draw
161 |     open func draw(in context: CGContext) {
    |                                `- error: cannot find type 'CGContext' in scope
162 |         let rect = CGRect(x: x, y: y, width: width, height: height)
163 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:173:37: error: cannot find type 'CGContext' in scope
171 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
172 |     /// - Parameter context: Context in which to draw
173 |     open func debugDraw(in context: CGContext) {
    |                                     `- error: cannot find type 'CGContext' in scope
174 |
175 |         let tlColor = CGColor(red: 255 / 255, green: 159 / 255, blue: 82 / 255, alpha: 1)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:175:23: error: cannot find 'CGColor' in scope
173 |     open func debugDraw(in context: CGContext) {
174 |
175 |         let tlColor = CGColor(red: 255 / 255, green: 159 / 255, blue: 82 / 255, alpha: 1)
    |                       `- error: cannot find 'CGColor' in scope
176 |         let trColor = CGColor(red: 82 / 255, green: 243 / 255, blue: 255 / 255, alpha: 1)
177 |         let brColor = CGColor(red: 163 / 255, green: 82 / 255, blue: 255 / 255, alpha: 1)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:176:23: error: cannot find 'CGColor' in scope
174 |
175 |         let tlColor = CGColor(red: 255 / 255, green: 159 / 255, blue: 82 / 255, alpha: 1)
176 |         let trColor = CGColor(red: 82 / 255, green: 243 / 255, blue: 255 / 255, alpha: 1)
    |                       `- error: cannot find 'CGColor' in scope
177 |         let brColor = CGColor(red: 163 / 255, green: 82 / 255, blue: 255 / 255, alpha: 1)
178 |         let blColor = CGColor(red: 255 / 255, green: 82 / 255, blue: 82 / 255, alpha: 1)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:177:23: error: cannot find 'CGColor' in scope
175 |         let tlColor = CGColor(red: 255 / 255, green: 159 / 255, blue: 82 / 255, alpha: 1)
176 |         let trColor = CGColor(red: 82 / 255, green: 243 / 255, blue: 255 / 255, alpha: 1)
177 |         let brColor = CGColor(red: 163 / 255, green: 82 / 255, blue: 255 / 255, alpha: 1)
    |                       `- error: cannot find 'CGColor' in scope
178 |         let blColor = CGColor(red: 255 / 255, green: 82 / 255, blue: 82 / 255, alpha: 1)
179 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:178:23: error: cannot find 'CGColor' in scope
176 |         let trColor = CGColor(red: 82 / 255, green: 243 / 255, blue: 255 / 255, alpha: 1)
177 |         let brColor = CGColor(red: 163 / 255, green: 82 / 255, blue: 255 / 255, alpha: 1)
178 |         let blColor = CGColor(red: 255 / 255, green: 82 / 255, blue: 82 / 255, alpha: 1)
    |                       `- error: cannot find 'CGColor' in scope
179 |
180 |         context.setFillColor(tlColor)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:304:34: error: cannot find type 'CGContext' in scope
302 |     /// Draw the receiver in the specified context
303 |     /// - Parameter context: Context in which to draw
304 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
305 |         Rectangle(x: x, y: y, width: 1, height: 1).draw(in: context)
306 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
[38/38] Compiling SwiftGraphics Vector.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:161:32: error: cannot find type 'CGContext' in scope
159 |     /// Draw the receiver in the specified context
160 |     /// - Parameter context: Context in which to draw
161 |     open func draw(in context: CGContext) {
    |                                `- error: cannot find type 'CGContext' in scope
162 |         let rect = CGRect(x: x, y: y, width: width, height: height)
163 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:173:37: error: cannot find type 'CGContext' in scope
171 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
172 |     /// - Parameter context: Context in which to draw
173 |     open func debugDraw(in context: CGContext) {
    |                                     `- error: cannot find type 'CGContext' in scope
174 |
175 |         let tlColor = CGColor(red: 255 / 255, green: 159 / 255, blue: 82 / 255, alpha: 1)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:15:27: error: cannot find type 'CGContext' in scope
13 |     /// Draw the receiver in the specified context
14 |     /// - Parameter context: Context in which to draw
15 |     func draw(in context: CGContext)
   |                           `- error: cannot find type 'CGContext' in scope
16 |
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/CGDrawable.swift:19:32: error: cannot find type 'CGContext' in scope
17 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
18 |     /// - Parameter context: Context in which to draw
19 |     func debugDraw(in context: CGContext)
   |                                `- error: cannot find type 'CGContext' in scope
20 | }
21 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Drawing/Color.swift:119:32: error: cannot find type 'CGColor' in scope
117 |
118 |     /// Createa CGColor
119 |     public func toCGColor() -> CGColor {
    |                                `- error: cannot find type 'CGColor' in scope
120 |         return CGColor(
121 |             red: CGFloat(red),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:175:23: error: cannot find 'CGColor' in scope
173 |     open func debugDraw(in context: CGContext) {
174 |
175 |         let tlColor = CGColor(red: 255 / 255, green: 159 / 255, blue: 82 / 255, alpha: 1)
    |                       `- error: cannot find 'CGColor' in scope
176 |         let trColor = CGColor(red: 82 / 255, green: 243 / 255, blue: 255 / 255, alpha: 1)
177 |         let brColor = CGColor(red: 163 / 255, green: 82 / 255, blue: 255 / 255, alpha: 1)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:176:23: error: cannot find 'CGColor' in scope
174 |
175 |         let tlColor = CGColor(red: 255 / 255, green: 159 / 255, blue: 82 / 255, alpha: 1)
176 |         let trColor = CGColor(red: 82 / 255, green: 243 / 255, blue: 255 / 255, alpha: 1)
    |                       `- error: cannot find 'CGColor' in scope
177 |         let brColor = CGColor(red: 163 / 255, green: 82 / 255, blue: 255 / 255, alpha: 1)
178 |         let blColor = CGColor(red: 255 / 255, green: 82 / 255, blue: 82 / 255, alpha: 1)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:177:23: error: cannot find 'CGColor' in scope
175 |         let tlColor = CGColor(red: 255 / 255, green: 159 / 255, blue: 82 / 255, alpha: 1)
176 |         let trColor = CGColor(red: 82 / 255, green: 243 / 255, blue: 255 / 255, alpha: 1)
177 |         let brColor = CGColor(red: 163 / 255, green: 82 / 255, blue: 255 / 255, alpha: 1)
    |                       `- error: cannot find 'CGColor' in scope
178 |         let blColor = CGColor(red: 255 / 255, green: 82 / 255, blue: 82 / 255, alpha: 1)
179 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Rectangle.swift:178:23: error: cannot find 'CGColor' in scope
176 |         let trColor = CGColor(red: 82 / 255, green: 243 / 255, blue: 255 / 255, alpha: 1)
177 |         let brColor = CGColor(red: 163 / 255, green: 82 / 255, blue: 255 / 255, alpha: 1)
178 |         let blColor = CGColor(red: 255 / 255, green: 82 / 255, blue: 82 / 255, alpha: 1)
    |                       `- error: cannot find 'CGColor' in scope
179 |
180 |         context.setFillColor(tlColor)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Circle/Circle+Drawable.swift:33:34: error: cannot find type 'CGContext' in scope
31 |     /// Draw the receiver in the specified context
32 |     /// - Parameter context: Context in which to draw
33 |     public func draw(in context: CGContext) {
   |                                  `- error: cannot find type 'CGContext' in scope
34 |
35 |         context.saveGState()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Line.swift:182:34: error: cannot find type 'CGContext' in scope
180 |     /// Draw the receiver in the specified context
181 |     /// - Parameter context: Context in which to draw
182 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
183 |         context.setStrokeColor(SwiftGraphicsContext.strokeColor.toCGColor())
184 |         context.setFillColor(SwiftGraphicsContext.fillColor.toCGColor())
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:304:34: error: cannot find type 'CGContext' in scope
302 |     /// Draw the receiver in the specified context
303 |     /// - Parameter context: Context in which to draw
304 |     public func draw(in context: CGContext) {
    |                                  `- error: cannot find type 'CGContext' in scope
305 |         Rectangle(x: x, y: y, width: 1, height: 1).draw(in: context)
306 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftGraphics/Shapes/Vector.swift:310:39: error: cannot find type 'CGContext' in scope
308 |     /// Draw a representation of the receiver meant for debugging the shape in the specified context
309 |     /// - Parameter context: Context in which to draw
310 |     public func debugDraw(in context: CGContext) {
    |                                       `- error: cannot find type 'CGContext' in scope
311 |         Circle(center: self, radius: 5).draw(in: context)
312 |     }
BUILD FAILURE 6.1 macosSpm