jdk/src/share/classes/sun/java2d/pisces/Transform4.java
changeset 6287 62af7bc0a66a
parent 6225 439de530aac5
parent 6286 67584b95a0f0
child 6291 dd4e40a7b259
equal deleted inserted replaced
6225:439de530aac5 6287:62af7bc0a66a
     1 /*
       
     2  * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
       
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4  *
       
     5  * This code is free software; you can redistribute it and/or modify it
       
     6  * under the terms of the GNU General Public License version 2 only, as
       
     7  * published by the Free Software Foundation.  Oracle designates this
       
     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 sun.java2d.pisces;
       
    27 
       
    28 public class Transform4 {
       
    29 
       
    30     public int m00, m01, m10, m11;
       
    31 //     double det; // det*65536
       
    32 
       
    33     public Transform4() {
       
    34         this(1 << 16, 0, 0, 1 << 16);
       
    35     }
       
    36 
       
    37     public Transform4(int m00, int m01,
       
    38                       int m10, int m11) {
       
    39         this.m00 = m00;
       
    40         this.m01 = m01;
       
    41         this.m10 = m10;
       
    42         this.m11 = m11;
       
    43 
       
    44 //         this.det = (double)m00*m11 - (double)m01*m10;
       
    45     }
       
    46 
       
    47 //     public Transform4 createInverse() {
       
    48 //         double dm00 = m00/65536.0;
       
    49 //         double dm01 = m01/65536.0;
       
    50 //         double dm10 = m10/65536.0;
       
    51 //         double dm11 = m11/65536.0;
       
    52 
       
    53 //         double invdet = 65536.0/(dm00*dm11 - dm01*dm10);
       
    54 
       
    55 //         int im00 = (int)( dm11*invdet);
       
    56 //         int im01 = (int)(-dm01*invdet);
       
    57 //         int im10 = (int)(-dm10*invdet);
       
    58 //         int im11 = (int)( dm00*invdet);
       
    59 
       
    60 //         return new Transform4(im00, im01, im10, im11);
       
    61 //     }
       
    62 
       
    63 //     public void transform(int[] point) {
       
    64 //     }
       
    65 
       
    66 //     /**
       
    67 //      * Returns the length of the line segment obtained by inverse
       
    68 //      * transforming the points <code>(x0, y0)</code> and <code>(x1,
       
    69 //      * y1)</code>.
       
    70 //      */
       
    71 //     public int getTransformedLength(int x0, int x1, int y0, int y1) {
       
    72 //         int lx = x1 - x0;
       
    73 //         int ly = y1 - y0;
       
    74 
       
    75 //         double a = (double)m00*ly - (double)m10*lx;
       
    76 //         double b = (double)m01*ly - (double)m11*lx;
       
    77 //         double len = PiscesMath.sqrt((a*a + b*b)/(det*det));
       
    78 //         return (int)(len*65536.0);
       
    79 //     }
       
    80 
       
    81 //     public int getType() {
       
    82 //     }
       
    83 
       
    84 }