[Solved] Get 3D coordinates of vertices of rotated and scaled cuboid with scale, center position and rotation on all axis
If you are using LWJGL you can also use JOML, in which case the following is probably what you might want: import org.joml.*; public class CubePositions { public static void main(String[] args) { /* Cuboid center position */ float px = 10, py = 0, pz = 0; /* Euler angles around x, y and … Read more