getVector method
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,
);