Answers for "how to square root unity"

C#
3

how to square root unity

// Mathf.Sqrt(float)

public float a = 9;

Debug.Log(Mathf.Sqrt(a));
// this will print out the sqare root of nine, 3
Posted by: Guest on July-13-2020

C# Answers by Framework

Browse Popular Code Answers by Language