@@ -457,7 +457,7 @@ public void setM44(final double m44) {
457457 * @return is2d
458458 */
459459 @ JsxGetter
460- public boolean getIs2D () {
460+ public boolean isIs2D () {
461461 return is2D_ ;
462462 }
463463
@@ -615,7 +615,7 @@ public DOMMatrix multiply(final Object other) {
615615 + m22_ * otherMatrix .m12_
616616 + m32_ * otherMatrix .m13_
617617 + m42_ * otherMatrix .m14_ );
618- if (!result .getIs2D ()) {
618+ if (!result .isIs2D ()) {
619619 result .setM13 (m13_ * otherMatrix .m11_
620620 + m23_ * otherMatrix .m12_
621621 + m33_ * otherMatrix .m13_
@@ -634,7 +634,7 @@ public DOMMatrix multiply(final Object other) {
634634 + m22_ * otherMatrix .m22_
635635 + m32_ * otherMatrix .m23_
636636 + m42_ * otherMatrix .m24_ );
637- if (!result .getIs2D ()) {
637+ if (!result .isIs2D ()) {
638638 result .setM23 (m13_ * otherMatrix .m21_
639639 + m23_ * otherMatrix .m22_
640640 + m33_ * otherMatrix .m23_
@@ -645,7 +645,7 @@ public DOMMatrix multiply(final Object other) {
645645 + m44_ * otherMatrix .m24_ );
646646 }
647647
648- if (!result .getIs2D ()) {
648+ if (!result .isIs2D ()) {
649649 result .setM31 (m11_ * otherMatrix .m31_
650650 + m21_ * otherMatrix .m32_
651651 + m31_ * otherMatrix .m33_
@@ -672,7 +672,7 @@ public DOMMatrix multiply(final Object other) {
672672 + m22_ * otherMatrix .m42_
673673 + m32_ * otherMatrix .m43_
674674 + m42_ * otherMatrix .m44_ );
675- if (!result .getIs2D ()) {
675+ if (!result .isIs2D ()) {
676676 result .setM43 (m13_ * otherMatrix .m41_
677677 + m23_ * otherMatrix .m42_
678678 + m33_ * otherMatrix .m43_
0 commit comments