Version: Unity 6.3 Beta (6000.3)
LanguageEnglish
  • C#

Vector4.operator /

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 static Vector4 operator /(ref Vector4 a, float d);

Description

Divides a vector by a number.

Divides each component of a by a number d.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { //Prints (0.5, 1.0, 1.5, 2.5) print(new Vector4(1, 2, 3, 5) / 2); } }

public static Vector4 operator /(ref Vector4 a, ref Vector4 b);

Description

Divides two vectors component-wise.

Every component in the result is a component of a divided by the same component of b.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { // prints (2.0,1.5,0.5,0.2) print(new Vector4(4, 3, 2, 1) / new Vector4(2, 2, 4, 5)); } }