jdk/src/java.desktop/share/classes/sun/java2d/loops/FillParallelogram.java
changeset 32865 f9cb6e427f9e
parent 25859 3317bb8137f4
equal deleted inserted replaced
32864:2a338536e642 32865:f9cb6e427f9e
    38  * 1) fill the area between the 4 edges of a parallelogram
    38  * 1) fill the area between the 4 edges of a parallelogram
    39  *    (as specified by an origin and 2 delta vectors)
    39  *    (as specified by an origin and 2 delta vectors)
    40  */
    40  */
    41 public class FillParallelogram extends GraphicsPrimitive
    41 public class FillParallelogram extends GraphicsPrimitive
    42 {
    42 {
    43     public final static String methodSignature =
    43     public static final String methodSignature =
    44         "FillParallelogram(...)".toString();
    44         "FillParallelogram(...)".toString();
    45 
    45 
    46     public final static int primTypeID = makePrimTypeID();
    46     public static final int primTypeID = makePrimTypeID();
    47 
    47 
    48     public static FillParallelogram locate(SurfaceType srctype,
    48     public static FillParallelogram locate(SurfaceType srctype,
    49                                            CompositeType comptype,
    49                                            CompositeType comptype,
    50                                            SurfaceType dsttype)
    50                                            SurfaceType dsttype)
    51     {
    51     {