public void curveTo(final float x1, final float y1, final float x2, final float y2, final float x3, final float y3) {
if (inText) {
if (autoControlTextBlocks) {
endText();
} else {
throw new IllegalPdfSyntaxException(MessageLocalization.getComposedMessage("path.construction.operator.inside.text.object"));
}
}
content.append(x1).append(' ').append(y1).append(' ').append(x2).append(' ').append(y2).append(' ').append(x3).append(' ').append(y3).append(" c").append_i(separator);
}