com.partnersoft.io.formats.dxf
Class DXFVertex
java.lang.Object
com.partnersoft.io.formats.dxf.DXFEntity
com.partnersoft.io.formats.dxf.DXFGraphic
com.partnersoft.io.formats.dxf.DXFVertex
- All Implemented Interfaces:
- DXFGroupActor
public class DXFVertex
- extends DXFGraphic
A DXF VERTEX entity.
- Author:
- Paul Reavis Copyright 2000 Partner Software, Inc.
| Methods inherited from class java.lang.Object |
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
locationX
public float locationX
locationY
public float locationY
bulge
public float bulge
vertexFlags
public int vertexFlags
controlPoint
public boolean controlPoint
DXFVertex
public DXFVertex()
resetToDefaults
public void resetToDefaults()
- Resets all values to defaults; useful when reusing objects.
- Overrides:
resetToDefaults in class DXFGraphic
processGroup
public void processGroup(int code,
DXFProtoValue value)
- Acts on groups; interprets them and populates properties.
- Specified by:
processGroup in interface DXFGroupActor- Overrides:
processGroup in class DXFGraphic
copyStateFrom
public void copyStateFrom(DXFEntity nother)
- Description copied from class:
DXFEntity
- Copies the attributes from the given DXFEntity. Subclasses should
implement this, but call it as well:
public void copyState(DXFEntity nother) {
super.copyStateFrom(nother);
someState = nother.someState;
....
- Overrides:
copyStateFrom in class DXFGraphic
toString
public java.lang.String toString()
- Overrides:
toString in class java.lang.Object