The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of Geometria, reference main (17db23), with Swift 6.0 for macOS (SPM) on 14 Oct 2024 06:41:20 UTC.

Swift 6 data race errors: 3

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.0.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[188/285] Compiling Geometria LineCategory.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[189/285] Compiling Geometria LineDivisible.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[190/285] Compiling Geometria LineFloatingPoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[191/285] Compiling Geometria LineMultiplicative.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[192/285] Compiling Geometria LineReal.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[193/285] Compiling Geometria LineSigned.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[194/285] Compiling Geometria LineType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[195/285] Compiling Geometria Vector3.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[196/285] Compiling Geometria Hyperplane4.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[197/285] Compiling Geometria Vector4Additive.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[198/285] Compiling Geometria Vector4FloatingPoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[199/285] Compiling Geometria Vector4Type.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[200/285] Compiling Geometria SIMD4+Double.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[201/285] Compiling Geometria Vector4.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[202/285] Compiling Geometria Angle.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[203/285] Compiling Geometria AngleSweep.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[204/285] Compiling Geometria AABB.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[205/285] Compiling Geometria ConvexLineIntersection.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[206/285] Compiling Geometria DirectionalRay.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[207/285] Compiling Geometria Ellipsoid.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[208/285] Compiling Geometria Hyperplane.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
[209/285] Compiling Geometria Line.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[224/285] Compiling Geometria BoundableType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[225/285] Compiling Geometria Ellipse3.swift
[226/285] Compiling Geometria Hyperplane3.swift
[227/285] Compiling Geometria Line3.swift
[228/285] Compiling Geometria LineSegment3.swift
[229/285] Compiling Geometria Orientation3.swift
[230/285] Compiling Geometria PointCloud3.swift
[231/285] Compiling Geometria PointNormalPlane3.swift
[232/285] Compiling Geometria PlaneProjectiveSpace.swift
[233/285] Compiling Geometria SphereCoordinates.swift
[234/285] Compiling Geometria SphereProjectiveSpace.swift
[235/285] Compiling Geometria ProjectivePointNormalPlane3.swift
[236/285] Compiling Geometria Convex3Type.swift
[237/285] Compiling Geometria Line3IntersectableType.swift
[238/285] Compiling Geometria VolumetricType+3D.swift
[239/285] Compiling Geometria Line3FloatingPoint.swift
[255/285] Compiling Geometria Line3Type.swift
[256/285] Compiling Geometria Plane3Type.swift
[257/285] Compiling Geometria PlaneIntersectablePlane3Type.swift
[258/285] Compiling Geometria Vector3Additive.swift
[259/285] Compiling Geometria Vector3FloatingPoint.swift
[260/285] Compiling Geometria Vector3Multiplicative.swift
[261/285] Compiling Geometria Vector3Real.swift
[262/285] Compiling Geometria Vector3Type.swift
[263/285] Compiling Geometria Ray3.swift
[264/285] Compiling Geometria RotationMatrix3.swift
[265/285] Compiling Geometria RotationOrder3.swift
[266/285] Compiling Geometria SIMD3+Double.swift
[267/285] Compiling Geometria Sphere3.swift
[268/285] Compiling Geometria Torus3.swift
[269/285] Compiling Geometria Triangle3.swift
[270/285] Emitting module Geometria
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:30:16: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
28 |     ///
29 |     /// [geometric line]: https://en.wikipedia.org/wiki/Line_(geometry)
30 |     static let line: Self = Self(rawValue: startOpenBit | endOpenBit)
   |                |- warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 |     /// Category for a [geometric ray] line which has a starting
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:42:16: warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
40 |     ///
41 |     /// [line segment]: https://en.wikipedia.org/wiki/Line_segment
42 |     static let lineSegment: Self = Self(rawValue: 0b0000_0000)
   |                |- warning: static property 'lineSegment' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'lineSegment' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | }
44 |
[271/285] Compiling Geometria VectorTakeable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[272/285] Compiling Geometria VectorType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[273/285] Compiling Geometria Ray.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[274/285] Compiling Geometria RoundNRectangle.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[275/285] Compiling Geometria Triangle+Coordinates.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[276/285] Compiling Geometria Triangle.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[277/285] Compiling Geometria Matrix2x2.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[278/285] Compiling Geometria Matrix3x2.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[279/285] Compiling Geometria Matrix3x3.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[280/285] Compiling Geometria Matrix4x4.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[281/285] Compiling Geometria MatrixType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[282/285] Compiling Geometria SquareMatrixType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[283/285] Compiling Geometria TransposableMatrixType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[284/285] Compiling Geometria Comparable+Clamp.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[285/285] Compiling Geometria SignedNumeric+Sign.swift
/Users/admin/builder/spi-builder-workspace/Sources/Geometria/Generalized/Protocols/Line/LineCategory.swift:36:16: warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Represents the category for a `LineType`, specifying whether the end points
 2 | /// of the line are open or closed.
 3 | public struct LineCategory: RawRepresentable, Hashable {
   |               `- note: consider making struct 'LineCategory' conform to the 'Sendable' protocol
 4 |     private static let startOpenBit = 0b0000_0001
 5 |     private static let endOpenBit = 0b0000_0010
   :
34 |     ///
35 |     /// [geometric ray]: https://en.wikipedia.org/wiki/Line_(geometry)#Ray
36 |     static let ray: Self = Self(rawValue: endOpenBit)
   |                |- warning: static property 'ray' is not concurrency-safe because non-'Sendable' type 'LineCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'ray' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     /// Category for a [line segment] that define a closed interval with a start
[286/293] Compiling GeometriaAlgorithms SpatialTree.swift
[287/293] Compiling GeometriaAlgorithms Octree.swift
[288/293] Compiling GeometriaAlgorithms QuadTree.swift
[289/293] Compiling GeometriaAlgorithms PointCloud2.swift
[290/293] Compiling GeometriaAlgorithms Ellipse2.swift
[291/293] Compiling GeometriaAlgorithms SpatialTreeType.swift
[292/293] Compiling GeometriaAlgorithms KDTree.swift
[293/293] Emitting module GeometriaAlgorithms
[294/318] Compiling GeometriaClipping Parametric2Simplex.swift
[295/318] Compiling GeometriaClipping ParametricClip2Geometry.swift
[296/318] Compiling GeometriaClipping ParametricClip2Intersection.swift
[297/320] Compiling GeometriaClipping Set+Ext.swift
[298/320] Compiling GeometriaClipping Vector2FloatingPoint+Ext.swift
[299/320] Compiling GeometriaClipping ContourManager.swift
[300/320] Compiling GeometriaClipping ExclusiveDisjunction2Parametric.swift
[301/320] Compiling GeometriaClipping Intersection2Parametric.swift
[302/320] Compiling GeometriaClipping Parametric2Contour.swift
[303/320] Compiling GeometriaClipping Parametric2GeometrySimplex.swift
[304/320] Compiling GeometriaClipping Boolean2Parametric.swift
[305/320] Compiling GeometriaClipping Circle2Parametric.swift
[306/320] Compiling GeometriaClipping Compound2Periodic.swift
[307/320] Compiling GeometriaClipping LinePolygon2Parametric.swift
[308/320] Emitting module GeometriaClipping
[309/320] Compiling GeometriaClipping FloatingPoint+Ext.swift
[310/320] Compiling GeometriaClipping OrderedSet+Ext.swift
[311/320] Compiling GeometriaClipping Subtraction2Parametric.swift
[312/320] Compiling GeometriaClipping Union2Parametric.swift
[313/320] Compiling GeometriaClipping Capsule2Parametric.swift
[314/320] Compiling GeometriaClipping CircleArc2Simplex.swift
[315/320] Compiling GeometriaClipping LineSegment2Simplex.swift
[316/320] Compiling GeometriaClipping ParametricClipGeometry.swift
[317/320] Compiling GeometriaClipping ParametricSimplex.swift
[318/320] Compiling GeometriaClipping Simplex2Graph+Creation.swift
[319/320] Compiling GeometriaClipping Simplex2Graph+Recombining.swift
[320/320] Compiling GeometriaClipping Simplex2Graph.swift
[321/336] Compiling TestCommons ConsolePrintTarget.swift
[322/336] Compiling TestCommons StandardOutputConsolePrintTarget.swift
[323/337] Compiling TestCommons TestFixture.swift
[324/337] Compiling TestCommons Assertions.swift
[325/337] Compiling TestCommons ConsolePrintBuffer+Clipping.swift
[326/337] Compiling TestCommons GeometriaClipping+Visualizable.swift
[327/337] Compiling TestCommons StringBufferConsolePrintTarget.swift
[328/337] Compiling TestCommons MersenneTwister+Geometria.swift
[329/337] Compiling TestCommons TestFixture+AssertionWrapper.swift
[330/337] Compiling TestCommons TestFixture+Clipping.swift
[331/337] Compiling TestCommons Console+Colors.swift
[332/337] Compiling TestCommons ConsolePrintBuffer.swift
[333/337] Compiling TestCommons P5Printer.swift
[334/337] Compiling TestCommons Geometria+Visualizable.swift
[335/337] Compiling TestCommons MersenneTwister.swift
[336/337] Compiling TestCommons P5Printer+Clipping.swift
[337/337] Emitting module TestCommons
Build complete! (51.62s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-numerics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-numerics.git"
    },
    {
      "identity" : "swift-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-collections.git"
    },
    {
      "identity" : "minip5printer",
      "requirement" : {
        "exact" : [
          "0.0.2"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/LuizZak/MiniP5Printer.git"
    },
    {
      "identity" : "minidigraph",
      "requirement" : {
        "exact" : [
          "0.8.1"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/LuizZak/MiniDigraph.git"
    }
  ],
  "manifest_display_name" : "Geometria",
  "name" : "Geometria",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Geometria",
      "targets" : [
        "Geometria"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "GeometriaAlgorithms",
      "targets" : [
        "GeometriaAlgorithms"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "GeometriaClipping",
      "targets" : [
        "GeometriaClipping"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TestCommons",
      "module_type" : "SwiftTarget",
      "name" : "TestCommons",
      "path" : "Sources/TestCommons",
      "product_dependencies" : [
        "MiniP5Printer"
      ],
      "sources" : [
        "Assertions.swift",
        "Console+Clipping/ConsolePrintBuffer+Clipping.swift",
        "Console/Console+Colors.swift",
        "Console/ConsolePrintBuffer.swift",
        "Console/ConsolePrintTarget.swift",
        "Console/StandardOutputConsolePrintTarget.swift",
        "Console/StringBufferConsolePrintTarget.swift",
        "MersenneTwister+Geometria.swift",
        "MersenneTwister.swift",
        "P5Printer+Clipping.swift",
        "P5Printer.swift",
        "TestFixture/Geometria+Visualizable.swift",
        "TestFixture/GeometriaClipping+Visualizable.swift",
        "TestFixture/TestFixture+AssertionWrapper.swift",
        "TestFixture/TestFixture+Clipping.swift",
        "TestFixture/TestFixture.swift"
      ],
      "target_dependencies" : [
        "Geometria",
        "GeometriaAlgorithms",
        "GeometriaClipping"
      ],
      "type" : "library"
    },
    {
      "c99name" : "GeometriaTests",
      "module_type" : "SwiftTarget",
      "name" : "GeometriaTests",
      "path" : "Tests/GeometriaTests",
      "sources" : [
        "2D/AABB2Tests.swift",
        "2D/Circle2Tests.swift",
        "2D/CircleArc2Tests.swift",
        "2D/DirectionalRay2Tests.swift",
        "2D/EdgeInsets2Tests.swift",
        "2D/Ellipse2Tests.swift",
        "2D/Hyperplane2Tests.swift",
        "2D/Line2Tests.swift",
        "2D/LinePolygon2Tests.swift",
        "2D/LineSegment2Tests.swift",
        "2D/Protocols/BaseGeometry/VolumetricType+2DTests.swift",
        "2D/Protocols/Line/Line2FloatingPointTests.swift",
        "2D/Protocols/Line/Line2RealTests.swift",
        "2D/Protocols/Line/Line2SignedTests.swift",
        "2D/Protocols/Plane/PlaneIntersectablePlane2TypeTests.swift",
        "2D/Protocols/Rectangle/ConstructableRectangleType+2DTests.swift",
        "2D/Protocols/Rectangle/DivisibleRectangleType+2DTests.swift",
        "2D/Protocols/Rectangle/RectangleType+2DTests.swift",
        "2D/Protocols/Vector/Vector2FloatingPointTests.swift",
        "2D/Protocols/Vector/Vector2MultiplicativeTests.swift",
        "2D/Protocols/Vector/Vector2TypeTests.swift",
        "2D/Ray2Tests.swift",
        "2D/Rectangle2Tests.swift",
        "2D/RoundRectangle2Tests.swift",
        "2D/SIMD/SIMD2+DoubleTests.swift",
        "2D/Square2Tests.swift",
        "2D/Triangle2Tests.swift",
        "2D/Vector2+DoubleTests.swift",
        "2D/Vector2+FloatTests.swift",
        "2D/Vector2Tests.swift",
        "3D/Capsule3Tests.swift",
        "3D/Cube3Tests.swift",
        "3D/Cylinder3Tests.swift",
        "3D/DirectionalRay3Tests.swift",
        "3D/Disk3Tests.swift",
        "3D/Ellipse3Tests.swift",
        "3D/Hyperplane3Tests.swift",
        "3D/Line3Tests.swift",
        "3D/LineSegment3Tests.swift",
        "3D/ProjectivePointNormalPlane3Tests.swift",
        "3D/Protocols/BaseGeometry/VolumetricType+3DTests.swift",
        "3D/Protocols/Line/Line3FloatingPointTests.swift",
        "3D/Protocols/Plane/PlaneIntersectablePlane3TypeTests.swift",
        "3D/Protocols/Vector/Vector3AdditiveTests.swift",
        "3D/Protocols/Vector/Vector3FloatingPointTests.swift",
        "3D/Protocols/Vector/Vector3MultiplicativeTests.swift",
        "3D/Protocols/Vector/Vector3TypeTests.swift",
        "3D/Ray3Tests.swift",
        "3D/RotationMatrix3Tests.swift",
        "3D/SIMD/SIMD3+DoubleTests.swift",
        "3D/Sphere3Tests.swift",
        "3D/Torus3Tests.swift",
        "3D/Triangle3Tests.swift",
        "3D/Vector3Tests.swift",
        "4D/Protocols/Vector/Vector4AdditiveTests.swift",
        "4D/Protocols/Vector/Vector4FloatingPointTests.swift",
        "4D/Protocols/Vector/Vector4TypeTests.swift",
        "4D/SIMD/SIMD4+DoubleTests.swift",
        "4D/Vector4Tests.swift",
        "Angles/AngleSweepTests.swift",
        "Angles/AngleTests.swift",
        "Generalized/AABBTests.swift",
        "Generalized/ConvexLineIntersectionTests.swift",
        "Generalized/DirectionalRayTests.swift",
        "Generalized/EllipsoidTests.swift",
        "Generalized/HyperplaneTests.swift",
        "Generalized/LinePolygonTests.swift",
        "Generalized/LineSegmentTests.swift",
        "Generalized/LineTests.swift",
        "Generalized/NCapsuleTests.swift",
        "Generalized/NRectangleTests.swift",
        "Generalized/NSphereTests.swift",
        "Generalized/NSquareTests.swift",
        "Generalized/PointCloudTests.swift",
        "Generalized/PointNormalPlaneTests.swift",
        "Generalized/PointNormalTests.swift",
        "Generalized/Property Wrappers/UnitVectorTests.swift",
        "Generalized/Protocols/Geometry/PointProjectableTypeTests.swift",
        "Generalized/Protocols/Geometry/VolumetricTypeTests.swift",
        "Generalized/Protocols/Line/LineCategoryTests.swift",
        "Generalized/Protocols/Line/LineDivisibleTests.swift",
        "Generalized/Protocols/Line/LineFloatingPointTests.swift",
        "Generalized/Protocols/Plane/LineIntersectablePlaneTypeTests.swift",
        "Generalized/Protocols/Plane/PointProjectablePlaneTypeTests.swift",
        "Generalized/Protocols/Rectangle/AdditiveRectangleTypeTests.swift",
        "Generalized/Protocols/Rectangle/ConstructableRectangleTypeTests.swift",
        "Generalized/Protocols/Rectangle/DivisibleRectangleTypeTests.swift",
        "Generalized/Protocols/Vector/VectorAdditiveTests.swift",
        "Generalized/Protocols/Vector/VectorComparableTests.swift",
        "Generalized/Protocols/Vector/VectorDivisibleTests.swift",
        "Generalized/Protocols/Vector/VectorFloatingPointTests.swift",
        "Generalized/Protocols/Vector/VectorMultiplicativeTests.swift",
        "Generalized/Protocols/Vector/VectorSignedTests.swift",
        "Generalized/Protocols/Vector/VectorTakeableTests.swift",
        "Generalized/RayTests.swift",
        "Generalized/RoundNRectangleTests.swift",
        "Generalized/Triangle+CoordinatesTests.swift",
        "Generalized/TriangleTests.swift",
        "Matrices/Matrix2x2Tests.swift",
        "Matrices/Matrix3x2Tests.swift",
        "Matrices/Matrix3x3Tests.swift",
        "Matrices/Matrix4x4Tests.swift",
        "Matrices/Protocols/MatrixTypeTests.swift",
        "PerformanceTests.swift",
        "Utils/Comparable+ClampTests.swift",
        "Utils/SignedNumeric+SignTests.swift"
      ],
      "target_dependencies" : [
        "Geometria",
        "TestCommons"
      ],
      "type" : "test"
    },
    {
      "c99name" : "GeometriaClippingTests",
      "module_type" : "SwiftTarget",
      "name" : "GeometriaClippingTests",
      "path" : "Tests/GeometriaClippingTests",
      "product_dependencies" : [
        "Numerics"
      ],
      "sources" : [
        "2D/Boolean/ExclusiveDisjunction2ParametricTests.swift",
        "2D/Boolean/Intersection2ParametricTests.swift",
        "2D/Boolean/Subtraction2ParametricTests.swift",
        "2D/Boolean/Union2ParametricTests.swift",
        "2D/Geometry/Capsule2ParametricTests.swift",
        "2D/Geometry/Circle2ParametricTests.swift",
        "2D/Geometry/Compound2ParametricTests.swift",
        "2D/Geometry/LinePolygon2ParametricTests.swift",
        "2D/Graph/Simplex2Graph+CreationTests.swift",
        "2D/Parametric2ContourTests.swift",
        "2D/Parametric2GeometrySimplexTests.swift",
        "2D/Protocols/ParametricClip2GeometryTests.swift",
        "2D/Simplexes/CircleArc2SimplexTests.swift",
        "2D/Simplexes/LineSegment2SimplexTests.swift",
        "TestSupport/Capsule2Parametric+Tests.swift",
        "TestSupport/Circle2Parametric+Tests.swift",
        "TestSupport/LinePolygon2Parametric+Tests.swift",
        "Utils/OrderedSet+ExtTests.swift",
        "Utils/Set+ExtTests.swift"
      ],
      "target_dependencies" : [
        "GeometriaClipping",
        "TestCommons"
      ],
      "type" : "test"
    },
    {
      "c99name" : "GeometriaClipping",
      "module_type" : "SwiftTarget",
      "name" : "GeometriaClipping",
      "path" : "Sources/GeometriaClipping",
      "product_dependencies" : [
        "Numerics",
        "MiniDigraph",
        "OrderedCollections"
      ],
      "product_memberships" : [
        "GeometriaClipping"
      ],
      "sources" : [
        "2D/Boolean/ContourManager.swift",
        "2D/Boolean/ExclusiveDisjunction2Parametric.swift",
        "2D/Boolean/Intersection2Parametric.swift",
        "2D/Boolean/Subtraction2Parametric.swift",
        "2D/Boolean/Union2Parametric.swift",
        "2D/Geometry/Capsule2Parametric.swift",
        "2D/Geometry/Circle2Parametric.swift",
        "2D/Geometry/Compound2Periodic.swift",
        "2D/Geometry/LinePolygon2Parametric.swift",
        "2D/Graph/Simplex2Graph+Creation.swift",
        "2D/Graph/Simplex2Graph+Recombining.swift",
        "2D/Graph/Simplex2Graph.swift",
        "2D/Parametric2Contour.swift",
        "2D/Parametric2GeometrySimplex.swift",
        "2D/Protocols/Boolean/Boolean2Parametric.swift",
        "2D/Protocols/Parametric2Simplex.swift",
        "2D/Protocols/ParametricClip2Geometry.swift",
        "2D/Protocols/ParametricClip2Intersection.swift",
        "2D/Simplexes/CircleArc2Simplex.swift",
        "2D/Simplexes/LineSegment2Simplex.swift",
        "Generalized/Protocols/ParametricClipGeometry.swift",
        "Generalized/Protocols/ParametricSimplex.swift",
        "Utils/FloatingPoint+Ext.swift",
        "Utils/OrderedSet+Ext.swift",
        "Utils/Set+Ext.swift",
        "Utils/Vector2FloatingPoint+Ext.swift"
      ],
      "target_dependencies" : [
        "Geometria",
        "GeometriaAlgorithms"
      ],
      "type" : "library"
    },
    {
      "c99name" : "GeometriaAlgorithmsTests",
      "module_type" : "SwiftTarget",
      "name" : "GeometriaAlgorithmsTests",
      "path" : "Tests/GeometriaAlgorithmsTests",
      "product_dependencies" : [
        "Numerics"
      ],
      "sources" : [
        "2D/Ellipse2Tests.swift",
        "2D/PointCloud2Tests.swift",
        "SpatialPartitioning/KDTree/KDTreeTests.swift",
        "SpatialPartitioning/SpatialTree/SpatialTreeTests.swift",
        "TestUtils.swift",
        "TestUtils/MersenneTwister+Geometria.swift",
        "TestUtils/MersenneTwister.swift",
        "TestUtils/SequenceAsserter.swift"
      ],
      "target_dependencies" : [
        "GeometriaAlgorithms",
        "TestCommons"
      ],
      "type" : "test"
    },
    {
      "c99name" : "GeometriaAlgorithms",
      "module_type" : "SwiftTarget",
      "name" : "GeometriaAlgorithms",
      "path" : "Sources/GeometriaAlgorithms",
      "product_dependencies" : [
        "Numerics"
      ],
      "product_memberships" : [
        "GeometriaAlgorithms",
        "GeometriaClipping"
      ],
      "sources" : [
        "2D/Ellipse2.swift",
        "2D/PointCloud2.swift",
        "2D/SpatialPartitioning/QuadTree.swift",
        "3D/SpatialPartitioning/Octree.swift",
        "SpatialPartitioning/KDTree/KDTree.swift",
        "SpatialPartitioning/SpatialTree/Protocols/SpatialTreeType.swift",
        "SpatialPartitioning/SpatialTree/SpatialTree.swift"
      ],
      "target_dependencies" : [
        "Geometria"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Geometria",
      "module_type" : "SwiftTarget",
      "name" : "Geometria",
      "path" : "Sources/Geometria",
      "product_dependencies" : [
        "Numerics"
      ],
      "product_memberships" : [
        "Geometria",
        "GeometriaAlgorithms",
        "GeometriaClipping"
      ],
      "sources" : [
        "2D/AABB2.swift",
        "2D/Circle2.swift",
        "2D/CircleArc2.swift",
        "2D/ClosedShape2Intersection.swift",
        "2D/DirectionalRay2.swift",
        "2D/EdgeInsets2.swift",
        "2D/Ellipse2.swift",
        "2D/Hyperplane2.swift",
        "2D/Line2.swift",
        "2D/LineIntersectionResult.swift",
        "2D/LinePolygon2.swift",
        "2D/LineSegment2.swift",
        "2D/PointCloud2.swift",
        "2D/PointNormalPlane2.swift",
        "2D/Protocols/BaseGeometry/Convex2Type.swift",
        "2D/Protocols/BaseGeometry/VolumetricType+2D.swift",
        "2D/Protocols/Line/Line2FloatingPoint.swift",
        "2D/Protocols/Line/Line2Multiplicative.swift",
        "2D/Protocols/Line/Line2Real.swift",
        "2D/Protocols/Line/Line2Signed.swift",
        "2D/Protocols/Line/Line2Type.swift",
        "2D/Protocols/Plane/PlaneIntersectablePlane2Type.swift",
        "2D/Protocols/Rectangle/ConstructableRectangleType+2D.swift",
        "2D/Protocols/Rectangle/DivisibleRectangleType+2D.swift",
        "2D/Protocols/Rectangle/RectangleType+2D.swift",
        "2D/Protocols/Vector/Vector2Additive.swift",
        "2D/Protocols/Vector/Vector2FloatingPoint.swift",
        "2D/Protocols/Vector/Vector2Multiplicative.swift",
        "2D/Protocols/Vector/Vector2Real.swift",
        "2D/Protocols/Vector/Vector2Signed.swift",
        "2D/Protocols/Vector/Vector2Type.swift",
        "2D/Ray2.swift",
        "2D/Rectangle2.swift",
        "2D/RoundRectangle2.swift",
        "2D/SIMD/SIMD2+Double.swift",
        "2D/Square2.swift",
        "2D/Stadium2.swift",
        "2D/Triangle2.swift",
        "2D/Vector2+Double.swift",
        "2D/Vector2+Float.swift",
        "2D/Vector2.swift",
        "3D/AABB3.swift",
        "3D/Capsule3.swift",
        "3D/Cube3.swift",
        "3D/Cylinder3.swift",
        "3D/DirectionalRay3.swift",
        "3D/Disk3.swift",
        "3D/Ellipse3.swift",
        "3D/Hyperplane3.swift",
        "3D/Line3.swift",
        "3D/LineSegment3.swift",
        "3D/Orientation3.swift",
        "3D/PointCloud3.swift",
        "3D/PointNormalPlane3.swift",
        "3D/Projection/PlaneProjectiveSpace.swift",
        "3D/Projection/SphereCoordinates.swift",
        "3D/Projection/SphereProjectiveSpace.swift",
        "3D/ProjectivePointNormalPlane3.swift",
        "3D/Protocols/BaseGeometry/Convex3Type.swift",
        "3D/Protocols/BaseGeometry/Line3IntersectableType.swift",
        "3D/Protocols/BaseGeometry/VolumetricType+3D.swift",
        "3D/Protocols/Line/Line3FloatingPoint.swift",
        "3D/Protocols/Line/Line3Type.swift",
        "3D/Protocols/Plane/Plane3Type.swift",
        "3D/Protocols/Plane/PlaneIntersectablePlane3Type.swift",
        "3D/Protocols/Vector/Vector3Additive.swift",
        "3D/Protocols/Vector/Vector3FloatingPoint.swift",
        "3D/Protocols/Vector/Vector3Multiplicative.swift",
        "3D/Protocols/Vector/Vector3Real.swift",
        "3D/Protocols/Vector/Vector3Type.swift",
        "3D/Ray3.swift",
        "3D/RotationMatrix3.swift",
        "3D/RotationOrder3.swift",
        "3D/SIMD/SIMD3+Double.swift",
        "3D/Sphere3.swift",
        "3D/Torus3.swift",
        "3D/Triangle3.swift",
        "3D/Vector3.swift",
        "4D/Hyperplane4.swift",
        "4D/Protocols/Vector/Vector4Additive.swift",
        "4D/Protocols/Vector/Vector4FloatingPoint.swift",
        "4D/Protocols/Vector/Vector4Type.swift",
        "4D/SIMD/SIMD4+Double.swift",
        "4D/Vector4.swift",
        "Angles/Angle.swift",
        "Angles/AngleSweep.swift",
        "Generalized/AABB.swift",
        "Generalized/ConvexLineIntersection.swift",
        "Generalized/DirectionalRay.swift",
        "Generalized/Ellipsoid.swift",
        "Generalized/Hyperplane.swift",
        "Generalized/Line.swift",
        "Generalized/LineIntersection.swift",
        "Generalized/LineIntersectionPointNormal.swift",
        "Generalized/LinePolygon.swift",
        "Generalized/LineSegment.swift",
        "Generalized/NCapsule.swift",
        "Generalized/NRectangle.swift",
        "Generalized/NSphere.swift",
        "Generalized/NSquare.swift",
        "Generalized/PairLineIntersection.swift",
        "Generalized/PointCloud.swift",
        "Generalized/PointNormal.swift",
        "Generalized/PointNormalPlane.swift",
        "Generalized/Projection/Protocols/ProjectiveSpace.swift",
        "Generalized/Property Wrappers/UnitVector.swift",
        "Generalized/Protocols/BaseGeometry/BoundableType.swift",
        "Generalized/Protocols/BaseGeometry/ConvexType.swift",
        "Generalized/Protocols/BaseGeometry/GeometricType.swift",
        "Generalized/Protocols/BaseGeometry/LineIntersectableType.swift",
        "Generalized/Protocols/BaseGeometry/PointProjectableType.swift",
        "Generalized/Protocols/BaseGeometry/SignedDistanceMeasurableType.swift",
        "Generalized/Protocols/BaseGeometry/VolumetricType.swift",
        "Generalized/Protocols/DivisibleArithmetic.swift",
        "Generalized/Protocols/Line/LineAdditive.swift",
        "Generalized/Protocols/Line/LineCategory.swift",
        "Generalized/Protocols/Line/LineDivisible.swift",
        "Generalized/Protocols/Line/LineFloatingPoint.swift",
        "Generalized/Protocols/Line/LineMultiplicative.swift",
        "Generalized/Protocols/Line/LineReal.swift",
        "Generalized/Protocols/Line/LineSigned.swift",
        "Generalized/Protocols/Line/LineType.swift",
        "Generalized/Protocols/Plane/LineIntersectablePlaneType.swift",
        "Generalized/Protocols/Plane/PlaneType.swift",
        "Generalized/Protocols/Plane/PointProjectablePlaneType.swift",
        "Generalized/Protocols/Rectangle/AdditiveRectangleType.swift",
        "Generalized/Protocols/Rectangle/ConstructableRectangleType.swift",
        "Generalized/Protocols/Rectangle/DivisibleRectangleType.swift",
        "Generalized/Protocols/Rectangle/RectangleType.swift",
        "Generalized/Protocols/Rectangle/SelfIntersectableRectangleType.swift",
        "Generalized/Protocols/Vector/VectorAdditive.swift",
        "Generalized/Protocols/Vector/VectorComparable.swift",
        "Generalized/Protocols/Vector/VectorDivisible.swift",
        "Generalized/Protocols/Vector/VectorFloatingPoint.swift",
        "Generalized/Protocols/Vector/VectorMultiplicative.swift",
        "Generalized/Protocols/Vector/VectorReal.swift",
        "Generalized/Protocols/Vector/VectorSigned.swift",
        "Generalized/Protocols/Vector/VectorTakeable.swift",
        "Generalized/Protocols/Vector/VectorType.swift",
        "Generalized/Ray.swift",
        "Generalized/RoundNRectangle.swift",
        "Generalized/Triangle+Coordinates.swift",
        "Generalized/Triangle.swift",
        "Matrices/Matrix2x2.swift",
        "Matrices/Matrix3x2.swift",
        "Matrices/Matrix3x3.swift",
        "Matrices/Matrix4x4.swift",
        "Matrices/Protocols/MatrixType.swift",
        "Matrices/Protocols/SquareMatrixType.swift",
        "Matrices/Protocols/TransposableMatrixType.swift",
        "Utils/Comparable+Clamp.swift",
        "Utils/SignedNumeric+Sign.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/luizzak/geometria/main
Repository:               LuizZak/Geometria
Swift version used:       6.0
Target:                   Geometria
Extracting symbol information for 'Geometria'...
Finished extracting symbol information for 'Geometria'. (11.29s)
Building documentation for 'Geometria'...
warning: '75fo7' isn't a disambiguation for 'intersection(with:)' at '/Geometria/Line2FloatingPoint'
 --> Sources/Geometria/2D/LineIntersectionResult.swift:4:56-4:62
2 | /// ``Line2FloatingPoint``.
3 | ///
4 + /// - seealso: ``Line2FloatingPoint/intersection(with:)-75fo7``
  |                                                        ├─suggestion: Remove '-75fo7' for'func intersection<Line>(with other: Line) -> LineIntersectionResult<Self.Vector>? where Line : Line2FloatingPoint, Self.Vector == Line.Vector'
  |                                                        ╰─suggestion: Replace '-75fo7' with '-6qkev' for'func intersection<Line>(with other: Line) -> LineIntersectionResult<Self.Vector>? where Line : Line2FloatingPoint, Self.Vector == Line.Vector'
5 | public struct LineIntersectionResult<Vector: VectorFloatingPoint> {
6 |     /// Convenience for `Vector.Scalar`.
warning: Parameter 'lhs' not found in instance method declaration
   --> Sources/Geometria/2D/Vector2.swift:273:11-273:78
271 |     ///
272 |     /// - Parameters:
273 +     ///   - lhs: One of the vectors to multiply before adding to this vector.
    |           ╰─suggestion: Remove 'lhs' parameter documentation
274 |     ///   - rhs: The other vector to multiply.
275 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
warning: Parameter 'rhs' not found in instance method declaration
   --> Sources/Geometria/2D/Vector2.swift:274:11-274:47
272 |     /// - Parameters:
273 |     ///   - lhs: One of the vectors to multiply before adding to this vector.
274 +     ///   - rhs: The other vector to multiply.
    |           ╰─suggestion: Remove 'rhs' parameter documentation
275 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
276 |     public func addingProduct(_ a: Self, _ b: Self) -> Self {
warning: Parameter 'a' is missing documentation
   --> Sources/Geometria/2D/Vector2.swift:274:47-274:47
272 |     /// - Parameters:
273 |     ///   - lhs: One of the vectors to multiply before adding to this vector.
274 +     ///   - rhs: The other vector to multiply.
    |                                               ╰─suggestion: Document 'a' parameter
275 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
276 |     public func addingProduct(_ a: Self, _ b: Self) -> Self {
warning: Parameter 'b' is missing documentation
   --> Sources/Geometria/2D/Vector2.swift:274:47-274:47
272 |     /// - Parameters:
273 |     ///   - lhs: One of the vectors to multiply before adding to this vector.
274 +     ///   - rhs: The other vector to multiply.
    |                                               ╰─suggestion: Document 'b' parameter
275 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
276 |     public func addingProduct(_ a: Self, _ b: Self) -> Self {
warning: Parameter 'lhs' not found in instance method declaration
   --> Sources/Geometria/2D/Vector2.swift:286:11-286:68
284 |     ///
285 |     /// - Parameters:
286 +     ///   - lhs: A scalar to multiply before adding to this vector.
    |           ╰─suggestion: Remove 'lhs' parameter documentation
287 |     ///   - rhs: A vector to multiply.
288 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
warning: Parameter 'rhs' not found in instance method declaration
   --> Sources/Geometria/2D/Vector2.swift:287:11-287:39
285 |     /// - Parameters:
286 |     ///   - lhs: A scalar to multiply before adding to this vector.
287 +     ///   - rhs: A vector to multiply.
    |           ╰─suggestion: Remove 'rhs' parameter documentation
288 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
289 |     public func addingProduct(_ a: Scalar, _ b: Self) -> Self {
warning: Parameter 'b' is missing documentation
   --> Sources/Geometria/2D/Vector2.swift:287:39-287:39
285 |     /// - Parameters:
286 |     ///   - lhs: A scalar to multiply before adding to this vector.
287 +     ///   - rhs: A vector to multiply.
    |                                       ╰─suggestion: Document 'b' parameter
288 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
289 |     public func addingProduct(_ a: Scalar, _ b: Self) -> Self {
warning: Parameter 'a' is missing documentation
   --> Sources/Geometria/2D/Vector2.swift:287:39-287:39
285 |     /// - Parameters:
286 |     ///   - lhs: A scalar to multiply before adding to this vector.
287 +     ///   - rhs: A vector to multiply.
    |                                       ╰─suggestion: Document 'a' parameter
288 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
289 |     public func addingProduct(_ a: Scalar, _ b: Self) -> Self {
warning: Parameter 'lhs' not found in instance method declaration
   --> Sources/Geometria/2D/Vector2.swift:299:11-299:68
297 |     ///
298 |     /// - Parameters:
299 +     ///   - lhs: A vector to multiply before adding to this vector.
    |           ╰─suggestion: Remove 'lhs' parameter documentation
300 |     ///   - rhs: A scalar to multiply.
301 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
warning: Parameter 'rhs' not found in instance method declaration
   --> Sources/Geometria/2D/Vector2.swift:300:11-300:39
298 |     /// - Parameters:
299 |     ///   - lhs: A vector to multiply before adding to this vector.
300 +     ///   - rhs: A scalar to multiply.
    |           ╰─suggestion: Remove 'rhs' parameter documentation
301 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
302 |     public func addingProduct(_ a: Self, _ b: Scalar) -> Self {
warning: Parameter 'a' is missing documentation
   --> Sources/Geometria/2D/Vector2.swift:300:39-300:39
298 |     /// - Parameters:
299 |     ///   - lhs: A vector to multiply before adding to this vector.
300 +     ///   - rhs: A scalar to multiply.
    |                                       ╰─suggestion: Document 'a' parameter
301 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
302 |     public func addingProduct(_ a: Self, _ b: Scalar) -> Self {
warning: Parameter 'b' is missing documentation
   --> Sources/Geometria/2D/Vector2.swift:300:39-300:39
298 |     /// - Parameters:
299 |     ///   - lhs: A vector to multiply before adding to this vector.
300 +     ///   - rhs: A scalar to multiply.
    |                                       ╰─suggestion: Document 'b' parameter
301 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
302 |     public func addingProduct(_ a: Self, _ b: Scalar) -> Self {
warning: 'z' doesn't exist at '/Geometria/Vector3Additive/init(_:)'
 --> Sources/Geometria/3D/Protocols/Vector/Vector3Additive.swift:4:24-4:25
2 | public protocol Vector3Additive: Vector3Type, VectorAdditive where SubVector2: Vector2Additive, SubVector4: Vector4Additive {
3 |     /// Creates a new vector with the coordinates of a given ``Vector2Type``,
4 +     /// and 0 on the ``z`` axis.
5 |     init<V: Vector2Type>(_ vec: V) where V.Scalar == Scalar
6 | }
warning: Parameter 'lhs' not found in instance method declaration
   --> Sources/Geometria/3D/Vector3.swift:237:11-237:78
235 |     ///
236 |     /// - Parameters:
237 +     ///   - lhs: One of the vectors to multiply before adding to this vector.
    |           ╰─suggestion: Remove 'lhs' parameter documentation
238 |     ///   - rhs: The other vector to multiply.
239 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
warning: Parameter 'rhs' not found in instance method declaration
   --> Sources/Geometria/3D/Vector3.swift:238:11-238:47
236 |     /// - Parameters:
237 |     ///   - lhs: One of the vectors to multiply before adding to this vector.
238 +     ///   - rhs: The other vector to multiply.
    |           ╰─suggestion: Remove 'rhs' parameter documentation
239 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
240 |     @_transparent
warning: Parameter 'b' is missing documentation
   --> Sources/Geometria/3D/Vector3.swift:238:47-238:47
236 |     /// - Parameters:
237 |     ///   - lhs: One of the vectors to multiply before adding to this vector.
238 +     ///   - rhs: The other vector to multiply.
    |                                               ╰─suggestion: Document 'b' parameter
239 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
240 |     @_transparent
warning: Parameter 'a' is missing documentation
   --> Sources/Geometria/3D/Vector3.swift:238:47-238:47
236 |     /// - Parameters:
237 |     ///   - lhs: One of the vectors to multiply before adding to this vector.
238 +     ///   - rhs: The other vector to multiply.
    |                                               ╰─suggestion: Document 'a' parameter
239 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
240 |     @_transparent
warning: Parameter 'lhs' not found in instance method declaration
   --> Sources/Geometria/3D/Vector3.swift:255:11-255:68
253 |     ///
254 |     /// - Parameters:
255 +     ///   - lhs: A scalar to multiply before adding to this vector.
    |           ╰─suggestion: Remove 'lhs' parameter documentation
256 |     ///   - rhs: A vector to multiply.
257 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
warning: Parameter 'rhs' not found in instance method declaration
   --> Sources/Geometria/3D/Vector3.swift:256:11-256:39
254 |     /// - Parameters:
255 |     ///   - lhs: A scalar to multiply before adding to this vector.
256 +     ///   - rhs: A vector to multiply.
    |           ╰─suggestion: Remove 'rhs' parameter documentation
257 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
258 |     @_transparent
warning: Parameter 'b' is missing documentation
   --> Sources/Geometria/3D/Vector3.swift:256:39-256:39
254 |     /// - Parameters:
255 |     ///   - lhs: A scalar to multiply before adding to this vector.
256 +     ///   - rhs: A vector to multiply.
    |                                       ╰─suggestion: Document 'b' parameter
257 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
258 |     @_transparent
warning: Parameter 'a' is missing documentation
   --> Sources/Geometria/3D/Vector3.swift:256:39-256:39
254 |     /// - Parameters:
255 |     ///   - lhs: A scalar to multiply before adding to this vector.
256 +     ///   - rhs: A vector to multiply.
    |                                       ╰─suggestion: Document 'a' parameter
257 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
258 |     @_transparent
warning: Parameter 'lhs' not found in instance method declaration
   --> Sources/Geometria/3D/Vector3.swift:273:11-273:68
271 |     ///
272 |     /// - Parameters:
273 +     ///   - lhs: A vector to multiply before adding to this vector.
    |           ╰─suggestion: Remove 'lhs' parameter documentation
274 |     ///   - rhs: A scalar to multiply.
275 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
warning: Parameter 'rhs' not found in instance method declaration
   --> Sources/Geometria/3D/Vector3.swift:274:11-274:39
272 |     /// - Parameters:
273 |     ///   - lhs: A vector to multiply before adding to this vector.
274 +     ///   - rhs: A scalar to multiply.
    |           ╰─suggestion: Remove 'rhs' parameter documentation
275 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
276 |     @_transparent
warning: Parameter 'b' is missing documentation
   --> Sources/Geometria/3D/Vector3.swift:274:39-274:39
272 |     /// - Parameters:
273 |     ///   - lhs: A vector to multiply before adding to this vector.
274 +     ///   - rhs: A scalar to multiply.
    |                                       ╰─suggestion: Document 'b' parameter
275 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
276 |     @_transparent
warning: Parameter 'a' is missing documentation
   --> Sources/Geometria/3D/Vector3.swift:274:39-274:39
272 |     /// - Parameters:
273 |     ///   - lhs: A vector to multiply before adding to this vector.
274 +     ///   - rhs: A scalar to multiply.
    |                                       ╰─suggestion: Document 'a' parameter
275 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
276 |     @_transparent
warning: Parameter 'lhs' not found in instance method declaration
   --> Sources/Geometria/4D/Vector4.swift:270:11-270:78
268 |     ///
269 |     /// - Parameters:
270 +     ///   - lhs: One of the vectors to multiply before adding to this vector.
    |           ╰─suggestion: Remove 'lhs' parameter documentation
271 |     ///   - rhs: The other vector to multiply.
272 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
warning: Parameter 'rhs' not found in instance method declaration
   --> Sources/Geometria/4D/Vector4.swift:271:11-271:47
269 |     /// - Parameters:
270 |     ///   - lhs: One of the vectors to multiply before adding to this vector.
271 +     ///   - rhs: The other vector to multiply.
    |           ╰─suggestion: Remove 'rhs' parameter documentation
272 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
273 |     @_transparent
warning: Parameter 'a' is missing documentation
   --> Sources/Geometria/4D/Vector4.swift:271:47-271:47
269 |     /// - Parameters:
270 |     ///   - lhs: One of the vectors to multiply before adding to this vector.
271 +     ///   - rhs: The other vector to multiply.
    |                                               ╰─suggestion: Document 'a' parameter
272 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
273 |     @_transparent
warning: Parameter 'b' is missing documentation
   --> Sources/Geometria/4D/Vector4.swift:271:47-271:47
269 |     /// - Parameters:
270 |     ///   - lhs: One of the vectors to multiply before adding to this vector.
271 +     ///   - rhs: The other vector to multiply.
    |                                               ╰─suggestion: Document 'b' parameter
272 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
273 |     @_transparent
warning: Parameter 'lhs' not found in instance method declaration
   --> Sources/Geometria/4D/Vector4.swift:289:11-289:68
287 |     ///
288 |     /// - Parameters:
289 +     ///   - lhs: A scalar to multiply before adding to this vector.
    |           ╰─suggestion: Remove 'lhs' parameter documentation
290 |     ///   - rhs: A vector to multiply.
291 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
warning: Parameter 'rhs' not found in instance method declaration
   --> Sources/Geometria/4D/Vector4.swift:290:11-290:39
288 |     /// - Parameters:
289 |     ///   - lhs: A scalar to multiply before adding to this vector.
290 +     ///   - rhs: A vector to multiply.
    |           ╰─suggestion: Remove 'rhs' parameter documentation
291 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
292 |     @_transparent
warning: Parameter 'b' is missing documentation
   --> Sources/Geometria/4D/Vector4.swift:290:39-290:39
288 |     /// - Parameters:
289 |     ///   - lhs: A scalar to multiply before adding to this vector.
290 +     ///   - rhs: A vector to multiply.
    |                                       ╰─suggestion: Document 'b' parameter
291 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
292 |     @_transparent
warning: Parameter 'a' is missing documentation
   --> Sources/Geometria/4D/Vector4.swift:290:39-290:39
288 |     /// - Parameters:
289 |     ///   - lhs: A scalar to multiply before adding to this vector.
290 +     ///   - rhs: A vector to multiply.
    |                                       ╰─suggestion: Document 'a' parameter
291 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
292 |     @_transparent
warning: Parameter 'lhs' not found in instance method declaration
   --> Sources/Geometria/4D/Vector4.swift:308:11-308:68
306 |     ///
307 |     /// - Parameters:
308 +     ///   - lhs: A vector to multiply before adding to this vector.
    |           ╰─suggestion: Remove 'lhs' parameter documentation
309 |     ///   - rhs: A scalar to multiply.
310 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
warning: Parameter 'rhs' not found in instance method declaration
   --> Sources/Geometria/4D/Vector4.swift:309:11-309:39
307 |     /// - Parameters:
308 |     ///   - lhs: A vector to multiply before adding to this vector.
309 +     ///   - rhs: A scalar to multiply.
    |           ╰─suggestion: Remove 'rhs' parameter documentation
310 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
311 |     @_transparent
warning: Parameter 'b' is missing documentation
   --> Sources/Geometria/4D/Vector4.swift:309:39-309:39
307 |     /// - Parameters:
308 |     ///   - lhs: A vector to multiply before adding to this vector.
309 +     ///   - rhs: A scalar to multiply.
    |                                       ╰─suggestion: Document 'b' parameter
310 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
311 |     @_transparent
warning: Parameter 'a' is missing documentation
   --> Sources/Geometria/4D/Vector4.swift:309:39-309:39
307 |     /// - Parameters:
308 |     ///   - lhs: A vector to multiply before adding to this vector.
309 +     ///   - rhs: A scalar to multiply.
    |                                       ╰─suggestion: Document 'a' parameter
310 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
311 |     @_transparent
warning: This documentation block is inherited by other symbols where 'distance(to%3A)' fails to resolve.
  --> Sources/Geometria/Generalized/Protocols/BaseGeometry/PointProjectableType.swift:32:20-32:37
30 |     /// type's surface to a given vector.
31 |     ///
32 +     /// - seealso: ``distance(to:)``
   |                    ╰─suggestion: Use an absolute link path.
33 |     @_transparent
34 |     func distanceSquared(to vector: Vector) -> Vector.Scalar {
warning: This documentation block is inherited by other symbols where 'distance(to%3A)' fails to resolve.
  --> Sources/Geometria/Generalized/Protocols/BaseGeometry/PointProjectableType.swift:32:20-32:37
30 |     /// type's surface to a given vector.
31 |     ///
32 +     /// - seealso: ``distance(to:)``
   |                    ╰─suggestion: Use an absolute link path.
33 |     @_transparent
34 |     func distanceSquared(to vector: Vector) -> Vector.Scalar {
warning: This documentation block is inherited by other symbols where 'distance(to%3A)' fails to resolve.
  --> Sources/Geometria/Generalized/Protocols/BaseGeometry/PointProjectableType.swift:32:20-32:37
30 |     /// type's surface to a given vector.
31 |     ///
32 +     /// - seealso: ``distance(to:)``
   |                    ╰─suggestion: Use an absolute link path.
33 |     @_transparent
34 |     func distanceSquared(to vector: Vector) -> Vector.Scalar {
warning: This documentation block is inherited by other symbols where 'distanceSquared(to%3A)' fails to resolve.
  --> Sources/Geometria/Generalized/Protocols/BaseGeometry/PointProjectableType.swift:45:20-45:44
43 |     /// Equivalent to `self.distanceSquared(to: vector).squareRoot()`.
44 |     ///
45 +     /// - seealso: ``distanceSquared(to:)``
   |                    ╰─suggestion: Use an absolute link path.
46 |     @_transparent
47 |     func distance(to vector: Vector) -> Vector.Scalar {
warning: 'projectedNormalizedMagnitude(_:)-vyrp' doesn't exist at '/Geometria/LineDivisible/projectAsScalar(_:)'
  --> Sources/Geometria/Generalized/Protocols/Line/LineDivisible.swift:14:22-14:59
12 |     /// the projected point as it lays on this line can be obtained.
13 |     ///
14 +     /// - seealso: ``projectedNormalizedMagnitude(_:)-vyrp``
15 |     // TODO: Rename to include `normalized` within the definition to avoid confusions between normalized and non-normalized magnitudes
16 |     func projectAsScalar(_ vector: Vector) -> Magnitude
warning: 'project(_:)' doesn't exist at '/Geometria/LineFloatingPoint/projectUnclamped(_:)'
  --> Sources/Geometria/Generalized/Protocols/Line/LineFloatingPoint.swift:13:11-13:22
11 |     /// `a <-> b`.
12 |     ///
13 +     /// ``project(_:)``
14 |     func projectUnclamped(_ vector: Vector) -> Vector
15 |
warning: '3wyqd' isn't a disambiguation for 'distanceSquared(to:)' at '/Geometria/LineFloatingPoint'
  --> Sources/Geometria/Generalized/Protocols/Line/LineFloatingPoint.swift:61:42-61:48
59 |     /// Equivalent to `self.distanceSquared(to: vector).squareRoot()`.
60 |     ///
61 +     /// - seealso: ``distanceSquared(to:)-3wyqd``
   |                                          ╰─suggestion: Remove '-3wyqd' for'override func distanceSquared(to vector: Self.Vector) -> Self.Vector.Scalar'
62 |     func distance(to vector: Vector) -> Vector.Scalar
63 | }
warning: '7kmi0' isn't a disambiguation for 'projectUnclamped(_:)' at '/Geometria/DirectionalRay'
  --> Sources/Geometria/Generalized/Protocols/Line/LineFloatingPoint.swift:80:42-80:48
78 |     /// `a <-> b`.
79 |     ///
80 +     /// - seealso: ``projectUnclamped(_:)-7kmi0``
   |                                          ╰─suggestion: Remove '-7kmi0' for'func projectUnclamped(_ vector: Self.Vector) -> Self.Vector'
81 |     @inlinable
82 |     func project(_ vector: Vector) -> Vector {
warning: '7kmi0' isn't a disambiguation for 'projectUnclamped(_:)' at '/Geometria/Line'
  --> Sources/Geometria/Generalized/Protocols/Line/LineFloatingPoint.swift:80:42-80:48
78 |     /// `a <-> b`.
79 |     ///
80 +     /// - seealso: ``projectUnclamped(_:)-7kmi0``
   |                                          ╰─suggestion: Remove '-7kmi0' for'func projectUnclamped(_ vector: Self.Vector) -> Self.Vector'
81 |     @inlinable
82 |     func project(_ vector: Vector) -> Vector {
warning: '7kmi0' isn't a disambiguation for 'projectUnclamped(_:)' at '/Geometria/Ray'
  --> Sources/Geometria/Generalized/Protocols/Line/LineFloatingPoint.swift:80:42-80:48
78 |     /// `a <-> b`.
79 |     ///
80 +     /// - seealso: ``projectUnclamped(_:)-7kmi0``
   |                                          ╰─suggestion: Remove '-7kmi0' for'func projectUnclamped(_ vector: Self.Vector) -> Self.Vector'
81 |     @inlinable
82 |     func project(_ vector: Vector) -> Vector {
warning: '7kmi0' isn't a disambiguation for 'projectUnclamped(_:)' at '/Geometria/LineSegment'
  --> Sources/Geometria/Generalized/Protocols/Line/LineFloatingPoint.swift:80:42-80:48
78 |     /// `a <-> b`.
79 |     ///
80 +     /// - seealso: ``projectUnclamped(_:)-7kmi0``
   |                                          ╰─suggestion: Remove '-7kmi0' for'func projectUnclamped(_ vector: Self.Vector) -> Self.Vector'
81 |     @inlinable
82 |     func project(_ vector: Vector) -> Vector {
warning: Parameter 'lhs' not found in instance method declaration
  --> Sources/Geometria/Generalized/Protocols/Vector/VectorFloatingPoint.swift:27:11-27:78
25 |     ///
26 |     /// - Parameters:
27 +     ///   - lhs: One of the vectors to multiply before adding to this vector.
   |           ╰─suggestion: Remove 'lhs' parameter documentation
28 |     ///   - rhs: The other vector to multiply.
29 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
warning: Parameter 'rhs' not found in instance method declaration
  --> Sources/Geometria/Generalized/Protocols/Vector/VectorFloatingPoint.swift:28:11-28:47
26 |     /// - Parameters:
27 |     ///   - lhs: One of the vectors to multiply before adding to this vector.
28 +     ///   - rhs: The other vector to multiply.
   |           ╰─suggestion: Remove 'rhs' parameter documentation
29 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
30 |     func addingProduct(_ a: Self, _ b: Self) -> Self
warning: Parameter 'a' is missing documentation
  --> Sources/Geometria/Generalized/Protocols/Vector/VectorFloatingPoint.swift:28:47-28:47
26 |     /// - Parameters:
27 |     ///   - lhs: One of the vectors to multiply before adding to this vector.
28 +     ///   - rhs: The other vector to multiply.
   |                                               ╰─suggestion: Document 'a' parameter
29 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
30 |     func addingProduct(_ a: Self, _ b: Self) -> Self
warning: Parameter 'b' is missing documentation
  --> Sources/Geometria/Generalized/Protocols/Vector/VectorFloatingPoint.swift:28:47-28:47
26 |     /// - Parameters:
27 |     ///   - lhs: One of the vectors to multiply before adding to this vector.
28 +     ///   - rhs: The other vector to multiply.
   |                                               ╰─suggestion: Document 'b' parameter
29 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
30 |     func addingProduct(_ a: Self, _ b: Self) -> Self
warning: Parameter 'lhs' not found in instance method declaration
  --> Sources/Geometria/Generalized/Protocols/Vector/VectorFloatingPoint.swift:38:11-38:68
36 |     ///
37 |     /// - Parameters:
38 +     ///   - lhs: A scalar to multiply before adding to this vector.
   |           ╰─suggestion: Remove 'lhs' parameter documentation
39 |     ///   - rhs: A vector to multiply.
40 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
warning: Parameter 'rhs' not found in instance method declaration
  --> Sources/Geometria/Generalized/Protocols/Vector/VectorFloatingPoint.swift:39:11-39:39
37 |     /// - Parameters:
38 |     ///   - lhs: A scalar to multiply before adding to this vector.
39 +     ///   - rhs: A vector to multiply.
   |           ╰─suggestion: Remove 'rhs' parameter documentation
40 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
41 |     func addingProduct(_ a: Scalar, _ b: Self) -> Self
warning: Parameter 'a' is missing documentation
  --> Sources/Geometria/Generalized/Protocols/Vector/VectorFloatingPoint.swift:39:39-39:39
37 |     /// - Parameters:
38 |     ///   - lhs: A scalar to multiply before adding to this vector.
39 +     ///   - rhs: A vector to multiply.
   |                                       ╰─suggestion: Document 'a' parameter
40 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
41 |     func addingProduct(_ a: Scalar, _ b: Self) -> Self
warning: Parameter 'b' is missing documentation
  --> Sources/Geometria/Generalized/Protocols/Vector/VectorFloatingPoint.swift:39:39-39:39
37 |     /// - Parameters:
38 |     ///   - lhs: A scalar to multiply before adding to this vector.
39 +     ///   - rhs: A vector to multiply.
   |                                       ╰─suggestion: Document 'b' parameter
40 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
41 |     func addingProduct(_ a: Scalar, _ b: Self) -> Self
warning: Parameter 'lhs' not found in instance method declaration
  --> Sources/Geometria/Generalized/Protocols/Vector/VectorFloatingPoint.swift:49:11-49:68
47 |     ///
48 |     /// - Parameters:
49 +     ///   - lhs: A vector to multiply before adding to this vector.
   |           ╰─suggestion: Remove 'lhs' parameter documentation
50 |     ///   - rhs: A scalar to multiply.
51 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
warning: Parameter 'rhs' not found in instance method declaration
  --> Sources/Geometria/Generalized/Protocols/Vector/VectorFloatingPoint.swift:50:11-50:39
48 |     /// - Parameters:
49 |     ///   - lhs: A vector to multiply before adding to this vector.
50 +     ///   - rhs: A scalar to multiply.
   |           ╰─suggestion: Remove 'rhs' parameter documentation
51 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
52 |     func addingProduct(_ a: Self, _ b: Scalar) -> Self
warning: Parameter 'b' is missing documentation
  --> Sources/Geometria/Generalized/Protocols/Vector/VectorFloatingPoint.swift:50:39-50:39
48 |     /// - Parameters:
49 |     ///   - lhs: A vector to multiply before adding to this vector.
50 +     ///   - rhs: A scalar to multiply.
   |                                       ╰─suggestion: Document 'b' parameter
51 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
52 |     func addingProduct(_ a: Self, _ b: Scalar) -> Self
warning: Parameter 'a' is missing documentation
  --> Sources/Geometria/Generalized/Protocols/Vector/VectorFloatingPoint.swift:50:39-50:39
48 |     /// - Parameters:
49 |     ///   - lhs: A vector to multiply before adding to this vector.
50 +     ///   - rhs: A scalar to multiply.
   |                                       ╰─suggestion: Document 'a' parameter
51 |     /// - Returns: The product of `lhs` and `rhs`, added to this vector.
52 |     func addingProduct(_ a: Self, _ b: Scalar) -> Self
warning: Parameter 'result' not found in type method declaration
   --> Sources/Geometria/Matrices/Matrix3x2.swift:437:9-438:25
435 |     /// - Parameter angle: Angle of rotation in radians. Angles are measured
436 |     /// clockwise when looking along the rotation axis.
437 +     /// - Parameter result: When the method completes, contains the created
    |         ╰─suggestion: Remove 'result' parameter documentation
438 +     /// rotation matrix.
439 |     @available(*, deprecated, message: "Use rotation(angle: Angle<Scalar>) instead")
440 |     public static func rotation(angle: Scalar) -> Matrix3x2 {
warning: Parameter 'result' not found in type method declaration
   --> Sources/Geometria/Matrices/Matrix3x2.swift:454:9-455:25
452 |     /// - Parameter angle: Angle of rotation in radians. Angles are measured
453 |     /// clockwise when looking along the rotation axis.
454 +     /// - Parameter result: When the method completes, contains the created
    |         ╰─suggestion: Remove 'result' parameter documentation
455 +     /// rotation matrix.
456 |     public static func rotation(angle: Angle<Scalar>) -> Matrix3x2 {
457 |         let cosAngle = angle.cos
warning: Parameter 'result' not found in type method declaration
   --> Sources/Geometria/Matrices/Matrix3x2.swift:489:9-490:28
487 |     ///
488 |     /// - Parameter value: The offset for both coordinate planes.
489 +     /// - Parameter result: When the method completes, contains the created
    |         ╰─suggestion: Remove 'result' parameter documentation
490 +     /// translation matrix.
491 |     public static func translation(_ value: Vector) -> Matrix3x2 {
492 |         translation(x: value.x, y: value.y)
warning: Parameter 'result' not found in type method declaration
   --> Sources/Geometria/Matrices/Matrix3x2.swift:599:9-599:101
597 |     ///
598 |     /// - Parameter value: The matrix whose inverse is to be calculated.
599 +     /// - Parameter result: When the method completes, contains the inverse of the specified matrix.
    |         ╰─suggestion: Remove 'result' parameter documentation
600 |     public static func invert(_ value: Matrix3x2) -> Matrix3x2 {
601 |         let determinant = value.determinant()Finished building documentation for 'Geometria' (1.41s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/luizzak/geometria/main
Fetching https://github.com/swiftlang/swift-docc-plugin
Updating https://github.com/apple/swift-collections.git
Updated https://github.com/apple/swift-collections.git (0.59s)
[1/2038] Fetching swift-docc-plugin
Updating https://github.com/apple/swift-numerics
Updating https://github.com/LuizZak/MiniDigraph.git
Updating https://github.com/LuizZak/MiniP5Printer
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.36s)
Updated https://github.com/LuizZak/MiniDigraph.git (0.52s)
Updated https://github.com/LuizZak/MiniP5Printer (0.52s)
Updated https://github.com/apple/swift-numerics (0.52s)
Computing version for https://github.com/LuizZak/MiniDigraph.git
Computed https://github.com/LuizZak/MiniDigraph.git at 0.8.1 (0.50s)
Computing version for https://github.com/LuizZak/MiniP5Printer.git
Computed https://github.com/LuizZak/MiniP5Printer.git at 0.0.2 (0.48s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.1.2 (0.75s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.2 (0.65s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.70s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3143] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.26s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.72s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write sources
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--4A847ED0836F2485.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit Mixin+Equals.swift
[8/57] Compiling SymbolKit Mixin+Hash.swift
[9/57] Compiling SymbolKit Mixin.swift
[10/57] Compiling SymbolKit LineList.swift
[11/57] Compiling SymbolKit Position.swift
[12/57] Compiling SymbolKit GenericConstraint.swift
[13/57] Compiling SymbolKit GenericParameter.swift
[14/57] Compiling SymbolKit Generics.swift
[15/57] Compiling SymbolKit Namespace.swift
[16/57] Compiling SymbolKit SemanticVersion.swift
[17/57] Compiling SymbolKit AccessControl.swift
[18/57] Compiling SymbolKit Availability.swift
[19/57] Compiling SymbolKit AvailabilityItem.swift
[20/57] Compiling SymbolKit Domain.swift
[21/57] Compiling SymbolKit SourceRange.swift
[22/57] Compiling SymbolKit Metadata.swift
[23/57] Compiling SymbolKit Module.swift
[24/57] Compiling SymbolKit OperatingSystem.swift
[25/57] Compiling SymbolKit Platform.swift
[26/57] Compiling SymbolKit Identifier.swift
[27/57] Compiling SymbolKit KindIdentifier.swift
[28/57] Compiling SymbolKit Location.swift
[29/57] Compiling SymbolKit Mutability.swift
[30/57] Compiling SymbolKit Relationship.swift
[31/57] Compiling SymbolKit RelationshipKind.swift
[32/57] Compiling SymbolKit SourceOrigin.swift
[33/57] Compiling SymbolKit GenericConstraints.swift
[34/57] Compiling SymbolKit Swift.swift
[35/57] Compiling SymbolKit DeclarationFragments.swift
[36/57] Compiling SymbolKit Fragment.swift
[37/57] Compiling SymbolKit FragmentKind.swift
[38/57] Compiling SymbolKit FunctionParameter.swift
[39/57] Compiling SymbolKit FunctionSignature.swift
[40/57] Compiling SymbolKit Names.swift
[41/57] Compiling SymbolKit SPI.swift
[42/57] Compiling SymbolKit Snippet.swift
[43/57] Compiling SymbolKit Extension.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets SnippetParser.swift
[53/57] Compiling Snippets Snippet.swift
[54/57] Emitting module Snippets
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SnippetBuildCommand.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.10s)
Building for debugging...
[0/1] Write swift-version--4A847ED0836F2485.txt
[2/11] Compiling RealModule Real.swift
[3/12] Compiling RealModule ElementaryFunctions.swift
[4/12] Compiling RealModule Float16+Real.swift
[5/12] Compiling RealModule Float80+Real.swift
[6/12] Compiling RealModule Float+Real.swift
[7/12] Compiling RealModule AlgebraicField.swift
[8/12] Compiling RealModule ApproximateEquality.swift
[9/12] Compiling RealModule AugmentedArithmetic.swift
[10/12] Compiling RealModule Double+Real.swift
[11/12] Compiling RealModule RealFunctions.swift
[12/12] Emitting module RealModule
[13/17] Compiling ComplexModule Complex.swift
[14/17] Compiling ComplexModule Differentiable.swift
[15/17] Compiling ComplexModule ElementaryFunctions.swift
[16/17] Compiling ComplexModule Arithmetic.swift
[17/17] Emitting module ComplexModule
[18/19] Compiling Numerics Numerics.swift
[19/19] Emitting module Numerics
[20/157] Compiling Geometria LineIntersection.swift
[21/157] Compiling Geometria LineIntersectionPointNormal.swift
[22/157] Compiling Geometria LinePolygon.swift
[23/157] Compiling Geometria LineSegment.swift
[24/157] Compiling Geometria NCapsule.swift
[25/157] Compiling Geometria NRectangle.swift
[26/157] Compiling Geometria NSphere.swift
[27/157] Compiling Geometria NSquare.swift
[28/157] Compiling Geometria PairLineIntersection.swift
[29/157] Compiling Geometria PointCloud.swift
[30/157] Compiling Geometria PointNormal.swift
[31/157] Compiling Geometria PointNormalPlane.swift
[32/157] Compiling Geometria ProjectiveSpace.swift
[33/157] Compiling Geometria UnitVector.swift
[34/157] Compiling Geometria BoundableType.swift
[35/157] Compiling Geometria AABB2.swift
[36/157] Compiling Geometria Circle2.swift
[37/157] Compiling Geometria CircleArc2.swift
[38/157] Compiling Geometria ClosedShape2Intersection.swift
[39/157] Compiling Geometria DirectionalRay2.swift
[40/157] Compiling Geometria EdgeInsets2.swift
[41/157] Compiling Geometria Ellipse2.swift
[42/157] Compiling Geometria Hyperplane2.swift
[43/157] Compiling Geometria Line2.swift
[44/157] Compiling Geometria LineIntersectionResult.swift
[45/157] Compiling Geometria LinePolygon2.swift
[46/157] Compiling Geometria LineSegment2.swift
[47/157] Compiling Geometria PointCloud2.swift
[48/157] Compiling Geometria PointNormalPlane2.swift
[49/157] Compiling Geometria Convex2Type.swift
[50/157] Compiling Geometria VolumetricType+2D.swift
[51/157] Compiling Geometria Line2FloatingPoint.swift
[52/157] Compiling Geometria Line2Multiplicative.swift
[53/157] Compiling Geometria Line2Real.swift
[54/157] Compiling Geometria Line2Signed.swift
[55/157] Compiling Geometria Line2Type.swift
[56/157] Compiling Geometria PlaneIntersectablePlane2Type.swift
[57/157] Compiling Geometria ConstructableRectangleType+2D.swift
[58/157] Compiling Geometria DivisibleRectangleType+2D.swift
[59/157] Compiling Geometria RectangleType+2D.swift
[60/157] Compiling Geometria Vector2Additive.swift
[61/157] Compiling Geometria Vector2FloatingPoint.swift
[62/157] Compiling Geometria Vector2Multiplicative.swift
[63/157] Compiling Geometria Vector2Real.swift
[64/157] Compiling Geometria Vector2Signed.swift
[65/157] Compiling Geometria Vector2Type.swift
[66/157] Compiling Geometria Ray2.swift
[67/157] Compiling Geometria ConvexType.swift
[68/157] Compiling Geometria GeometricType.swift
[69/157] Compiling Geometria LineIntersectableType.swift
[70/157] Compiling Geometria PointProjectableType.swift
[71/157] Compiling Geometria SignedDistanceMeasurableType.swift
[72/157] Compiling Geometria VolumetricType.swift
[73/157] Compiling Geometria DivisibleArithmetic.swift
[74/157] Compiling Geometria LineAdditive.swift
[75/157] Compiling Geometria LineCategory.swift
[76/157] Compiling Geometria LineDivisible.swift
[77/157] Compiling Geometria LineFloatingPoint.swift
[78/157] Compiling Geometria LineMultiplicative.swift
[79/157] Compiling Geometria LineReal.swift
[80/157] Compiling Geometria LineSigned.swift
[81/157] Compiling Geometria LineType.swift
[82/172] Compiling Geometria Ellipse3.swift
[83/172] Compiling Geometria Hyperplane3.swift
[84/172] Compiling Geometria Line3.swift
[85/172] Compiling Geometria LineSegment3.swift
[86/172] Compiling Geometria Orientation3.swift
[87/172] Compiling Geometria PointCloud3.swift
[88/172] Compiling Geometria PointNormalPlane3.swift
[89/172] Compiling Geometria PlaneProjectiveSpace.swift
[90/172] Compiling Geometria SphereCoordinates.swift
[91/172] Compiling Geometria SphereProjectiveSpace.swift
[92/172] Compiling Geometria ProjectivePointNormalPlane3.swift
[93/172] Compiling Geometria Convex3Type.swift
[94/172] Compiling Geometria Line3IntersectableType.swift
[95/172] Compiling Geometria VolumetricType+3D.swift
[96/172] Compiling Geometria Line3FloatingPoint.swift
[97/172] Compiling Geometria Line3Type.swift
[98/172] Compiling Geometria Plane3Type.swift
[99/172] Compiling Geometria PlaneIntersectablePlane3Type.swift
[100/172] Compiling Geometria Vector3Additive.swift
[101/172] Compiling Geometria Vector3FloatingPoint.swift
[102/172] Compiling Geometria Vector3Multiplicative.swift
[103/172] Compiling Geometria Vector3Real.swift
[104/172] Compiling Geometria Vector3Type.swift
[105/172] Compiling Geometria Ray3.swift
[106/172] Compiling Geometria RotationMatrix3.swift
[107/172] Compiling Geometria RotationOrder3.swift
[108/172] Compiling Geometria SIMD3+Double.swift
[109/172] Compiling Geometria Sphere3.swift
[110/172] Compiling Geometria Torus3.swift
[111/172] Compiling Geometria Triangle3.swift
[112/172] Emitting module Geometria
[113/172] Compiling Geometria Rectangle2.swift
[114/172] Compiling Geometria RoundRectangle2.swift
[115/172] Compiling Geometria SIMD2+Double.swift
[116/172] Compiling Geometria Square2.swift
[117/172] Compiling Geometria Stadium2.swift
[118/172] Compiling Geometria Triangle2.swift
[119/172] Compiling Geometria Vector2+Double.swift
[120/172] Compiling Geometria Vector2+Float.swift
[121/172] Compiling Geometria Vector2.swift
[122/172] Compiling Geometria AABB3.swift
[123/172] Compiling Geometria Capsule3.swift
[124/172] Compiling Geometria Cube3.swift
[125/172] Compiling Geometria Cylinder3.swift
[126/172] Compiling Geometria DirectionalRay3.swift
[127/172] Compiling Geometria Disk3.swift
[128/172] Compiling Geometria Vector3.swift
[129/172] Compiling Geometria Hyperplane4.swift
[130/172] Compiling Geometria Vector4Additive.swift
[131/172] Compiling Geometria Vector4FloatingPoint.swift
[132/172] Compiling Geometria Vector4Type.swift
[133/172] Compiling Geometria SIMD4+Double.swift
[134/172] Compiling Geometria Vector4.swift
[135/172] Compiling Geometria Angle.swift
[136/172] Compiling Geometria AngleSweep.swift
[137/172] Compiling Geometria AABB.swift
[138/172] Compiling Geometria ConvexLineIntersection.swift
[139/172] Compiling Geometria DirectionalRay.swift
[140/172] Compiling Geometria Ellipsoid.swift
[141/172] Compiling Geometria Hyperplane.swift
[142/172] Compiling Geometria Line.swift
[143/172] Compiling Geometria LineIntersectablePlaneType.swift
[144/172] Compiling Geometria PlaneType.swift
[145/172] Compiling Geometria PointProjectablePlaneType.swift
[146/172] Compiling Geometria AdditiveRectangleType.swift
[147/172] Compiling Geometria ConstructableRectangleType.swift
[148/172] Compiling Geometria DivisibleRectangleType.swift
[149/172] Compiling Geometria RectangleType.swift
[150/172] Compiling Geometria SelfIntersectableRectangleType.swift
[151/172] Compiling Geometria VectorAdditive.swift
[152/172] Compiling Geometria VectorComparable.swift
[153/172] Compiling Geometria VectorDivisible.swift
[154/172] Compiling Geometria VectorFloatingPoint.swift
[155/172] Compiling Geometria VectorMultiplicative.swift
[156/172] Compiling Geometria VectorReal.swift
[157/172] Compiling Geometria VectorSigned.swift
[158/172] Compiling Geometria VectorTakeable.swift
[159/172] Compiling Geometria VectorType.swift
[160/172] Compiling Geometria Ray.swift
[161/172] Compiling Geometria RoundNRectangle.swift
[162/172] Compiling Geometria Triangle+Coordinates.swift
[163/172] Compiling Geometria Triangle.swift
[164/172] Compiling Geometria Matrix2x2.swift
[165/172] Compiling Geometria Matrix3x2.swift
[166/172] Compiling Geometria Matrix3x3.swift
[167/172] Compiling Geometria Matrix4x4.swift
[168/172] Compiling Geometria MatrixType.swift
[169/172] Compiling Geometria SquareMatrixType.swift
[170/172] Compiling Geometria TransposableMatrixType.swift
[171/172] Compiling Geometria Comparable+Clamp.swift
[172/172] Compiling Geometria SignedNumeric+Sign.swift
Build of target: 'Geometria' complete! (8.90s)
Target:                   GeometriaAlgorithms
Extracting symbol information for 'GeometriaAlgorithms'...
Finished extracting symbol information for 'GeometriaAlgorithms'. (1.22s)
Building documentation for 'GeometriaAlgorithms'...
warning: Parameter 'geometry' not found in initializer declaration
  --> Sources/GeometriaAlgorithms/SpatialPartitioning/SpatialTree/SpatialTree.swift:41:13-41:21
39 |     ///
40 |     /// - Parameters:
41 +     ///   - geometry: The list of geometries to pack in the spatial tree.
   |             ╰─suggestion: Replace 'geometry' with 'geometryList'
42 |     ///   - maxSubdivisions: The maximum number of subdivisions allowed in the
43 |     /// spatial tree. Takes precedence over `maxElementsPerLevelBeforeSplit` when
warning: Parameter 'geometryList' is missing documentation
  --> Sources/GeometriaAlgorithms/SpatialPartitioning/SpatialTree/SpatialTree.swift:46:84-46:84
44 |     /// splitting the spatial tree.
45 |     ///   - maxElementsPerLevelBeforeSplit: The maximum number of elements per
46 +     /// spatial tree subdivision before an attempt to subdivide it further is done.
47 |     public init(
48 |         _ geometryList: some Sequence<Element>,Finished building documentation for 'GeometriaAlgorithms' (0.19s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/luizzak/geometria/main
Building for debugging...
[0/3] Write swift-version--4A847ED0836F2485.txt
Build of product 'snippet-extract' complete! (0.27s)
Building for debugging...
[0/1] Write swift-version--4A847ED0836F2485.txt
[2/9] Compiling GeometriaAlgorithms SpatialTree.swift
[3/9] Compiling GeometriaAlgorithms QuadTree.swift
[4/9] Compiling GeometriaAlgorithms SpatialTreeType.swift
[5/9] Compiling GeometriaAlgorithms Octree.swift
[6/9] Emitting module GeometriaAlgorithms
[7/9] Compiling GeometriaAlgorithms PointCloud2.swift
[8/9] Compiling GeometriaAlgorithms Ellipse2.swift
[9/9] Compiling GeometriaAlgorithms KDTree.swift
Build of target: 'GeometriaAlgorithms' complete! (0.96s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/luizzak/geometria/main/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/luizzak/geometria/main/linkable-paths.json
Target:                   GeometriaClipping
Extracting symbol information for 'GeometriaClipping'...
Finished extracting symbol information for 'GeometriaClipping'. (3.97s)
Building documentation for 'GeometriaClipping'...
warning: 'Circle2' doesn't exist at '/GeometriaClipping/Circle2Parametric'
 --> Sources/GeometriaClipping/2D/Geometry/Circle2Parametric.swift:3:50-3:57
1 | import Geometria
2 |
3 + /// A parametric geometry that is defined by a ``Circle2`` shape.
  |                                                  ╰─suggestion: Replace 'Circle2' with 'circle2'
4 | public struct Circle2Parametric<Vector: Vector2Real>: ParametricClip2Geometry, Equatable {
5 |     public typealias Scalar = Vector.Scalar
warning: 'LinePolygon2' doesn't exist at '/GeometriaClipping/LinePolygon2Parametric'
 --> Sources/GeometriaClipping/2D/Geometry/LinePolygon2Parametric.swift:4:7-4:19
2 |
3 | /// A parametric geometry that is defined by an underlying set of vertices from a
4 + /// ``LinePolygon2`` shape.
  |       ╰─suggestion: Replace 'LinePolygon2' with 'linePolygon2'
5 | public struct LinePolygon2Parametric<Vector: Vector2Real>: ParametricClip2Geometry, Equatable {
6 |     public typealias Scalar = Vector.ScalarFinished building documentation for 'GeometriaClipping' (0.27s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/luizzak/geometria/main
Building for debugging...
[0/3] Write swift-version--4A847ED0836F2485.txt
Build of product 'snippet-extract' complete! (0.28s)
Building for debugging...
[0/1] Write swift-version--4A847ED0836F2485.txt
[2/32] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[3/32] Compiling InternalCollectionsUtilities Specialize.swift
[4/32] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[5/33] Compiling MiniDigraph SimpleDirectedGraphEdge.swift
[6/33] Compiling MiniDigraph MutableSimpleEdgeDirectedGraphType.swift
[7/33] Compiling MiniDigraph DirectedGraphVisitElement.swift
[8/33] Compiling MiniDigraph DirectedGraphRecordingVisitElement.swift
[9/34] Compiling InternalCollectionsUtilities Debugging.swift
[10/34] Compiling InternalCollectionsUtilities Descriptions.swift
[11/34] Compiling MiniDigraph DirectedGraphVisitElementType.swift
[12/34] Compiling InternalCollectionsUtilities UnsafeRawPointer extensions.swift
[13/34] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[14/34] Compiling MiniDigraph CachingDirectedGraph.swift
[15/34] Compiling MiniDigraph DirectedGraph.swift
[16/34] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[17/34] Compiling MiniDigraph Sequence+Ext.swift
[18/34] Compiling MiniDigraph MutableDirectedGraphType.swift
[19/34] Compiling MiniDigraph DirectedGraphEdge.swift
[20/34] Compiling MiniDigraph DirectedGraphType.swift
[21/34] Emitting module MiniDigraph
[28/34] Emitting module InternalCollectionsUtilities
[29/34] Compiling InternalCollectionsUtilities UInt+reversed.swift
[30/34] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[31/34] Compiling InternalCollectionsUtilities _SortedCollection.swift
[32/34] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[33/34] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[34/34] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[35/90] Compiling OrderedCollections OrderedSet+Codable.swift
[36/90] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[37/90] Compiling OrderedCollections OrderedSet+Descriptions.swift
[38/90] Compiling OrderedCollections OrderedSet+Diffing.swift
[39/90] Compiling OrderedCollections OrderedSet+Equatable.swift
[40/90] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.swift
[41/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[42/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[43/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
[44/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[45/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[46/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
[47/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[48/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[49/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[50/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[51/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[52/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[53/96] Compiling OrderedCollections OrderedSet+Hashable.swift
[54/96] Compiling OrderedCollections OrderedSet+Initializers.swift
[55/96] Compiling OrderedCollections OrderedSet+Insertions.swift
[56/96] Compiling OrderedCollections OrderedSet+Invariants.swift
[57/96] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[58/96] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[59/96] Compiling OrderedCollections OrderedDictionary+Elements.swift
[60/96] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[61/96] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
[62/96] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[63/96] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[64/96] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[65/96] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[66/96] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[67/96] Compiling OrderedCollections OrderedDictionary+Sendable.swift
[68/96] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[69/96] Compiling OrderedCollections OrderedDictionary+Values.swift
[70/96] Compiling OrderedCollections OrderedDictionary.swift
[71/96] Compiling OrderedCollections _Hashtable+Header.swift
[72/96] Compiling OrderedCollections OrderedDictionary+Codable.swift
[73/96] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[74/96] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[75/96] Compiling OrderedCollections OrderedDictionary+Descriptions.swift
[76/96] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
[77/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[78/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[79/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[80/96] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[81/96] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[82/96] Compiling OrderedCollections OrderedSet+Sendable.swift
[83/96] Compiling OrderedCollections _HashTable+Bucket.swift
[84/96] Compiling OrderedCollections _HashTable+BucketIterator.swift
[85/96] Compiling OrderedCollections _HashTable+Constants.swift
[86/96] Compiling OrderedCollections _HashTable+CustomStringConvertible.swift
[87/96] Compiling OrderedCollections _HashTable+Testing.swift
[88/96] Compiling OrderedCollections _HashTable+UnsafeHandle.swift
[89/96] Compiling OrderedCollections _HashTable.swift
[90/96] Compiling OrderedCollections OrderedSet+SubSequence.swift
[91/96] Compiling OrderedCollections OrderedSet+Testing.swift
[92/96] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[93/96] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[94/96] Compiling OrderedCollections OrderedSet.swift
[95/96] Compiling OrderedCollections _UnsafeBitset.swift
[96/96] Emitting module OrderedCollections
[97/121] Compiling GeometriaClipping FloatingPoint+Ext.swift
[98/121] Compiling GeometriaClipping OrderedSet+Ext.swift
[99/121] Compiling GeometriaClipping ParametricClipGeometry.swift
[100/121] Compiling GeometriaClipping ParametricSimplex.swift
[101/123] Compiling GeometriaClipping Parametric2Simplex.swift
[102/123] Compiling GeometriaClipping ParametricClip2Geometry.swift
[103/123] Compiling GeometriaClipping ParametricClip2Intersection.swift
[104/123] Compiling GeometriaClipping Set+Ext.swift
[105/123] Compiling GeometriaClipping Vector2FloatingPoint+Ext.swift
[106/123] Compiling GeometriaClipping Subtraction2Parametric.swift
[107/123] Compiling GeometriaClipping Union2Parametric.swift
[108/123] Compiling GeometriaClipping Capsule2Parametric.swift
[109/123] Compiling GeometriaClipping CircleArc2Simplex.swift
[110/123] Compiling GeometriaClipping LineSegment2Simplex.swift
[111/123] Compiling GeometriaClipping Parametric2Contour.swift
[112/123] Compiling GeometriaClipping Parametric2GeometrySimplex.swift
[113/123] Compiling GeometriaClipping Boolean2Parametric.swift
[114/123] Compiling GeometriaClipping ContourManager.swift
[115/123] Compiling GeometriaClipping ExclusiveDisjunction2Parametric.swift
[116/123] Compiling GeometriaClipping Intersection2Parametric.swift
[117/123] Compiling GeometriaClipping Circle2Parametric.swift
[118/123] Compiling GeometriaClipping Compound2Periodic.swift
[119/123] Compiling GeometriaClipping LinePolygon2Parametric.swift
[120/123] Compiling GeometriaClipping Simplex2Graph+Creation.swift
[121/123] Compiling GeometriaClipping Simplex2Graph+Recombining.swift
[122/123] Compiling GeometriaClipping Simplex2Graph.swift
[123/123] Emitting module GeometriaClipping
Build of target: 'GeometriaClipping' complete! (3.71s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/luizzak/geometria/main/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/luizzak/geometria/main/linkable-paths.json
    6234
39	/Users/admin/builder/spi-builder-workspace/.docs/luizzak/geometria/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/luizzak/geometria/main
File count: 6234
Doc size:   39.0MB
Preparing doc bundle ...
Uploading prod-luizzak-geometria-main-10689eca.zip to s3://spi-docs-inbox/prod-luizzak-geometria-main-10689eca.zip
Copying... [11%]
Copying... [20%]
Copying... [30%]
Copying... [41%]
Copying... [50%]
Copying... [60%]
Copying... [71%]
Copying... [80%]
Copying... [90%]
Copying... [100%]
Done.