---
title: "SCNVector3EqualToVector3(_:_:)"
framework: scenekit
role: symbol
role_heading: Function
path: "scenekit/scnvector3equaltovector3(_:_:)"
---

# SCNVector3EqualToVector3(_:_:)

Returns a Boolean value that indicates whether the corresponding components of two vectors are equal.

## Declaration

```swift
func SCNVector3EqualToVector3(_ a: SCNVector3, _ b: SCNVector3) -> Bool
```

## Parameters

- `a`: The first vector.
- `b`: The second vector.

## Return Value

Return Value True if each component of a is exactly equal to b.

## Discussion

Discussion This function performs a numeric (not bitwise) comparison of each pair of component values.
