You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
511 B
Java

package com.verictas.pos.simulator;
import javax.vecmath.*;
public class Main {
public static void main(String[] args) {
System.out.println("Hello World!");
Object object1 = new Object(10E8, new Vector3f(1,2,3), new Vector3f(0,4,3));
Object object2 = new Object(20E4, new Vector3f(2,38,2), new Vector3f(3,4,5));
System.out.println(object1.toString());
System.out.println(object2.toString());
System.out.println(object1.getForceOnObject(object2));
}
}