From 742c4c622042a382e494ebf73b89796038786ca4 Mon Sep 17 00:00:00 2001 From: Rico Lee Date: Thu, 15 Apr 2021 16:03:05 +0800 Subject: [PATCH] fix method parameter signature define different The corresponding parameter in the implement class 'Matrix3d' is 'int row, int column' --- src/org/joml/Matrix3dc.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/joml/Matrix3dc.java b/src/org/joml/Matrix3dc.java index 0d03841f..c189b8b2 100644 --- a/src/org/joml/Matrix3dc.java +++ b/src/org/joml/Matrix3dc.java @@ -1155,7 +1155,7 @@ public interface Matrix3dc { * the colum index in [0..2] * @return the element value */ - double getRowColumn(int column, int row); + double getRowColumn(int row, int column); /** * Compute a normal matrix from this matrix and store it into dest.