Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/com/esri/core/geometry/Transformation3D.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* are the matrices. This is equivalent to the following line of code:
* ResultVector = (M1.Mul(M2).Mul(M3)).Transform(Vector)
*/
final class Transformation3D {
final public class Transformation3D {

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

Expand Down Expand Up @@ -112,7 +112,7 @@ public Envelope3D transform(Envelope3D env) {
return env;
}

void transform(Point3D[] pointsIn, int count, Point3D[] pointsOut) {
public void transform(Point3D[] pointsIn, int count, Point3D[] pointsOut) {
for (int i = 0; i < count; i++) {
Point3D res = new Point3D();
Point3D src = pointsIn[i];
Expand Down