Skip to content

Commit a8d746b

Browse files
committed
Changes method name.
1 parent 9c68ba7 commit a8d746b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/math/Bounds.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public void expand(float amount) {
115115
* @return {@code true} if the ray intersects the AABB, {@code false}
116116
* otherwise.
117117
*/
118-
public boolean intersectRay(Ray3f ray) {
118+
public boolean intersectsRay(Ray3f ray) {
119119
if (ray.getDirection().isZero()) {
120120
return false; // A ray with zero direction cannot intersect anything
121121
}

0 commit comments

Comments
 (0)