getStroke function

List<Point> getStroke(
  1. List<Point> points, {
  2. double size = 16,
  3. double thinning = 0.7,
  4. double smoothing = 0.5,
  5. double streamline = 0.5,
  6. double taperStart = 0.0,
  7. double taperEnd = 0.0,
  8. bool capStart = true,
  9. bool capEnd = true,
  10. bool simulatePressure = true,
  11. bool isComplete = false,
})

Get an array of points describing a polygon that surrounds the input points.

The size argument sets the base diameter for the shape.

The thinning argument sets the effect of pressure on the stroke's size.

The smoothing argument sets the density of points along the stroke's edges.

The streamline argument sets the level of variation allowed in the input points.

The taperStart argument sets the distance to taper the front of the stroke.

The capStart argument sets whether to add a cap to the start of the stroke.

The taperEnd argument sets the distance to taper the end of the stroke.

The capEnd argument sets whether to add a cap to the end of the stroke.

The simulatePressure argument sets whether to simulate pressure or use the point's provided pressures.

The isComplete argument sets whether the line is complete.

Implementation

List<Point> getStroke(
  List<Point> points, {
  double size = 16,
  double thinning = 0.7,
  double smoothing = 0.5,
  double streamline = 0.5,
  double taperStart = 0.0,
  double taperEnd = 0.0,
  bool capStart = true,
  bool capEnd = true,
  bool simulatePressure = true,
  bool isComplete = false,
}) {
  return getStrokeOutlinePoints(
    getStrokePoints(
      points,
      size: size,
      thinning: thinning,
      smoothing: smoothing,
      streamline: streamline,
      taperStart: taperStart,
      capStart: capStart,
      taperEnd: taperEnd,
      capEnd: capEnd,
      simulatePressure: simulatePressure,
      isComplete: isComplete,
    ),
    size: size,
    thinning: thinning,
    smoothing: smoothing,
    streamline: streamline,
    taperStart: taperStart,
    capStart: capStart,
    taperEnd: taperEnd,
    capEnd: capEnd,
    simulatePressure: simulatePressure,
    isComplete: isComplete,
  );
}