Uses of Class
pivot.wtk.media.drawing.Path.Operation

Packages that use Path.Operation
pivot.wtk.media.drawing Contains a set of primitives for constructing vector-based drawings. 
 

Uses of Path.Operation in pivot.wtk.media.drawing
 

Subclasses of Path.Operation in pivot.wtk.media.drawing
static class Path.CurveTo
          Adds a curved segment, defined by three new points, to the path by drawing a Bézier curve that intersects both the current coordinates and the specified coordinates (x3,y3), using the specified points (x1,y1) and (x2,y2) as Bézier control points.
static class Path.LineTo
          Adds a point to the path by drawing a straight line from the current coordinates to the new specified coordinates.
static class Path.MoveTo
          Adds a point to the path by moving to the specified coordinates.
static class Path.QuadTo
          Adds a curved segment, defined by two new points, to the path by drawing a Quadratic curve that intersects both the current coordinates and the specified coordinates (x2,y2), using the specified point (x1,y1) as a quadratic parametric control point.
 

Methods in pivot.wtk.media.drawing that return Path.Operation
 Path.Operation Path.get(int index)
          Retrieves the item at the given index.
 Path.Operation Path.update(int index, Path.Operation operation)
          Updates the item at the given index.
 

Methods in pivot.wtk.media.drawing that return types with arguments of type Path.Operation
 Sequence<Path.Operation> Path.remove(int index, int count)
          Removes one or more items from the sequence.
 

Methods in pivot.wtk.media.drawing with parameters of type Path.Operation
 int Path.add(Path.Operation operation)
          Adds an item to the sequence.
 int Path.indexOf(Path.Operation operation)
          Returns the index of an item in the sequence.
 void Path.insert(Path.Operation operation, int index)
          Inserts an item into the sequence at a specific index.
 void PathListener.operationUpdated(Path.Operation operation)
          Called when an operation has been updated.
 int Path.remove(Path.Operation operation)
          Removes the first occurrence of the given item from the sequence.
 Path.Operation Path.update(int index, Path.Operation operation)
          Updates the item at the given index.
 

Method parameters in pivot.wtk.media.drawing with type arguments of type Path.Operation
 void PathListener.operationsRemoved(Path path, int index, Sequence<Path.Operation> removed)
          Called when operations have been removed from a path.