import org.simplex3d.math.*;
public class GeometryExample {
public static void main(String[] args) {
Vector3d vector = new Vector3d(1, 2, 3);
Matrix3d matrix = new Matrix3d();
matrix.setIdentity();
Vector3d result = matrix.times(vector);
System.out.println("Result: " + result);
}
}