cz.cuni.jagrlib
Class VCommand.LineTo

java.lang.Object
  extended by cz.cuni.jagrlib.VectorCommand
      extended by cz.cuni.jagrlib.VCommand.MoveTo
          extended by cz.cuni.jagrlib.VCommand.LineTo
All Implemented Interfaces:
java.io.Serializable
Enclosing class:
VCommand

public class VCommand.LineTo
extends VCommand.MoveTo

Draw line from tho current point to the given coordinate.

Since:
0.02
See Also:
VCommand.java, VCommand.MoveTo, VCommand.Stroke, VectorGraphics.lineTo(double, double), Serialized Form

Field Summary
 
Fields inherited from class cz.cuni.jagrlib.VCommand.MoveTo
x, y
 
Fields inherited from class cz.cuni.jagrlib.VectorCommand
FILL_CALLBACK, FILL_DUMMY, FILL_HATCHL, FILL_HATCHR, FILL_SOLID, LINE_CALLBACK, LINE_DASH, LINE_DASHDOT, LINE_DOT, LINE_DUMMY, LINE_SOLID
 
Constructor Summary
VCommand.LineTo(double _x, double _y)
          Initializing constructor.
 
Method Summary
 void execute(VectorGraphics out)
          Executes the command on the given VectorGraphics interface.
 java.lang.String toString()
           
 
Methods inherited from class cz.cuni.jagrlib.VCommand.MoveTo
transform
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

VCommand.LineTo

public VCommand.LineTo(double _x,
                       double _y)
Initializing constructor.

Parameters:
_x - X coordinate.
_y - Y coordinate.
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class VCommand.MoveTo

execute

public void execute(VectorGraphics out)
             throws BadInterfaceException
Executes the command on the given VectorGraphics interface.

Overrides:
execute in class VCommand.MoveTo
Parameters:
out - Output vector interface.
Throws:
BadInterfaceException
See Also:
VectorGraphics