Build Information
Failed to build SwiftGraphics, reference 0.3.1 (93fc37
), with Swift 6.2 (beta) for macOS (SPM) on 18 Jun 2025 21:42:51 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/emorydunn/SwiftGraphics.git
Reference: 0.3.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/emorydunn/SwiftGraphics
* tag 0.3.1 -> FETCH_HEAD
HEAD is now at 93fc377 Fix very obvious typo
Cloned https://github.com/emorydunn/SwiftGraphics.git
Revision (git rev-parse @):
93fc37757dc876f8f84ba4f4622964b5e7dbdd8b
SUCCESS checkout https://github.com/emorydunn/SwiftGraphics.git at 0.3.1
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/emorydunn/SwiftGraphics.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/36] 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 | }
[4/39] 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 | }
[5/39] 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 | }
[6/39] 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 | }
[7/39] 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 | }
[8/39] 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 | }
[9/39] 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 | }
[10/39] 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 | }
[11/39] Compiling SwiftGraphics Clamped.swift
[12/39] Compiling SwiftGraphics Double.swift
[13/39] Compiling SwiftGraphics String.swift
[14/39] Compiling SwiftGraphics XMLElement.swift
[15/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 | }
[16/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 | }
[17/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 | }
[18/39] 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),
[19/39] 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),
[20/39] 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),
[21/39] 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 |
[22/39] 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 |
[23/39] 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 |
[24/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 |
[25/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:35:11: error: cannot find type 'CGContext' in scope
33 | }
34 |
35 | extension CGContext: DrawingContext {
| `- error: cannot find type 'CGContext' in scope
36 |
37 | }
[26/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:35:11: error: cannot find type 'CGContext' in scope
33 | }
34 |
35 | extension CGContext: DrawingContext {
| `- error: cannot find type 'CGContext' in scope
36 |
37 | }
[27/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:35:11: error: cannot find type 'CGContext' in scope
33 | }
34 |
35 | extension CGContext: DrawingContext {
| `- error: cannot find type 'CGContext' in scope
36 |
37 | }
[28/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: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 SVGContext.swift
[30/39] Compiling SwiftGraphics SVGDrawable.swift
[31/39] Compiling SwiftGraphics Angles.swift
[32/39] Compiling SwiftGraphics Array.swift
[33/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 | }
[34/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 | }
[35/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 | }
[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()
BUILD FAILURE 6.2 macosSpm