The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of Geometria, reference main (c99025), with Swift 6.0 for macOS (SPM) on 11 Dec 2024 21:06:04 UTC.

Swift 6 data race errors: 3

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

 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/290] 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
[205/290] 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
[206/290] 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
[207/290] 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
[208/290] 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
[209/290] 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
[210/290] 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
[211/290] 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
[212/290] 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
[213/290] 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
[214/290] Compiling Geometria AABB2.swift
[215/290] Compiling Geometria Circle2.swift
[216/290] Compiling Geometria CircleArc2.swift
[217/290] Compiling Geometria ClosedShape2Intersection.swift
[218/290] Compiling Geometria DirectionalRay2.swift
[219/290] Compiling Geometria EdgeInsets2.swift
[220/290] Compiling Geometria Ellipse2.swift
[221/290] Compiling Geometria Hyperplane2.swift
[222/290] Compiling Geometria Line2.swift
[223/290] Compiling Geometria LineIntersectionResult.swift
[224/290] Compiling Geometria LinePolygon2.swift
[225/290] Compiling Geometria LineSegment2.swift
[226/290] Compiling Geometria PointCloud2.swift
[227/290] Compiling Geometria PointNormalPlane2.swift
[228/290] Compiling Geometria Convex2Type.swift
[229/290] Compiling Geometria VolumetricType+2D.swift
[231/290] Compiling Geometria Hyperplane3.swift
[232/290] Compiling Geometria Line3.swift
[233/290] Compiling Geometria LineSegment3.swift
[234/290] Compiling Geometria Orientation3.swift
[235/290] Compiling Geometria PointCloud3.swift
[236/290] Compiling Geometria PointNormalPlane3.swift
[237/290] Compiling Geometria PlaneProjectiveSpace.swift
[238/290] Compiling Geometria SphereCoordinates.swift
[239/290] Compiling Geometria SphereProjectiveSpace.swift
[240/290] Compiling Geometria ProjectivePointNormalPlane3.swift
[241/290] Compiling Geometria Convex3Type.swift
[242/290] Compiling Geometria Line3IntersectableType.swift
[243/290] Compiling Geometria VolumetricType+3D.swift
[244/290] Compiling Geometria Line3FloatingPoint.swift
[258/290] Compiling Geometria VectorReal.swift
[259/290] Compiling Geometria VectorSigned.swift
[260/290] Compiling Geometria ConvexType.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 |
[261/290] Compiling Geometria GeometricType.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 |
[262/290] Compiling Geometria LineIntersectableType.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 |
[263/290] Compiling Geometria PointProjectableType.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 |
[264/290] Compiling Geometria SignedDistanceMeasurableType.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 |
[265/290] Compiling Geometria VolumetricType.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 |
[266/290] Compiling Geometria DivisibleArithmetic.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 |
[267/290] Compiling Geometria LineAdditive.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 |
[268/290] 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 |
[269/290] 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 |
/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 |
/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 |
/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 |
/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 |
/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 |
[275/290] 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 |
[276/290] 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
[277/290] 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
[278/290] 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
[279/290] 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
[280/290] 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
[281/290] 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
[282/290] 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
[283/290] 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
[284/290] 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
[285/290] 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
[286/290] 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
[287/290] 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
[288/290] 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
[289/290] 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
[290/290] 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
[291/298] Compiling GeometriaAlgorithms SpatialTreeType.swift
[292/298] Compiling GeometriaAlgorithms SpatialTree.swift
[293/298] Compiling GeometriaAlgorithms QuadTree.swift
[294/298] Compiling GeometriaAlgorithms Ellipse2.swift
[295/298] Emitting module GeometriaAlgorithms
[296/298] Compiling GeometriaAlgorithms Octree.swift
[297/298] Compiling GeometriaAlgorithms PointCloud2.swift
[298/298] Compiling GeometriaAlgorithms KDTree.swift
[299/323] Compiling GeometriaClipping ParametricClipGeometry.swift
[300/323] Compiling GeometriaClipping ParametricSimplex.swift
[301/325] Compiling GeometriaClipping FloatingPoint+Ext.swift
[302/325] Compiling GeometriaClipping OrderedSet+Ext.swift
[303/325] Compiling GeometriaClipping Set+Ext.swift
[304/325] Compiling GeometriaClipping Vector2FloatingPoint+Ext.swift
[305/325] Compiling GeometriaClipping Parametric2Simplex.swift
[306/325] Compiling GeometriaClipping ParametricClip2Geometry.swift
[307/325] Compiling GeometriaClipping ParametricClip2Intersection.swift
[308/325] Compiling GeometriaClipping ContourManager.swift
[309/325] Compiling GeometriaClipping ExclusiveDisjunction2Parametric.swift
[310/325] Compiling GeometriaClipping Intersection2Parametric.swift
[311/325] Compiling GeometriaClipping Parametric2Contour.swift
[312/325] Compiling GeometriaClipping Parametric2GeometrySimplex.swift
[313/325] Compiling GeometriaClipping Boolean2Parametric.swift
[314/325] Compiling GeometriaClipping Subtraction2Parametric.swift
[315/325] Compiling GeometriaClipping Union2Parametric.swift
[316/325] Compiling GeometriaClipping Capsule2Parametric.swift
[317/325] Compiling GeometriaClipping Circle2Parametric.swift
[318/325] Compiling GeometriaClipping Compound2Periodic.swift
[319/325] Compiling GeometriaClipping LinePolygon2Parametric.swift
[320/325] Compiling GeometriaClipping CircleArc2Simplex.swift
[321/325] Compiling GeometriaClipping LineSegment2Simplex.swift
[322/325] Compiling GeometriaClipping Simplex2Graph+Creation.swift
[323/325] Compiling GeometriaClipping Simplex2Graph+Recombining.swift
[324/325] Compiling GeometriaClipping Simplex2Graph.swift
[325/325] Emitting module GeometriaClipping
[326/342] Compiling TestCommons TestFixture+Clipping.swift
[327/342] Compiling TestCommons TestFixture+AssertionWrapper.swift
[328/343] Compiling TestCommons Geometria+Visualizable.swift
[329/343] Compiling TestCommons GeometriaClipping+Visualizable.swift
[330/343] Compiling TestCommons StringBufferConsolePrintTarget.swift
[331/343] Compiling TestCommons MersenneTwister+Geometria.swift
[332/343] Compiling TestCommons MersenneTwister.swift
[333/343] Compiling TestCommons MiniGraphviz+Clipping.swift
[334/343] Compiling TestCommons ConsolePrintTarget.swift
[335/343] Compiling TestCommons StandardOutputConsolePrintTarget.swift
[336/343] Compiling TestCommons P5Printer+Clipping.swift
[337/343] Compiling TestCommons P5Printer.swift
[338/343] Compiling TestCommons Console+Colors.swift
[339/343] Compiling TestCommons ConsolePrintBuffer.swift
[340/343] Emitting module TestCommons
[341/343] Compiling TestCommons Assertions.swift
[342/343] Compiling TestCommons ConsolePrintBuffer+Clipping.swift
[343/343] Compiling TestCommons TestFixture.swift
Build complete! (46.82s)
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"
    },
    {
      "identity" : "minigraphviz",
      "requirement" : {
        "exact" : [
          "0.1.0"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/LuizZak/MiniGraphviz.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",
        "MiniGraphviz"
      ],
      "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",
        "MiniGraphviz+Clipping.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/ContourManagerTests.swift",
        "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
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            88815688627177b9716a01ca41da19397bd30e47 -> FETCH_HEAD
HEAD is now at 8881568 Update the artifact
Extracting symbol information for 'Geometria'...
Finished extracting symbol information for 'Geometria'. (8.70s)
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 '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 '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 '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 '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 '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 '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 '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 '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 '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: '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/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/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: '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: 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 '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 '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 '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.02s)
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
Updating https://github.com/LuizZak/MiniDigraph.git
Updated https://github.com/LuizZak/MiniDigraph.git (0.57s)
Updated https://github.com/apple/swift-collections.git (0.57s)
[1/2044] Fetching swift-docc-plugin
Updating https://github.com/LuizZak/MiniP5Printer
Updating https://github.com/apple/swift-numerics
Updating https://github.com/LuizZak/MiniGraphviz.git
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.28s)
Updated https://github.com/apple/swift-numerics (0.48s)
Updated https://github.com/LuizZak/MiniGraphviz.git (0.48s)
Updated https://github.com/LuizZak/MiniP5Printer (0.48s)
Computing version for https://github.com/LuizZak/MiniGraphviz.git
Computed https://github.com/LuizZak/MiniGraphviz.git at 0.1.0 (0.41s)
Computing version for https://github.com/LuizZak/MiniDigraph.git
Computed https://github.com/LuizZak/MiniDigraph.git at 0.8.1 (0.41s)
Computing version for https://github.com/LuizZak/MiniP5Printer.git
Computed https://github.com/LuizZak/MiniP5Printer.git at 0.0.2 (0.40s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.1.2 (0.61s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.2 (0.52s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.54s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3204] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.24s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.57s)
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
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
Building for debugging...
[0/8] Write sources
[1/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Compiling SymbolKit GenericConstraint.swift
[7/53] Compiling SymbolKit GenericParameter.swift
[8/53] Compiling SymbolKit Generics.swift
[9/53] Compiling SymbolKit Namespace.swift
[10/57] Compiling SymbolKit SemanticVersion.swift
[11/57] Compiling SymbolKit AccessControl.swift
[12/57] Compiling SymbolKit Availability.swift
[13/57] Compiling SymbolKit AvailabilityItem.swift
[14/57] Compiling SymbolKit Domain.swift
[15/57] Compiling SymbolKit Mixin+Equals.swift
[16/57] Compiling SymbolKit Mixin+Hash.swift
[17/57] Compiling SymbolKit Mixin.swift
[18/57] Compiling SymbolKit LineList.swift
[19/57] Compiling SymbolKit Position.swift
[20/57] Emitting module SymbolKit
[21/57] Compiling SymbolKit Identifier.swift
[22/57] Compiling SymbolKit KindIdentifier.swift
[23/57] Compiling SymbolKit Location.swift
[24/57] Compiling SymbolKit Mutability.swift
[25/57] Compiling SymbolKit DeclarationFragments.swift
[26/57] Compiling SymbolKit Fragment.swift
[27/57] Compiling SymbolKit FragmentKind.swift
[28/57] Compiling SymbolKit FunctionParameter.swift
[29/57] Compiling SymbolKit FunctionSignature.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 SourceRange.swift
[36/57] Compiling SymbolKit Metadata.swift
[37/57] Compiling SymbolKit Module.swift
[38/57] Compiling SymbolKit OperatingSystem.swift
[39/57] Compiling SymbolKit Platform.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 Snippet.swift
[53/57] Emitting module Snippets
[54/57] Compiling Snippets SnippetParser.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (3.52s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/11] Compiling RealModule ElementaryFunctions.swift
[3/12] Compiling RealModule Real.swift
[4/12] Compiling RealModule Float16+Real.swift
[5/12] Compiling RealModule AugmentedArithmetic.swift
[6/12] Compiling RealModule ApproximateEquality.swift
[7/12] Compiling RealModule Float80+Real.swift
[8/12] Compiling RealModule Float+Real.swift
[9/12] Compiling RealModule Double+Real.swift
[10/12] Compiling RealModule RealFunctions.swift
[11/12] Compiling RealModule AlgebraicField.swift
[12/12] Emitting module RealModule
[13/17] Compiling ComplexModule ElementaryFunctions.swift
[14/17] Compiling ComplexModule Complex.swift
[15/17] Compiling ComplexModule Differentiable.swift
[16/17] Emitting module ComplexModule
[17/17] Compiling ComplexModule Arithmetic.swift
[18/19] Emitting module Numerics
[19/19] Compiling Numerics Numerics.swift
[20/157] Compiling Geometria LineIntersectablePlaneType.swift
[21/157] Compiling Geometria PlaneType.swift
[22/157] Compiling Geometria PointProjectablePlaneType.swift
[23/157] Compiling Geometria AdditiveRectangleType.swift
[24/157] Compiling Geometria ConstructableRectangleType.swift
[25/157] Compiling Geometria DivisibleRectangleType.swift
[26/157] Compiling Geometria RectangleType.swift
[27/157] Compiling Geometria SelfIntersectableRectangleType.swift
[28/157] Compiling Geometria VectorAdditive.swift
[29/157] Compiling Geometria VectorComparable.swift
[30/157] Compiling Geometria VectorDivisible.swift
[31/157] Compiling Geometria VectorFloatingPoint.swift
[32/157] Compiling Geometria VectorMultiplicative.swift
[33/157] Compiling Geometria VectorReal.swift
[34/157] Compiling Geometria VectorSigned.swift
[35/157] Compiling Geometria Ellipse3.swift
[36/157] Compiling Geometria Hyperplane3.swift
[37/157] Compiling Geometria Line3.swift
[38/157] Compiling Geometria LineSegment3.swift
[39/157] Compiling Geometria Orientation3.swift
[40/157] Compiling Geometria PointCloud3.swift
[41/157] Compiling Geometria PointNormalPlane3.swift
[42/157] Compiling Geometria PlaneProjectiveSpace.swift
[43/157] Compiling Geometria SphereCoordinates.swift
[44/157] Compiling Geometria SphereProjectiveSpace.swift
[45/157] Compiling Geometria ProjectivePointNormalPlane3.swift
[46/157] Compiling Geometria Convex3Type.swift
[47/157] Compiling Geometria Line3IntersectableType.swift
[48/157] Compiling Geometria VolumetricType+3D.swift
[49/157] Compiling Geometria Line3FloatingPoint.swift
[50/172] Compiling Geometria Line3Type.swift
[51/172] Compiling Geometria Plane3Type.swift
[52/172] Compiling Geometria PlaneIntersectablePlane3Type.swift
[53/172] Compiling Geometria Vector3Additive.swift
[54/172] Compiling Geometria Vector3FloatingPoint.swift
[55/172] Compiling Geometria Vector3Multiplicative.swift
[56/172] Compiling Geometria Vector3Real.swift
[57/172] Compiling Geometria Vector3Type.swift
[58/172] Compiling Geometria Ray3.swift
[59/172] Compiling Geometria RotationMatrix3.swift
[60/172] Compiling Geometria RotationOrder3.swift
[61/172] Compiling Geometria SIMD3+Double.swift
[62/172] Compiling Geometria Sphere3.swift
[63/172] Compiling Geometria Torus3.swift
[64/172] Compiling Geometria Triangle3.swift
[65/172] Compiling Geometria AABB2.swift
[66/172] Compiling Geometria Circle2.swift
[67/172] Compiling Geometria CircleArc2.swift
[68/172] Compiling Geometria ClosedShape2Intersection.swift
[69/172] Compiling Geometria DirectionalRay2.swift
[70/172] Compiling Geometria EdgeInsets2.swift
[71/172] Compiling Geometria Ellipse2.swift
[72/172] Compiling Geometria Hyperplane2.swift
[73/172] Compiling Geometria Line2.swift
[74/172] Compiling Geometria LineIntersectionResult.swift
[75/172] Compiling Geometria LinePolygon2.swift
[76/172] Compiling Geometria LineSegment2.swift
[77/172] Compiling Geometria PointCloud2.swift
[78/172] Compiling Geometria PointNormalPlane2.swift
[79/172] Compiling Geometria Convex2Type.swift
[80/172] Compiling Geometria VolumetricType+2D.swift
[81/172] Compiling Geometria Rectangle2.swift
[82/172] Compiling Geometria RoundRectangle2.swift
[83/172] Compiling Geometria SIMD2+Double.swift
[84/172] Compiling Geometria Square2.swift
[85/172] Compiling Geometria Stadium2.swift
[86/172] Compiling Geometria Triangle2.swift
[87/172] Compiling Geometria Vector2+Double.swift
[88/172] Compiling Geometria Vector2+Float.swift
[89/172] Compiling Geometria Vector2.swift
[90/172] Compiling Geometria AABB3.swift
[91/172] Compiling Geometria Capsule3.swift
[92/172] Compiling Geometria Cube3.swift
[93/172] Compiling Geometria Cylinder3.swift
[94/172] Compiling Geometria DirectionalRay3.swift
[95/172] Compiling Geometria Disk3.swift
[96/172] Compiling Geometria Vector3.swift
[97/172] Compiling Geometria Hyperplane4.swift
[98/172] Compiling Geometria Vector4Additive.swift
[99/172] Compiling Geometria Vector4FloatingPoint.swift
[100/172] Compiling Geometria Vector4Type.swift
[101/172] Compiling Geometria SIMD4+Double.swift
[102/172] Compiling Geometria Vector4.swift
[103/172] Compiling Geometria Angle.swift
[104/172] Compiling Geometria AngleSweep.swift
[105/172] Compiling Geometria AABB.swift
[106/172] Compiling Geometria ConvexLineIntersection.swift
[107/172] Compiling Geometria DirectionalRay.swift
[108/172] Compiling Geometria Ellipsoid.swift
[109/172] Compiling Geometria Hyperplane.swift
[110/172] Compiling Geometria Line.swift
[111/172] Compiling Geometria ConvexType.swift
[112/172] Compiling Geometria GeometricType.swift
[113/172] Compiling Geometria LineIntersectableType.swift
[114/172] Compiling Geometria PointProjectableType.swift
[115/172] Compiling Geometria SignedDistanceMeasurableType.swift
[116/172] Compiling Geometria VolumetricType.swift
[117/172] Compiling Geometria DivisibleArithmetic.swift
[118/172] Compiling Geometria LineAdditive.swift
[119/172] Compiling Geometria LineCategory.swift
[120/172] Compiling Geometria LineDivisible.swift
[121/172] Compiling Geometria LineFloatingPoint.swift
[122/172] Compiling Geometria LineMultiplicative.swift
[123/172] Compiling Geometria LineReal.swift
[124/172] Compiling Geometria LineSigned.swift
[125/172] Compiling Geometria LineType.swift
[126/172] Compiling Geometria LineIntersection.swift
[127/172] Compiling Geometria LineIntersectionPointNormal.swift
[128/172] Compiling Geometria LinePolygon.swift
[129/172] Compiling Geometria LineSegment.swift
[130/172] Compiling Geometria NCapsule.swift
[131/172] Compiling Geometria NRectangle.swift
[132/172] Compiling Geometria NSphere.swift
[133/172] Compiling Geometria NSquare.swift
[134/172] Compiling Geometria PairLineIntersection.swift
[135/172] Compiling Geometria PointCloud.swift
[136/172] Compiling Geometria PointNormal.swift
[137/172] Compiling Geometria PointNormalPlane.swift
[138/172] Compiling Geometria ProjectiveSpace.swift
[139/172] Compiling Geometria UnitVector.swift
[140/172] Compiling Geometria BoundableType.swift
[141/172] Emitting module Geometria
[142/172] Compiling Geometria Line2FloatingPoint.swift
[143/172] Compiling Geometria Line2Multiplicative.swift
[144/172] Compiling Geometria Line2Real.swift
[145/172] Compiling Geometria Line2Signed.swift
[146/172] Compiling Geometria Line2Type.swift
[147/172] Compiling Geometria PlaneIntersectablePlane2Type.swift
[148/172] Compiling Geometria ConstructableRectangleType+2D.swift
[149/172] Compiling Geometria DivisibleRectangleType+2D.swift
[150/172] Compiling Geometria RectangleType+2D.swift
[151/172] Compiling Geometria Vector2Additive.swift
[152/172] Compiling Geometria Vector2FloatingPoint.swift
[153/172] Compiling Geometria Vector2Multiplicative.swift
[154/172] Compiling Geometria Vector2Real.swift
[155/172] Compiling Geometria Vector2Signed.swift
[156/172] Compiling Geometria Vector2Type.swift
[157/172] Compiling Geometria Ray2.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! (6.68s)
Target:                   GeometriaAlgorithms
Extracting symbol information for 'GeometriaAlgorithms'...
Finished extracting symbol information for 'GeometriaAlgorithms'. (0.94s)
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.15s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/luizzak/geometria/main
Building for debugging...
[0/3] Write swift-version--7754E27361AE5C74.txt
Build of product 'snippet-extract' complete! (0.23s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/9] Compiling GeometriaAlgorithms SpatialTreeType.swift
[3/9] Compiling GeometriaAlgorithms Octree.swift
[4/9] Compiling GeometriaAlgorithms QuadTree.swift
[5/9] Compiling GeometriaAlgorithms PointCloud2.swift
[6/9] Compiling GeometriaAlgorithms Ellipse2.swift
[7/9] Compiling GeometriaAlgorithms SpatialTree.swift
[8/9] Compiling GeometriaAlgorithms KDTree.swift
[9/9] Emitting module GeometriaAlgorithms
Build of target: 'GeometriaAlgorithms' complete! (0.72s)
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.21s)
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, CustomStringConvertible {
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, CustomStringConvertible {
6 |     public typealias Scalar = Vector.ScalarFinished building documentation for 'GeometriaClipping' (0.23s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/luizzak/geometria/main
Building for debugging...
[0/3] Write swift-version--7754E27361AE5C74.txt
Build of product 'snippet-extract' complete! (0.23s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/32] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[3/33] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[4/33] Compiling InternalCollectionsUtilities Specialize.swift
[5/33] Compiling MiniDigraph MutableSimpleEdgeDirectedGraphType.swift
[6/33] Compiling MiniDigraph SimpleDirectedGraphEdge.swift
[7/33] Compiling MiniDigraph DirectedGraphRecordingVisitElement.swift
[8/33] Compiling MiniDigraph Sequence+Ext.swift
[9/33] Compiling MiniDigraph DirectedGraphVisitElement.swift
[10/33] Compiling InternalCollectionsUtilities _SortedCollection.swift
[11/33] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[12/33] Compiling InternalCollectionsUtilities Debugging.swift
[13/33] Compiling InternalCollectionsUtilities Descriptions.swift
[14/34] Compiling MiniDigraph DirectedGraphVisitElementType.swift
[15/34] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+SE-0370.swift
[16/34] Compiling InternalCollectionsUtilities UnsafeMutablePointer+SE-0370.swift
[17/34] Compiling MiniDigraph AbstractDirectedGraph.swift
[18/34] Compiling MiniDigraph AbstractDirectedGraphEdge.swift
[19/34] Compiling MiniDigraph DirectedGraphEdge.swift
[20/34] Compiling MiniDigraph DirectedGraphType.swift
[21/34] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[22/34] Compiling MiniDigraph MutableDirectedGraphType.swift
[27/34] Emitting module MiniDigraph
[30/34] Emitting module InternalCollectionsUtilities
[31/34] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[32/34] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[33/34] Compiling InternalCollectionsUtilities UInt+reversed.swift
[34/34] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[35/90] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[36/90] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[37/90] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
[38/90] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[39/90] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[40/90] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
[41/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[42/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[43/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[44/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[45/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[46/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[47/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[48/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[49/96] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[50/96] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[51/96] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[52/96] Compiling OrderedCollections OrderedSet+Sendable.swift
[53/96] Compiling OrderedCollections OrderedSet+Codable.swift
[54/96] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[55/96] Compiling OrderedCollections OrderedSet+Descriptions.swift
[56/96] Compiling OrderedCollections OrderedSet+Diffing.swift
[57/96] Compiling OrderedCollections OrderedSet+Equatable.swift
[58/96] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.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 _Hashtable+Header.swift
[66/96] Compiling OrderedCollections OrderedDictionary+Codable.swift
[67/96] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[68/96] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[69/96] Compiling OrderedCollections OrderedDictionary+Descriptions.swift
[70/96] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
[71/96] Compiling OrderedCollections OrderedSet+Hashable.swift
[72/96] Compiling OrderedCollections OrderedSet+Initializers.swift
[73/96] Compiling OrderedCollections OrderedSet+Insertions.swift
[74/96] Compiling OrderedCollections OrderedSet+Invariants.swift
[75/96] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[76/96] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[77/96] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[78/96] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[79/96] Compiling OrderedCollections OrderedDictionary+Sendable.swift
[80/96] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[81/96] Compiling OrderedCollections OrderedDictionary+Values.swift
[82/96] Compiling OrderedCollections OrderedDictionary.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 ParametricClipGeometry.swift
[98/121] Compiling GeometriaClipping ParametricSimplex.swift
[99/121] Compiling GeometriaClipping Parametric2Simplex.swift
[100/121] Compiling GeometriaClipping ParametricClip2Geometry.swift
[101/121] Compiling GeometriaClipping ParametricClip2Intersection.swift
[102/123] Compiling GeometriaClipping Set+Ext.swift
[103/123] Compiling GeometriaClipping Vector2FloatingPoint+Ext.swift
[104/123] Compiling GeometriaClipping CircleArc2Simplex.swift
[105/123] Compiling GeometriaClipping LineSegment2Simplex.swift
[106/123] Compiling GeometriaClipping Parametric2Contour.swift
[107/123] Compiling GeometriaClipping Parametric2GeometrySimplex.swift
[108/123] Compiling GeometriaClipping Boolean2Parametric.swift
[109/123] Compiling GeometriaClipping Circle2Parametric.swift
[110/123] Compiling GeometriaClipping Compound2Periodic.swift
[111/123] Compiling GeometriaClipping LinePolygon2Parametric.swift
[112/123] Compiling GeometriaClipping FloatingPoint+Ext.swift
[113/123] Compiling GeometriaClipping OrderedSet+Ext.swift
[114/123] Compiling GeometriaClipping Simplex2Graph+Creation.swift
[115/123] Compiling GeometriaClipping Simplex2Graph+Recombining.swift
[116/123] Compiling GeometriaClipping Simplex2Graph.swift
[117/123] Compiling GeometriaClipping Subtraction2Parametric.swift
[118/123] Compiling GeometriaClipping Union2Parametric.swift
[119/123] Compiling GeometriaClipping Capsule2Parametric.swift
[120/123] Compiling GeometriaClipping ContourManager.swift
[121/123] Compiling GeometriaClipping ExclusiveDisjunction2Parametric.swift
[122/123] Compiling GeometriaClipping Intersection2Parametric.swift
[123/123] Emitting module GeometriaClipping
Build of target: 'GeometriaClipping' complete! (2.99s)
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
    6312
40	/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: 6312
Doc size:   40.0MB
Preparing doc bundle ...
Uploading prod-luizzak-geometria-main-fe45322c.zip to s3://spi-docs-inbox/prod-luizzak-geometria-main-fe45322c.zip
Copying... [10%]
Copying... [21%]
Copying... [30%]
Copying... [40%]
Copying... [51%]
Copying... [60%]
Copying... [70%]
Copying... [81%]
Copying... [90%]
Copying... [100%]
Done.