Package tv.porst.swfretools.parser.structures

Examples of tv.porst.swfretools.parser.structures.ShapeWithStyle3


   */
  public static DefineShape3Tag parse(final RecordHeader header, final SWFBinaryParser parser) throws SWFParserException {

    final UINT16 shapeId = parseUINT16(parser, 0x00006, "DefineShape3::ShapeID");
    final Rect shapeBounds = RectParser.parse(parser, "DefineShape3::ShapeBounds");
    final ShapeWithStyle3 shapes = ShapeWithStyle3Parser.parse(parser, "DefineShape3::Shapes");

    return new DefineShape3Tag(header, shapeId, shapeBounds, shapes);
  }
View Full Code Here

TOP

Related Classes of tv.porst.swfretools.parser.structures.ShapeWithStyle3

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.