pt.tumba.parser.swf
Interface SWFVectors

All Known Subinterfaces:
SWFShape
All Known Implementing Classes:
FontLoader.VectorImpl, MovieBuilder.GlyphBuilder, MovieBuilder.MorphShapeBuilder, MovieBuilder.ShapeBuilder, SWFSaxParser, SWFTagDumper, TagWriter.Font2ShapeImpl, TagWriter.MorphShapeImpl, TagWriter.SWFShapeImpl

public interface SWFVectors

Interface for passing basic shape information without styles.

Author:
unknown

Method Summary
 void curve(int cx, int cy, int dx, int dy)
          Description of the Method
 void done()
          Description of the Method
 void line(int dx, int dy)
          Description of the Method
 void move(int x, int y)
          Description of the Method
 

Method Detail

done

void done()
          throws java.io.IOException
Description of the Method

Throws:
java.io.IOException - Description of the Exception

line

void line(int dx,
          int dy)
          throws java.io.IOException
Description of the Method

Parameters:
dx - Description of the Parameter
dy - Description of the Parameter
Throws:
java.io.IOException - Description of the Exception

curve

void curve(int cx,
           int cy,
           int dx,
           int dy)
           throws java.io.IOException
Description of the Method

Parameters:
cx - Description of the Parameter
cy - Description of the Parameter
dx - Description of the Parameter
dy - Description of the Parameter
Throws:
java.io.IOException - Description of the Exception

move

void move(int x,
          int y)
          throws java.io.IOException
Description of the Method

Parameters:
x - Description of the Parameter
y - Description of the Parameter
Throws:
java.io.IOException - Description of the Exception