< prev index next >

src/demo/share/jfc/J2Ddemo/java2d/demos/Composite/FadeAnim.java

Print this page

        

*** 1,8 **** /* * ! * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * --- 1,8 ---- /* * ! * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: *
*** 105,126 **** gi.setPaint(new GradientPaint(w, h, oc, w * .65f, h * .65f, ic)); gi.fillRect(w / 2, h / 2, w / 2, h / 2); texturePaint = new TexturePaint(bi, new Rectangle(0, 0, w, h)); } private static BasicStroke bs = new BasicStroke(6); ! private static Font fonts[] = { new Font(Font.SERIF, Font.PLAIN, 64), new Font(Font.SERIF, Font.BOLD | Font.ITALIC, 24), new Font(Font.MONOSPACED, Font.BOLD, 36), new Font(Font.SANS_SERIF, Font.BOLD | Font.ITALIC, 48), new Font(Font.SANS_SERIF, Font.PLAIN, 52) }; ! private static String strings[] = { "Alpha", "Composite", "Src", "SrcOver", "SrcIn", "SrcOut", "Clear", "DstOver", "DstIn" }; ! private static String imgs[] = { "jumptojavastrip.png", "duke.png", "star7.png" }; ! private static Paint paints[] = { RED, BLUE, GREEN, MAGENTA, ORANGE, PINK, CYAN, texturePaint, YELLOW, LIGHT_GRAY, WHITE }; private List<ObjectData> objects = new ArrayList<ObjectData>(20); private int numShapes, numStrings, numImages; --- 105,126 ---- gi.setPaint(new GradientPaint(w, h, oc, w * .65f, h * .65f, ic)); gi.fillRect(w / 2, h / 2, w / 2, h / 2); texturePaint = new TexturePaint(bi, new Rectangle(0, 0, w, h)); } private static BasicStroke bs = new BasicStroke(6); ! private static Font[] fonts = { new Font(Font.SERIF, Font.PLAIN, 64), new Font(Font.SERIF, Font.BOLD | Font.ITALIC, 24), new Font(Font.MONOSPACED, Font.BOLD, 36), new Font(Font.SANS_SERIF, Font.BOLD | Font.ITALIC, 48), new Font(Font.SANS_SERIF, Font.PLAIN, 52) }; ! private static String[] strings = { "Alpha", "Composite", "Src", "SrcOver", "SrcIn", "SrcOut", "Clear", "DstOver", "DstIn" }; ! private static String[] imgs = { "jumptojavastrip.png", "duke.png", "star7.png" }; ! private static Paint[] paints = { RED, BLUE, GREEN, MAGENTA, ORANGE, PINK, CYAN, texturePaint, YELLOW, LIGHT_GRAY, WHITE }; private List<ObjectData> objects = new ArrayList<ObjectData>(20); private int numShapes, numStrings, numImages;
*** 274,284 **** } g2.translate(-od.x, -od.y); } } ! public static void main(String argv[]) { createDemoFrame(new FadeAnim()); } static class TextData extends Object { --- 274,284 ---- } g2.translate(-od.x, -od.y); } } ! public static void main(String[] argv) { createDemoFrame(new FadeAnim()); } static class TextData extends Object {
< prev index next >