Upstream Merge

This commit is contained in:
MattBDev
2020-01-10 22:32:12 -05:00
parent b2be1ea9fb
commit 0d2fff2cd2
81 changed files with 2528 additions and 23695 deletions

View File

@ -49,4 +49,4 @@ public final class BitMath {
private BitMath() {
}
}
}

View File

@ -35,7 +35,7 @@ public final class Polygons {
}
/**
* Calculates the polygon shape of a cylinder, which can then be used for e.g., intersection detection.
* Calculates the polygon shape of a cylinder which can then be used for e.g. intersection detection.
*
* @param center the center point of the cylinder
* @param radius the radius of the cylinder

View File

@ -341,11 +341,6 @@ public class AffineTransform implements Transform, Serializable {
}
}
@Override
public String toString() {
return String.format("Affine[%g %g %g %g, %g %g %g %g, %g %g %g %g]}", m00, m01, m02, m03, m10, m11, m12, m13, m20, m21, m22, m23);
}
/**
* Returns if this affine transform is representing a horizontal flip.
*/
@ -354,5 +349,10 @@ public class AffineTransform implements Transform, Serializable {
return m00 * m22 - m02 * m20 < 0;
}
@Override
public String toString() {
return String.format("Affine[%g %g %g %g, %g %g %g %g, %g %g %g %g]}", m00, m01, m02, m03, m10, m11, m12, m13, m20, m21, m22, m23);
}
}