createDefaultPath method

Path createDefaultPath(
  1. ConnectionPathParameters params
)

Creates the default algorithmic path when no control points are provided.

Deprecated: Use createDefaultSegments instead. This method is kept for backward compatibility.

Implementation

Path createDefaultPath(ConnectionPathParameters params) {
  final result = createDefaultSegments(params);
  return buildPath(result.start, result.segments);
}