Vector4FloatingPoint
public protocol Vector4FloatingPoint : Vector4Additive, VectorFloatingPoint where Self.SubVector3 : Vector3FloatingPoint
Protocol for 4D vector types where the components are floating-point numbers
-
Initializes this
Vector4FloatingPoint
with a given binary Vector3Declaration
Swift
init<V>(_ other: V) where V : Vector4Type, V.Scalar : BinaryInteger
-
+(_:
Default implementation_: ) Default Implementation
Declaration
Swift
static func + <V>(lhs: Self, rhs: V) -> Self where V : Vector4Type, V.Scalar : BinaryInteger
-
-(_:
Default implementation_: ) Default Implementation
Declaration
Swift
static func - <V>(lhs: Self, rhs: V) -> Self where V : Vector4Type, V.Scalar : BinaryInteger
-
*(_:
Default implementation_: ) Default Implementation
Declaration
Swift
static func * <V>(lhs: Self, rhs: V) -> Self where V : Vector4Type, V.Scalar : BinaryInteger
-
Declaration
Swift
static func + <V>(lhs: V, rhs: Self) -> Self where V : Vector4Type, V.Scalar : BinaryInteger
-
Declaration
Swift
static func - <V>(lhs: V, rhs: Self) -> Self where V : Vector4Type, V.Scalar : BinaryInteger
-
Declaration
Swift
static func * <V>(lhs: V, rhs: Self) -> Self where V : Vector4Type, V.Scalar : BinaryInteger
-
+=(_:
Default implementation_: ) Default Implementation
Declaration
Swift
static func += <V>(lhs: inout Self, rhs: V) where V : Vector4Type, V.Scalar : BinaryInteger
-
-=(_:
Default implementation_: ) Default Implementation
Declaration
Swift
static func -= <V>(lhs: inout Self, rhs: V) where V : Vector4Type, V.Scalar : BinaryInteger
-
*=(_:
Default implementation_: ) Default Implementation
Declaration
Swift
static func *= <V>(lhs: inout Self, rhs: V) where V : Vector4Type, V.Scalar : BinaryInteger
-
/(_:
Default implementation_: ) Default Implementation
Declaration
Swift
static func / <V>(lhs: Self, rhs: V) -> Self where V : Vector4Type, V.Scalar : BinaryInteger
-
Declaration
Swift
static func / <V>(lhs: V, rhs: Self) -> Self where V : Vector4Type, V.Scalar : BinaryInteger
-
/=(_:
Default implementation_: ) Default Implementation
Declaration
Swift
static func /= <V>(lhs: inout Self, rhs: V) where V : Vector4Type, V.Scalar : BinaryInteger