Esempio n. 1
0
 /**
  * Concatenates the specified transform to the existing transform.
  *
  * @param t the transform.
  */
 @Override
 public void transform(AffineTransform t) {
   Transform swtTransform = new Transform(this.gc.getDevice());
   this.gc.getTransform(swtTransform);
   swtTransform.multiply(getSwtTransformFromPool(t));
   this.gc.setTransform(swtTransform);
   swtTransform.dispose();
 }