private void AddArc(CommandToken commandToken) { var size = commandToken.ReadSize(); var rotationAngle = commandToken.ReadDouble(); var isLargeArc = commandToken.ReadBool(); var sweepDirection = commandToken.ReadBool() ? SweepDirection.Clockwise : SweepDirection.CounterClockwise; var end = commandToken.IsRelative ? commandToken.ReadRelativePoint(_currentPoint) : commandToken.ReadPoint(); if (_isOpen == null) { CreateFigure(); } _geometryContext.ArcTo(end, size, rotationAngle, isLargeArc, sweepDirection); _currentPoint = end; _previousControlPoint = null; }