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