this post was submitted on 07 Dec 2024
87 points (98.9% liked)

Godot

6005 readers
8 users here now

Welcome to the programming.dev Godot community!

This is a place where you can discuss about anything relating to the Godot game engine. Feel free to ask questions, post tutorials, show off your godot game, etc.

Make sure to follow the Godot CoC while chatting

We have a matrix room that can be used for chatting with other members of the community here

Links

Other Communities

Rules

We have a four strike system in this community where you get warned the first time you break a rule, then given a week ban, then given a year ban, then a permanent ban. Certain actions may bypass this and go straight to permanent ban if severe enough and done with malicious intent

Wormhole

!roguelikedev@programming.dev

Credits

founded 2 years ago
MODERATORS
 

This is usable in any script. It checks to see if the two values differ by a very small value

Alt text: Code that says print(is_equal_approx(1, 0.99999999999)) and then the console log which has printed out true.

top 2 comments
sorted by: hot top controversial new old
[โ€“] Kelly@lemmy.world 10 points 2 weeks ago* (last edited 2 weeks ago) (1 children)

It looks like this returns true if the difference is smaller than the first parameter multiplied by 0.00001.

Its handy and there will be times when that's cool, but also times when you need to define your own tolerance.

There is also similar functionality exposed as class methods of Color, Vector2, AABB, etc.

[โ€“] ByteJunk@lemmy.world 2 points 2 weeks ago

I'm guessing that if someone needs to define tolerance on such a small scale, they probably weren't going to depend on an "approximately equal" function in the first place.

Then again, if someone has been dealing with these sorts of comparisons for a while, they'd have their own way of achieving this, so I guess it can be a handy tool for people who are just getting into game development.