F26Dot6Vector.java
432 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.fontengine.math;
import com.adobe.fontengine.math.F26Dot6;
public class F26Dot6Vector {
public int x;
public int y;
public F26Dot6Vector(int x, int y) {
this.x = x;
this.y = y;
}
public F26Dot6Vector() {
}
public String toString() {
return "(" + F26Dot6.toString(this.x) + " " + F26Dot6.toString(this.y) + ")";
}
}