StraightPathPoint.fromValues constructor

StraightPathPoint.fromValues(
  1. Vec2D translation,
  2. double radius
)

Implementation

StraightPathPoint.fromValues(Vec2D translation, this.radius)
    : super(PointType.straight) {
  _translation = translation;
}