Esempio n. 1
0
 public AATileGenerator getAATileGenerator(
     Shape s,
     AffineTransform at,
     Region clip,
     BasicStroke bs,
     boolean thin,
     boolean normalize,
     int bbox[]) {
   System.out.println(
       name
           + ".getAATileGenerator("
           + s.getClass().getName()
           + ", "
           + at
           + ", "
           + clip
           + ", "
           + bs
           + ", "
           + (thin ? "thin" : "wide")
           + ", "
           + (normalize ? "normalized" : "pure")
           + ")");
   return target.getAATileGenerator(s, at, clip, bs, thin, normalize, bbox);
 }
Esempio n. 2
0
 public AATileGenerator getAATileGenerator(
     double x,
     double y,
     double dx1,
     double dy1,
     double dx2,
     double dy2,
     double lw1,
     double lw2,
     Region clip,
     int bbox[]) {
   System.out.println(
       name
           + ".getAATileGenerator("
           + x
           + ", "
           + y
           + ", "
           + dx1
           + ", "
           + dy1
           + ", "
           + dx2
           + ", "
           + dy2
           + ", "
           + lw1
           + ", "
           + lw2
           + ", "
           + clip
           + ")");
   return target.getAATileGenerator(
       x, y,
       dx1, dy1,
       dx2, dy2,
       lw1, lw2,
       clip, bbox);
 }