Uses of Class
com.sencha.gxt.chart.client.draw.path.PathCommand

Packages that use PathCommand
com.sencha.gxt.chart.client.draw   
com.sencha.gxt.chart.client.draw.path   
 

Uses of PathCommand in com.sencha.gxt.chart.client.draw
 

Method parameters in com.sencha.gxt.chart.client.draw with type arguments of type PathCommand
static Animator DrawFx.createCommandsAnimator(PathSprite origin, List<PathCommand> commands)
          Returns an Animator that will animate the given PathSprite to the given list of PathCommands.
 

Uses of PathCommand in com.sencha.gxt.chart.client.draw.path
 

Subclasses of PathCommand in com.sencha.gxt.chart.client.draw.path
 class ClosePath
          A PathCommand that represents the end of the current subpath.
 class CurveTo
          A PathCommand that represents a cubic Bézier segment.
 class CurveToQuadratic
          A PathCommand that represents a quadratic Bézier segment.
 class CurveToQuadraticSmooth
          A PathCommand that represents a shorthand quadratic Bézier segment.
 class CurveToSmooth
          A PathCommand that represents a shorthand cubic Bézier segment.
 class EllipticalArc
          A PathCommand that represents a segment of an ellipse.
 class EndPointCommand
          Abstract class representing a PathCommand with an endpoint.
 class LineTo
          A PathCommand that represents a line.
 class LineToHorizontal
          A PathCommand that represents a horizontal line.
 class LineToVertical
          A PathCommand that represents a vertical line.
 class MoveTo
          A PathCommand that represents a moving of the current point.
 

Methods in com.sencha.gxt.chart.client.draw.path that return PathCommand
abstract  PathCommand PathCommand.copy()
          Returns a copy of the path command.
 PathCommand PathSprite.getCommand(int index)
          Returns the PathCommand at the given index.
abstract  PathCommand PathCommand.toCurve(PrecisePoint currentPoint, PrecisePoint movePoint, PrecisePoint curvePoint, PrecisePoint quadraticPoint)
          Converts the PathCommand to a CurveTo command.
 PathCommand MoveTo.toCurve(PrecisePoint currentPoint, PrecisePoint movePoint, PrecisePoint curvePoint, PrecisePoint quadraticPoint)
           
 

Methods in com.sencha.gxt.chart.client.draw.path that return types with arguments of type PathCommand
static List<PathCommand> PathSprite.copyCommands(List<PathCommand> commands)
          Returns a new list of PathCommands by making copies of the given commands.
 List<PathCommand> PathSprite.getCommands()
          Returns a List of all the PathCommands in the sprite.
 

Methods in com.sencha.gxt.chart.client.draw.path with parameters of type PathCommand
 void PathSprite.addCommand(int index, PathCommand command)
          Adds a PathCommand to the path at the given index.
 void PathSprite.addCommand(PathCommand command)
          Adds a PathCommand to the path.
abstract  boolean PathCommand.nearEqual(PathCommand command)
          Determines equality of two commands using rounded values.
 boolean MoveTo.nearEqual(PathCommand command)
           
 boolean LineToVertical.nearEqual(PathCommand command)
           
 boolean LineToHorizontal.nearEqual(PathCommand command)
           
 boolean LineTo.nearEqual(PathCommand command)
           
 boolean EllipticalArc.nearEqual(PathCommand command)
           
 boolean CurveToSmooth.nearEqual(PathCommand command)
           
 boolean CurveToQuadraticSmooth.nearEqual(PathCommand command)
           
 boolean CurveToQuadratic.nearEqual(PathCommand command)
           
 boolean CurveTo.nearEqual(PathCommand command)
           
 boolean ClosePath.nearEqual(PathCommand command)
           
 void PathSprite.setCommand(int index, PathCommand command)
          Sets the PathCommand of the path at given index.
 

Method parameters in com.sencha.gxt.chart.client.draw.path with type arguments of type PathCommand
static List<PathCommand> PathSprite.copyCommands(List<PathCommand> commands)
          Returns a new list of PathCommands by making copies of the given commands.
static List<PathSprite> PathSprite.findDelta(PathSprite origin, List<PathCommand> commands)
          Ensures PathCommand parity between this path and the given path.
 void PathSprite.setCommands(List<PathCommand> commands)
          Replace the path's PathCommands with the given List of commands.
 

Constructors in com.sencha.gxt.chart.client.draw.path with parameters of type PathCommand
PathCommand(PathCommand command)
          Creates a copy of the given command.
 



Copyright © 2011. All Rights Reserved.