CurvedArrow constructor
CurvedArrow({})
Implementation
CurvedArrow({
required Vector3 start,
required Vector3 end,
double startAngle = 0,
double angle = TAU / 4,
double radius = 1,
Vector3 arcCenter = ORIGIN,
bool anchorsSpanFullRange = true,
int numComponents = 9,
Color color = WHITE,
}) : super(
start: start,
end: end,
color: color,
startAngle: startAngle,
angle: angle,
radius: radius,
arcCenter: arcCenter,
numComponents: numComponents,
) {
addTip();
}