< prev index next >

modules/javafx.graphics/src/main/java/com/sun/marlin/TransformingPathConsumer2D.java

Print this page




   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.marlin;
  27 

  28 import com.sun.javafx.geom.PathConsumer2D;
  29 import com.sun.javafx.geom.transform.BaseTransform;
  30 
  31 public final class TransformingPathConsumer2D {
  32 
  33     TransformingPathConsumer2D() {
  34         // used by RendererContext
  35     }
  36 



  37     // recycled PathConsumer2D instances from deltaTransformConsumer()
  38     private final DeltaScaleFilter     dt_DeltaScaleFilter     = new DeltaScaleFilter();
  39     private final DeltaTransformFilter dt_DeltaTransformFilter = new DeltaTransformFilter();
  40 




  41     public PathConsumer2D deltaTransformConsumer(PathConsumer2D out,
  42                                                  BaseTransform at)
  43     {
  44         if (at == null) {
  45             return out;
  46         }
  47         float mxx = (float) at.getMxx();
  48         float mxy = (float) at.getMxy();
  49         float myx = (float) at.getMyx();
  50         float myy = (float) at.getMyy();
  51 
  52         if (mxy == 0.0f && myx == 0.0f) {
  53             if (mxx == 1.0f && myy == 1.0f) {
  54                 return out;
  55             } else {
  56                 return dt_DeltaScaleFilter.init(out, mxx, myy);
  57             }
  58         } else {
  59             return dt_DeltaTransformFilter.init(out, mxx, mxy, myx, myy);
  60         }


  74         float mxy = (float) at.getMxy();
  75         float myx = (float) at.getMyx();
  76         float myy = (float) at.getMyy();
  77 
  78         if (mxy == 0.0f && myx == 0.0f) {
  79             if (mxx == 1.0f && myy == 1.0f) {
  80                 return out;
  81             } else {
  82                 return iv_DeltaScaleFilter.init(out, 1.0f/mxx, 1.0f/myy);
  83             }
  84         } else {
  85             float det = mxx * myy - mxy * myx;
  86             return iv_DeltaTransformFilter.init(out,
  87                                                 myy / det,
  88                                                -mxy / det,
  89                                                -myx / det,
  90                                                 mxx / det);
  91         }
  92     }
  93 
  94 
  95     static final class DeltaScaleFilter implements PathConsumer2D {
  96         private PathConsumer2D out;
  97         private float sx, sy;
  98 
  99         DeltaScaleFilter() {}
 100 
 101         DeltaScaleFilter init(PathConsumer2D out,
 102                               float mxx, float myy)
 103         {
 104             this.out = out;
 105             sx = mxx;
 106             sy = myy;
 107             return this; // fluent API
 108         }
 109 
 110         @Override
 111         public void moveTo(float x0, float y0) {
 112             out.moveTo(x0 * sx, y0 * sy);
 113         }
 114 


 190         public void curveTo(float x1, float y1,
 191                             float x2, float y2,
 192                             float x3, float y3)
 193         {
 194             out.curveTo(x1 * mxx + y1 * mxy,
 195                         x1 * myx + y1 * myy,
 196                         x2 * mxx + y2 * mxy,
 197                         x2 * myx + y2 * myy,
 198                         x3 * mxx + y3 * mxy,
 199                         x3 * myx + y3 * myy);
 200         }
 201 
 202         @Override
 203         public void closePath() {
 204             out.closePath();
 205         }
 206 
 207         @Override
 208         public void pathDone() {
 209             out.pathDone();










































 210         }
 211     }
 212 }


   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.marlin;
  27 
  28 import com.sun.javafx.geom.Path2D;
  29 import com.sun.javafx.geom.PathConsumer2D;
  30 import com.sun.javafx.geom.transform.BaseTransform;
  31 
  32 public final class TransformingPathConsumer2D {
  33 
  34     TransformingPathConsumer2D() {
  35         // used by RendererContext
  36     }
  37 
  38     // recycled PathConsumer2D instance from wrapPath2d()
  39     private final Path2DWrapper        wp_Path2DWrapper        = new Path2DWrapper();
  40 
  41     // recycled PathConsumer2D instances from deltaTransformConsumer()
  42     private final DeltaScaleFilter     dt_DeltaScaleFilter     = new DeltaScaleFilter();
  43     private final DeltaTransformFilter dt_DeltaTransformFilter = new DeltaTransformFilter();
  44 
  45     public PathConsumer2D wrapPath2D(Path2D p2d) {
  46         return wp_Path2DWrapper.init(p2d);
  47     }
  48 
  49     public PathConsumer2D deltaTransformConsumer(PathConsumer2D out,
  50                                                  BaseTransform at)
  51     {
  52         if (at == null) {
  53             return out;
  54         }
  55         float mxx = (float) at.getMxx();
  56         float mxy = (float) at.getMxy();
  57         float myx = (float) at.getMyx();
  58         float myy = (float) at.getMyy();
  59 
  60         if (mxy == 0.0f && myx == 0.0f) {
  61             if (mxx == 1.0f && myy == 1.0f) {
  62                 return out;
  63             } else {
  64                 return dt_DeltaScaleFilter.init(out, mxx, myy);
  65             }
  66         } else {
  67             return dt_DeltaTransformFilter.init(out, mxx, mxy, myx, myy);
  68         }


  82         float mxy = (float) at.getMxy();
  83         float myx = (float) at.getMyx();
  84         float myy = (float) at.getMyy();
  85 
  86         if (mxy == 0.0f && myx == 0.0f) {
  87             if (mxx == 1.0f && myy == 1.0f) {
  88                 return out;
  89             } else {
  90                 return iv_DeltaScaleFilter.init(out, 1.0f/mxx, 1.0f/myy);
  91             }
  92         } else {
  93             float det = mxx * myy - mxy * myx;
  94             return iv_DeltaTransformFilter.init(out,
  95                                                 myy / det,
  96                                                -mxy / det,
  97                                                -myx / det,
  98                                                 mxx / det);
  99         }
 100     }
 101 

 102     static final class DeltaScaleFilter implements PathConsumer2D {
 103         private PathConsumer2D out;
 104         private float sx, sy;
 105 
 106         DeltaScaleFilter() {}
 107 
 108         DeltaScaleFilter init(PathConsumer2D out,
 109                               float mxx, float myy)
 110         {
 111             this.out = out;
 112             sx = mxx;
 113             sy = myy;
 114             return this; // fluent API
 115         }
 116 
 117         @Override
 118         public void moveTo(float x0, float y0) {
 119             out.moveTo(x0 * sx, y0 * sy);
 120         }
 121 


 197         public void curveTo(float x1, float y1,
 198                             float x2, float y2,
 199                             float x3, float y3)
 200         {
 201             out.curveTo(x1 * mxx + y1 * mxy,
 202                         x1 * myx + y1 * myy,
 203                         x2 * mxx + y2 * mxy,
 204                         x2 * myx + y2 * myy,
 205                         x3 * mxx + y3 * mxy,
 206                         x3 * myx + y3 * myy);
 207         }
 208 
 209         @Override
 210         public void closePath() {
 211             out.closePath();
 212         }
 213 
 214         @Override
 215         public void pathDone() {
 216             out.pathDone();
 217         }
 218     }
 219 
 220     static final class Path2DWrapper implements PathConsumer2D {
 221         private Path2D p2d;
 222 
 223         Path2DWrapper() {}
 224 
 225         Path2DWrapper init(Path2D p2d) {
 226             this.p2d = p2d;
 227             return this;
 228         }
 229 
 230         @Override
 231         public void moveTo(float x0, float y0) {
 232             p2d.moveTo(x0, y0);
 233         }
 234 
 235         @Override
 236         public void lineTo(float x1, float y1) {
 237             p2d.lineTo(x1, y1);
 238         }
 239 
 240         @Override
 241         public void closePath() {
 242             p2d.closePath();
 243         }
 244 
 245         @Override
 246         public void pathDone() {}
 247 
 248         @Override
 249         public void curveTo(float x1, float y1,
 250                             float x2, float y2,
 251                             float x3, float y3)
 252         {
 253             p2d.curveTo(x1, y1, x2, y2, x3, y3);
 254         }
 255 
 256         @Override
 257         public void quadTo(float x1, float y1, float x2, float y2) {
 258             p2d.quadTo(x1, y1, x2, y2);
 259         }
 260     }
 261 }
< prev index next >