getVector method

Vector getVector(
  1. Vector3 coords, {
  2. double buff = 0,
  3. double? pathArc,
  4. Color? fillColor,
  5. Color color = WHITE,
})

Implementation

Vector getVector(
  Vector3 coords, {
  double buff = 0,
  double? pathArc,
  Color? fillColor,
  Color color = WHITE,
}) =>
    Vector(
      start: getCenterPoint(),
      end: c2p(coords),
      buff: buff,
      pathArc: pathArc,
      color: color,
    );