*
* @throws SWFParserException Thrown if the structure could not be parsed.
*/
public static ZoneData parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {
final Float16 alignmentCoordinate = parseFloat16(parser, 0x00006, fieldName + "::AlignmentCoordinate");
final Float16 range = parseFloat16(parser, 0x00006, fieldName + "::Range");
return new ZoneData(alignmentCoordinate, range);
}