Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Vector3EqualityComparer.Equals

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public method Equals(expected: Vector3, actual: Vector3): bool;
public bool Equals(Vector3 expected, Vector3 actual);

Parameters

expectedExpected Vector3 object.
actualActual Vector3 object to be compared with expected.

Returns

bool Returns true if expected and actual objects are equal, else false.

Description

Compares the actual and expected Vector3 objects for equality.

As shown in the example, this method will be called by NUnit when we use it with constraints.

no example available in JavaScript
using NUnit.Framework;

using UnityEngine;

using UnityEngine.TestTools.Utils;

[TestFixture]

public class Vector3Test { [Test]

public void Vector3EqualityTest() { //Custom error 10e-6f

var actual = new Vector3(10e-8f, 10e-8f, 10e-8f);

var expected = new Vector3(0f, 0f, 0f);

var comparer = new Vector3EqualityComparer(10e-6f);

Assert.That(actual, Is.EqualTo(expected).Using(comparer));

//Default error 0.0001f

actual = new Vector3(0.01f, 0.01f, 0f);

expected = new Vector3(0.01f, 0.01f, 0f);

Assert.That(actual, Is.EqualTo(expected).Using(Vector3EqualityComparer.Instance)); } }
对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答