home *** CD-ROM | disk | FTP | other *** search
- package com.ms.awt;
-
- public class OutlinePolygon {
- public static final int OUTLINE_UNDEFINED = 0;
- public static final int OUTLINE_TRUETYPE = 1;
- public static final int OUTLINE_POLYBEZIER = 2;
- public int type;
- public PointFx fxStart;
- public OutlineCurve[] curves;
-
- public OutlinePolygon() {
- this.type = 0;
- }
-
- public OutlinePolygon(int var1) {
- if (var1 != 1 && var1 != 2) {
- int var10000 = var1 - 0;
- }
-
- this.type = var1;
- }
- }
-