mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-08-30 05:40:34 +00:00
fix TerraScript EqualsStatement
This commit is contained in:
+1
-1
@@ -32,7 +32,7 @@ public class EqualsStatement extends BinaryOperation<Object, Boolean> {
|
|||||||
return FastMath.abs(l.doubleValue() - r.doubleValue()) <= EPSILON;
|
return FastMath.abs(l.doubleValue() - r.doubleValue()) <= EPSILON;
|
||||||
}
|
}
|
||||||
|
|
||||||
return left.equals(rightUnwrapped);
|
return leftUnwrapped.equals(rightUnwrapped);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user