Skip to content

Commit fdfec17

Browse files
authored
Fix formatting of approxEquals method
1 parent 4066602 commit fdfec17

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cocos/core/math/vec3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -962,7 +962,7 @@ export class Vec3 extends ValueType {
962962
return Vec3.equals(this, other, epsilon);
963963
}
964964

965-
public approxEquals(other: Vec3, epsilon = EPSILON): boolean {
965+
public approxEquals (other: Vec3, epsilon = EPSILON): boolean {
966966
const self = this;
967967
return (
968968
abs(self.x - other.x) <= epsilon

0 commit comments

Comments
 (0)