Skip to content

Commit

Permalink
Update CornerUtil.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Fexcraft committed Feb 28, 2025
1 parent e2e66d0 commit f604918
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/net/fexcraft/app/fmt/utils/CornerUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,14 @@ public class CornerUtil {
public static Polyhedron<GLObject> ROT_MARKER_SMALL;
private static Polyhedron<GLObject>[] CORNER_MARKER = new Polyhedron[8];
public static RGB[] CORNER_COLOURS = new RGB[]{
new RGB(255, 255, 0), new RGB(255, 0, 0), new RGB(0, 127, 255), new RGB(255, 0, 127),
new RGB(0, 255, 0), new RGB(0, 0, 255), new RGB(0, 127, 0), new RGB(127, 0, 255)
new RGB(255, 255, 0),//yellow
new RGB(255, 0, 0),//red
new RGB(0, 127, 255),//cyan
new RGB(255, 0, 127),//magenta
new RGB(0, 255, 0),//green
new RGB(0, 0, 255),//blue
new RGB(0, 127, 0),//dark green
new RGB(127, 0, 255)//purple
};
private static Axis3DL axe = new Axis3DL();
static{
Expand Down

0 comments on commit f604918

Please sign in to comment.