public abstract class PolygonModelType
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
static class |
PolygonModelType.Concave
The
Concave type represents a polygon model which
has at least one exterior angle which is bigger than 180 degrees. |
static class |
PolygonModelType.Convex
The
Convex type represents a polygon model which
has no exterior angle which is bigger than 180 degrees. |
static class |
PolygonModelType.Simple
The
Simple type represents an either convex or concave polygon. |
| Modifier and Type | Field and Description |
|---|---|
static PolygonModelType.Concave |
CONCAVE
The
Concave type can be applied if there
is at least one exterior angle which is bigger than 180 degrees. |
static PolygonModelType.Convex |
CONVEX
The
Convex type can be applied if there
is no exterior angle which is bigger than 180 degrees. |
static PolygonModelType.Simple |
SIMPLE
The
Simple type can be either a convex or concave type. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
public static final PolygonModelType.Simple SIMPLE
Simple type can be either a convex or concave type.public static final PolygonModelType.Convex CONVEX
Convex type can be applied if there
is no exterior angle which is bigger than 180 degrees.public static final PolygonModelType.Concave CONCAVE
Concave type can be applied if there
is at least one exterior angle which is bigger than 180 degrees.