Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
7859 views
1
package com.artifex.mupdfdemo;
2
3
import android.graphics.RectF;
4
5
public class TextChar extends RectF {
6
public char c;
7
8
public TextChar(float x0, float y0, float x1, float y1, char _c) {
9
super(x0, y0, x1, y1);
10
c = _c;
11
}
12
}
13
14