Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Sources/kvSIMD/KvQuaternions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import Foundation
/// A `Float`-element quaternion.
///
/// It's represented as a 4-element vector where first three elements are a vector (imaginary) part, fourth element is a scalar (real) part.
public struct simd_quatf : Equatable, CustomDebugStringConvertible {
public struct simd_quatf : Equatable, Sendable, CustomDebugStringConvertible {

/// A 4-element vector representation of a quaternion where first three elements are a vector (imaginary) part, fourth element is a scalar (real) part.
public var vector: simd_float4
Expand Down Expand Up @@ -326,7 +326,7 @@ public struct simd_quatf : Equatable, CustomDebugStringConvertible {
/// A `Double`-element quaternion.
///
/// It's represented as a 4-element vector where first three elements are a vector (imaginary) part, fourth element is a scalar (real) part.
public struct simd_quatd : Equatable, CustomDebugStringConvertible {
public struct simd_quatd : Equatable, Sendable, CustomDebugStringConvertible {

/// A 4-element vector representation of a quaternion where first three elements are a vector (imaginary) part, fourth element is a scalar (real) part.
public var vector: simd_double4
Expand Down