MutableCubic.fromCubic constructor

MutableCubic.fromCubic(
  1. Cubic other
)

Implementation

factory MutableCubic.fromCubic(Cubic other) => .from(
  other.anchor0X,
  other.anchor0Y,
  other.control0X,
  other.control0Y,
  other.control1X,
  other.control1Y,
  other.anchor1X,
  other.anchor1Y,
);