F16Dot16Vector.java 312 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.fontengine.math;

import com.adobe.fontengine.math.F16Dot16;

public class F16Dot16Vector {
    public int x;
    public int y;

    public String toString() {
        return "(" + F16Dot16.toString(this.x) + " " + F16Dot16.toString(this.y) + ")";
    }
}