public class DXFEllipse extends DXFGraphic
| Modifier and Type | Field and Description |
|---|---|
float |
centerX |
float |
centerY |
float |
endAngle |
float |
endpointX |
float |
endpointY |
float |
ratio |
float |
startAngle |
color, dbConnectID, dbConnectType, extendedData, layerName, linetypeName, originalLayerName, xDictionaryHandleappGroupName, handle, insideAppGroup| Constructor and Description |
|---|
DXFEllipse() |
| Modifier and Type | Method and Description |
|---|---|
void |
copyStateFrom(DXFEntity nother)
Copies the attributes from the given DXFEntity.
|
void |
processGroup(int code,
DXFProtoValue value)
Acts on groups; interprets them and populates properties.
|
void |
resetToDefaults()
Resets all values to defaults; useful when reusing objects.
|
java.lang.String |
toString() |
public float centerX
public float centerY
public float endpointX
public float endpointY
public float ratio
public float startAngle
public float endAngle
public void resetToDefaults()
resetToDefaults in class DXFGraphicpublic void processGroup(int code,
DXFProtoValue value)
processGroup in interface DXFGroupActorprocessGroup in class DXFGraphicpublic java.lang.String toString()
toString in class java.lang.Objectpublic void copyStateFrom(DXFEntity nother)
DXFEntity
public void copyState(DXFEntity nother) {
super.copyStateFrom(nother);
someState = nother.someState;
....
copyStateFrom in class DXFGraphic