1 18 package org.apache.batik.parser; 19 20 28 public interface TransformListHandler { 29 35 void startTransformList() throws ParseException; 36 37 43 void matrix(float a, float b, float c, float d, float e, float f) 44 throws ParseException; 45 46 52 void rotate(float theta) throws ParseException; 53 54 60 void rotate(float theta, float cx, float cy) throws ParseException; 61 62 68 void translate(float tx) throws ParseException; 69 70 76 void translate(float tx, float ty) throws ParseException; 77 78 84 void scale(float sx) throws ParseException; 85 86 92 void scale(float sx, float sy) throws ParseException; 93 94 100 void skewX(float skx) throws ParseException; 101 102 108 void skewY(float sky) throws ParseException; 109 110 116 void endTransformList() throws ParseException; 117 } 118 | Popular Tags |