• Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by JMasterBoi · Jul 13, 2020 at 11:07 PM · functionsoperator

Why Can't I Use the '^' Operator? Error CS0019

I have a simple function that calculates the distance between 2 GameObjects using the following formula: Distance Formula Picture

I get the following error: Assets\Sight.cs(151,27): error CS0019: Operator '^' cannot be applied to operands of type 'float' and 'float' and I don't know why.

here is my simple function code and thank you in advance!

 public float distance(Vector3 a, Vector3 b)
 {
       return Mathf.Sqrt((a.x - b.x)^2 + (a.z - b.z)^2);
 }

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

2 Replies

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by finnjwohner · Jul 13, 2020 at 11:11 PM

Use Mathf.Pow(float a, float b) instead.

Comment
Add comment · Show 2 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image JMasterBoi · Jul 13, 2020 at 11:18 PM 0
Share

so that would be a to the power of b right?

avatar image finnjwohner JMasterBoi · Jul 13, 2020 at 11:24 PM 1
Share

Yeah exactly that, also, Unity has a built in function to do what you're trying to achieve, Vector3.Distance(Vector3 a, Vector3 b) that returns a float just in case you're not aware of that.

avatar image
1

Answer by Bunny83 · Jul 13, 2020 at 11:30 PM

In C# the ^ operator is the bitwise xor operator and does not calculate the power. Like finnjwohner said to calculate an arbitrary power you would use Mathf.Pow.


However in this case it would be unnecessary overhead. First of all Unity already has a method to calculate the distance between two points: Vector3.Distance so writing your own is unnecessary. In your case it seems you are only interested in the x-z plane distance. So the easiest solution would be to cancel the y difference and use Vector3.Distance or do something like this:

 public static float Distance(Vector3 a, Vector3 b)
 {
     a.y = b.y = 0f;
     return Vector3.Distance(a, b);
 }
 
 // or this
 
 public static float Distance(Vector3 a, Vector3 b)
 {
     Vector3 d = a - b;
     return Mathf.Sqrt(d.x*d.x + d.z*d.z);
 }


Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

132 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

How to check if a function is null? 1 Answer

How can I overload operators in Unity Javascript 1 Answer

< cheaper than <= ? 2 Answers

Operator '+' cannot be used with a left hand side of type 'Object' and a right hand side of type 'float' 2 Answers

How can throw "Missing reference exception" this gameObject?.Getcomponent<>() ?? 2 Answers

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges