Bugfix: changed method visibility from private to public to prevent compilation time errors.

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10841 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
Kae..pl 2013-10-20 14:47:39 +00:00
parent 32b79324a9
commit a6004618ce

View File

@ -390,7 +390,7 @@ public class ConstraintHelper extends AbstractBlenderHelper {
* the transform to be converted
* @return 4x4 matrix that represents the given transform
*/
private Matrix4f toMatrix(Transform transform) {
public Matrix4f toMatrix(Transform transform) {
Matrix4f result = Matrix4f.IDENTITY;
if (transform != null) {
result = this.toMatrix(transform.getTranslation(), transform.getRotation(), transform.getScale());