Skip to content

Commit 4c2fbd3

Browse files
authored
Make Transformation3D class public (#254)
1 parent abf6b7c commit 4c2fbd3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/esri/core/geometry/Transformation3D.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* are the matrices. This is equivalent to the following line of code:
3434
* ResultVector = (M1.Mul(M2).Mul(M3)).Transform(Vector)
3535
*/
36-
final class Transformation3D {
36+
final public class Transformation3D {
3737

3838
public double xx, yx, zx, xd, xy, yy, zy, yd, xz, yz, zz, zd;
3939

@@ -112,7 +112,7 @@ public Envelope3D transform(Envelope3D env) {
112112
return env;
113113
}
114114

115-
void transform(Point3D[] pointsIn, int count, Point3D[] pointsOut) {
115+
public void transform(Point3D[] pointsIn, int count, Point3D[] pointsOut) {
116116
for (int i = 0; i < count; i++) {
117117
Point3D res = new Point3D();
118118
Point3D src = pointsIn[i];

0 commit comments

Comments
 (0)