use of net.sf.latexdraw.parser.svg.SVGPathElement in project latexdraw by arnobl.
the class SVGCircleArc method toSVG.
@Override
SVGElement toSVG(@NotNull final SVGDocument doc) {
if (doc.getFirstChild().getDefs() == null) {
return null;
}
final SVGDefsElement defs = doc.getFirstChild().getDefs();
final double rotationAngle = shape.getRotationAngle();
final double startAngle = shape.getAngleStart() % (2. * Math.PI);
final double endAngle = shape.getAngleEnd() % (2. * Math.PI);
final ArcStyle type = shape.getArcStyle();
final SVGElement root = new SVGGElement(doc);
final Point start = shape.getStartPoint();
final Point end = shape.getEndPoint();
final double radius = shape.getWidth() / 2.0;
final boolean largeArcFlag = Math.abs(endAngle - startAngle) >= Math.PI;
final boolean sweepFlag = startAngle >= endAngle;
final SVGPathSegList path = new SVGPathSegList();
SVGElement elt;
root.setAttribute(LNamespace.LATEXDRAW_NAMESPACE + ':' + LNamespace.XML_TYPE, LNamespace.XML_TYPE_ARC);
root.setAttribute(SVGAttributes.SVG_ID, getSVGID());
path.add(new SVGPathSegMoveto(start.getX(), start.getY(), false));
path.add(new SVGPathSegArc(end.getX(), end.getY(), radius, radius, 0, largeArcFlag, sweepFlag, false));
if (type == ArcStyle.CHORD) {
path.add(new SVGPathSegClosePath());
} else {
if (type == ArcStyle.WEDGE) {
final Point gravityCenter = shape.getGravityCentre();
path.add(new SVGPathSegLineto(gravityCenter.getX(), gravityCenter.getY(), false));
path.add(new SVGPathSegClosePath());
}
}
if (shape.hasShadow()) {
final SVGElement shad = new SVGPathElement(doc);
shad.setAttribute(SVGAttributes.SVG_D, path.toString());
setSVGShadowAttributes(shad, true);
root.appendChild(shad);
parameteriseSVGArrow(shape, shad, 0, true, doc, defs);
parameteriseSVGArrow(shape, shad, 1, true, doc, defs);
}
// The background of the borders must be filled is there is a shadow.
if (shape.hasShadow()) {
elt = new SVGPathElement(doc);
elt.setAttribute(SVGAttributes.SVG_D, path.toString());
setSVGBorderBackground(elt, root);
}
elt = new SVGPathElement(doc);
elt.setAttribute(SVGAttributes.SVG_D, path.toString());
root.appendChild(elt);
if (shape.hasDbleBord()) {
final SVGElement dble = new SVGPathElement(doc);
dble.setAttribute(SVGAttributes.SVG_D, path.toString());
setSVGDoubleBordersAttributes(dble);
root.appendChild(dble);
}
setSVGRotationAttribute(root);
setSVGAttributes(doc, elt, true);
elt.setAttribute(LNamespace.LATEXDRAW_NAMESPACE + ':' + LNamespace.XML_ROTATION, String.valueOf(rotationAngle));
parameteriseSVGArrow(shape, elt, 0, false, doc, defs);
parameteriseSVGArrow(shape, elt, 1, false, doc, defs);
if (shape.isShowPts()) {
root.appendChild(getShowPointsElement(doc));
}
return root;
}
use of net.sf.latexdraw.parser.svg.SVGPathElement in project latexdraw by arnobl.
the class SVGArrow method createPathElement.
private void createPathElement() {
if (currentMarker != null && currentDoc != null && currentPathElt == null) {
currentPathElt = new SVGPathElement(currentDoc);
currentMarker.appendChild(currentPathElt);
}
}
use of net.sf.latexdraw.parser.svg.SVGPathElement in project latexdraw by arnobl.
the class SVGBezierCurve method toSVG.
@Override
SVGElement toSVG(@NotNull final SVGDocument doc) {
if (doc.getFirstChild().getDefs() == null) {
return null;
}
final SVGDefsElement defs = doc.getFirstChild().getDefs();
final SVGElement root = new SVGGElement(doc);
SVGElement elt;
final String path = getPathSegList().toString();
root.setAttribute(LNamespace.LATEXDRAW_NAMESPACE + ':' + LNamespace.XML_TYPE, LNamespace.XML_TYPE_BEZIER_CURVE);
root.setAttribute(SVGAttributes.SVG_ID, getSVGID());
if (shape.hasShadow()) {
final SVGElement shad = new SVGPathElement(doc);
shad.setAttribute(SVGAttributes.SVG_D, path);
setSVGShadowAttributes(shad, false);
root.appendChild(shad);
if (shape.isOpened()) {
parameteriseSVGArrow(shape, shad, 0, true, doc, defs);
parameteriseSVGArrow(shape, shad, 1, true, doc, defs);
}
}
if (shape.hasShadow() && !PSTricksConstants.LINE_NONE_STYLE.equals(shape.getLineStyle().getLatexToken()) && shape.isFilled()) {
// The background of the borders must be filled is there is a shadow.
elt = new SVGPathElement(doc);
elt.setAttribute(SVGAttributes.SVG_D, path);
setSVGBorderBackground(elt, root);
}
elt = new SVGPathElement(doc);
elt.setAttribute(SVGAttributes.SVG_D, path);
root.appendChild(elt);
if (shape.hasDbleBord()) {
final SVGElement dblBord = new SVGPathElement(doc);
dblBord.setAttribute(SVGAttributes.SVG_D, path);
setSVGDoubleBordersAttributes(dblBord);
root.appendChild(dblBord);
}
setSVGAttributes(doc, elt, false);
elt.setAttribute(LNamespace.LATEXDRAW_NAMESPACE + ':' + LNamespace.XML_ROTATION, String.valueOf(shape.getRotationAngle()));
if (shape.isOpened()) {
parameteriseSVGArrow(shape, elt, 0, false, doc, defs);
parameteriseSVGArrow(shape, elt, 1, false, doc, defs);
}
if (shape.isShowPts()) {
root.appendChild(getShowPointsElement(doc));
}
return root;
}
use of net.sf.latexdraw.parser.svg.SVGPathElement in project latexdraw by arnobl.
the class SVGBezierCurve method pathToBezierCurve.
/**
* Creates a bezier curve and initialises its path from an SVG element.
*/
private static BezierCurve pathToBezierCurve(final SVGElement elt) {
if (!(elt instanceof SVGPathElement)) {
return null;
}
final SVGPathSegList list = ((SVGPathElement) elt).getSegList();
if (list.size() < 2 || !(list.get(0) instanceof SVGPathSegMoveto)) {
return null;
}
final SVGPathSegMoveto m = (SVGPathSegMoveto) list.get(0);
CtrlPointsSeg c;
int i = 1;
final int size = list.size();
// Creating a point to support when the first path element is relative.
Point2D pt = new Point2D.Double();
final List<Point> pts = new ArrayList<>();
final List<Point> ctrlpts = new ArrayList<>();
final boolean closed;
pt = m.getPoint(pt);
pts.add(ShapeFactory.INST.createPoint(pt));
if (list.get(1) instanceof CtrlPointsSeg) {
// We set the control point of the first point.
c = (CtrlPointsSeg) list.get(1);
ctrlpts.add(ShapeFactory.INST.createPoint(c.getCtrl1(pt)));
}
while (i < size && list.get(i) instanceof CtrlPointsSeg) {
c = (CtrlPointsSeg) list.get(i);
final Point2D currPt = c.getPoint(pt);
pts.add(ShapeFactory.INST.createPoint(currPt));
ctrlpts.add(ShapeFactory.INST.createPoint(c.getCtrl2(pt)));
pt = currPt;
i++;
}
if (pts.size() > 2 && pts.get(pts.size() - 1).equals(pts.get(0), 0.00001)) {
// We set the shape as closed
pts.remove(pts.size() - 1);
ctrlpts.remove(ctrlpts.size() - 1);
closed = true;
} else {
// There is something else at the end of the path.
closed = i < size && list.get(i) instanceof SVGPathSegClosePath;
}
final BezierCurve bc = ShapeFactory.INST.createBezierCurve(pts, ctrlpts);
bc.setOpened(!closed);
return bc;
}
Aggregations