Package com.myscript.iink.graphics
Interface IStroker
- 
 public interface IStroker
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisFill()Tells whether stroked input should be drawn as a filled shaped or not.voidstroke(@NotNull InkPoint[] input, float width, float pixelSize, @NotNull IPath output)Constructs a visual stroke from input points.
 
- 
- 
- 
Method Detail- 
isFillboolean isFill() Tells whether stroked input should be drawn as a filled shaped or not.- Returns:
- trueif strokes are to be filled, otherwise- false.
 
 - 
strokevoid stroke(@NotNull @NotNull InkPoint[] input, float width, float pixelSize, @NotNull @NotNull IPath output)Constructs a visual stroke from input points.- Parameters:
- input- the input points.
- width- the desired stroke width.
- pixelSize- the viewport pixel size.
- output- the resulting stroke.
 
 
- 
 
-