Search in sources :

Example 1 with Polyline

use of net.sf.latexdraw.model.api.shape.Polyline in project latexdraw by arnobl.

the class Pencil method bindMultiClic2AddShape.

/**
 * Binds a multi-click interaction to creates multi-point shapes.
 */
private void bindMultiClic2AddShape() {
    final Function<PointsData, AddShape> creation = i -> new AddShape(setInitialPtsShape(editing.createShapeInstance(), i.getPointsData().get(0).getSrcLocalPoint()), canvas.getDrawing());
    // Binding for polygons
    nodeBinder().usingInteraction(() -> new MultiClick(3)).toProduce(creation).on(canvas).then((i, c) -> {
        final Point currPoint = getAdaptedPoint(i.getCurrentPosition());
        if (c.getShape().getNbPoints() == i.getPointsData().size() && i.getLastButton().orElse(MouseButton.NONE) == MouseButton.PRIMARY) {
            c.setShape(ShapeFactory.INST.createPolygonFrom((Polygon) c.getShape(), ShapeFactory.INST.createPoint(currPoint.getX(), currPoint.getY())));
        } else {
            ((ModifiablePointsShape) c.getShape()).setPoint(currPoint.getX(), currPoint.getY(), -1);
        }
        canvas.setTempView(viewFactory.createView(c.getShape()).orElse(null));
    }).strictStart().endOrCancel(i -> canvas.setTempView(null)).when(() -> editing.getCurrentChoice() == EditionChoice.POLYGON).bind();
    // Binding for polyline
    nodeBinder().usingInteraction(MultiClick::new).toProduce(creation).on(canvas).then((i, c) -> {
        final Point currPoint = getAdaptedPoint(i.getCurrentPosition());
        if (c.getShape().getNbPoints() == i.getPointsData().size() && i.getLastButton().orElse(MouseButton.NONE) == MouseButton.PRIMARY) {
            c.setShape(ShapeFactory.INST.createPolylineFrom((Polyline) c.getShape(), ShapeFactory.INST.createPoint(currPoint.getX(), currPoint.getY())));
        } else {
            ((ModifiablePointsShape) c.getShape()).setPoint(currPoint.getX(), currPoint.getY(), -1);
        }
        canvas.setTempView(viewFactory.createView(c.getShape()).orElse(null));
    }).strictStart().endOrCancel(i -> canvas.setTempView(null)).when(() -> editing.getCurrentChoice() == EditionChoice.LINES).bind();
    // Binding for bézier curves
    nodeBinder().usingInteraction(MultiClick::new).toProduce(creation).on(canvas).then((i, c) -> {
        final Point currPoint = getAdaptedPoint(i.getCurrentPosition());
        if (c.getShape().getNbPoints() == i.getPointsData().size() && i.getLastButton().orElse(MouseButton.NONE) == MouseButton.PRIMARY) {
            c.setShape(ShapeFactory.INST.createBezierCurveFrom((BezierCurve) c.getShape(), ShapeFactory.INST.createPoint(currPoint.getX(), currPoint.getY())));
        } else {
            ((ModifiablePointsShape) c.getShape()).setPoint(currPoint.getX(), currPoint.getY(), -1);
        }
        ((ControlPointShape) c.getShape()).balance();
        canvas.setTempView(viewFactory.createView(c.getShape()).orElse(null));
    }).strictStart().endOrCancel(i -> canvas.setTempView(null)).when(() -> editing.getCurrentChoice() == EditionChoice.BEZIER_CURVE).bind();
}
Also used : EditingService(net.sf.latexdraw.service.EditingService) Arrays(java.util.Arrays) MouseButton(javafx.scene.input.MouseButton) ControlPointShape(net.sf.latexdraw.model.api.shape.ControlPointShape) BezierCurve(net.sf.latexdraw.model.api.shape.BezierCurve) Freehand(net.sf.latexdraw.model.api.shape.Freehand) Point3D(javafx.geometry.Point3D) BorderPos(net.sf.latexdraw.model.api.shape.BorderPos) InsertPicture(net.sf.latexdraw.command.shape.InsertPicture) Function(java.util.function.Function) Polyline(net.sf.latexdraw.model.api.shape.Polyline) ShapeFactory(net.sf.latexdraw.model.ShapeFactory) Shape(net.sf.latexdraw.model.api.shape.Shape) Inject(net.sf.latexdraw.util.Inject) PointsData(io.github.interacto.jfx.interaction.library.PointsData) MathUtils(net.sf.latexdraw.model.MathUtils) AddShape(net.sf.latexdraw.command.shape.AddShape) Canvas(net.sf.latexdraw.view.jfx.Canvas) ViewFactory(net.sf.latexdraw.view.jfx.ViewFactory) Click(io.github.interacto.jfx.interaction.library.Click) InitTextSetter(net.sf.latexdraw.command.shape.InitTextSetter) MultiClick(io.github.interacto.jfx.interaction.library.MultiClick) ModifiablePointsShape(net.sf.latexdraw.model.api.shape.ModifiablePointsShape) Polygon(net.sf.latexdraw.model.api.shape.Polygon) Press(io.github.interacto.jfx.interaction.library.Press) PositionShape(net.sf.latexdraw.model.api.shape.PositionShape) Point(net.sf.latexdraw.model.api.shape.Point) MagneticGrid(net.sf.latexdraw.view.jfx.MagneticGrid) Objects(java.util.Objects) FileChooser(javafx.stage.FileChooser) SquaredShape(net.sf.latexdraw.model.api.shape.SquaredShape) RectangularShape(net.sf.latexdraw.model.api.shape.RectangularShape) NotNull(org.jetbrains.annotations.NotNull) DnD(io.github.interacto.jfx.interaction.library.DnD) MultiClick(io.github.interacto.jfx.interaction.library.MultiClick) PointsData(io.github.interacto.jfx.interaction.library.PointsData) AddShape(net.sf.latexdraw.command.shape.AddShape) Polyline(net.sf.latexdraw.model.api.shape.Polyline) ModifiablePointsShape(net.sf.latexdraw.model.api.shape.ModifiablePointsShape) Point(net.sf.latexdraw.model.api.shape.Point) Polygon(net.sf.latexdraw.model.api.shape.Polygon) BezierCurve(net.sf.latexdraw.model.api.shape.BezierCurve) ControlPointShape(net.sf.latexdraw.model.api.shape.ControlPointShape)

Example 2 with Polyline

use of net.sf.latexdraw.model.api.shape.Polyline in project latexdraw by arnobl.

the class TestParsingQline method testMustNotBeFilled.

@Test
public void testMustNotBeFilled() {
    parser("\\qline(35cm,20cm)(11.12cm,-2cm)");
    final Polyline line = getShapeAt(0);
    assertEquals(FillingStyle.NONE, line.getFillingStyle());
}
Also used : Polyline(net.sf.latexdraw.model.api.shape.Polyline) Test(org.junit.jupiter.api.Test)

Example 3 with Polyline

use of net.sf.latexdraw.model.api.shape.Polyline in project latexdraw by arnobl.

the class TestParsingPsline method testCoordinatesFloat2.

@Test
public void testCoordinatesFloat2() {
    parser("\\psline(35.5,50.5)(12, 1)");
    final Polyline line = (Polyline) parsedShapes.get(0);
    assertEquals(35.5 * Shape.PPC, line.getPtAt(0).getX(), 0.0001);
    assertEquals(-50.5 * Shape.PPC, line.getPtAt(0).getY(), 0.0001);
    assertEquals(12d * Shape.PPC, line.getPtAt(1).getX(), 0.0001);
    assertEquals(-1d * Shape.PPC, line.getPtAt(1).getY(), 0.0001);
}
Also used : Polyline(net.sf.latexdraw.model.api.shape.Polyline) Test(org.junit.jupiter.api.Test)

Example 4 with Polyline

use of net.sf.latexdraw.model.api.shape.Polyline in project latexdraw by arnobl.

the class TestParsingPsline method testParse1Coordinates.

@Test
public void testParse1Coordinates() {
    parser("\\psline(5,10)");
    final Polyline line = (Polyline) parsedShapes.get(0);
    assertEquals(2, line.getNbPoints());
    assertEquals(0d, line.getPtAt(0).getX(), 0.0001);
    assertEquals(0d, line.getPtAt(0).getY(), 0.0001);
    assertEquals(5d * Shape.PPC, line.getPtAt(1).getX(), 0.0001);
    assertEquals(-10d * Shape.PPC, line.getPtAt(1).getY(), 0.0001);
}
Also used : Polyline(net.sf.latexdraw.model.api.shape.Polyline) Test(org.junit.jupiter.api.Test)

Example 5 with Polyline

use of net.sf.latexdraw.model.api.shape.Polyline in project latexdraw by arnobl.

the class TestParsingPsline method testUnit.

@Test
public void testUnit() {
    parser("\\psset{unit=2}\\psline[linewidth=0.3,linestyle=dashed](2,3)(1cm,2cm)");
    final Polyline sh = (Polyline) parsedShapes.get(0);
    assertEquals(2d * 2d * Shape.PPC, sh.getPtAt(0).getX(), 0.0001);
    assertEquals(-3d * 2d * Shape.PPC, sh.getPtAt(0).getY(), 0.0001);
    assertEquals(Shape.PPC, sh.getPtAt(1).getX(), 0.0001);
    assertEquals(-2d * Shape.PPC, sh.getPtAt(1).getY(), 0.0001);
}
Also used : Polyline(net.sf.latexdraw.model.api.shape.Polyline) Test(org.junit.jupiter.api.Test)

Aggregations

Polyline (net.sf.latexdraw.model.api.shape.Polyline)21 Test (org.junit.jupiter.api.Test)14 Point (net.sf.latexdraw.model.api.shape.Point)3 Polygon (net.sf.latexdraw.model.api.shape.Polygon)3 Test (org.junit.Test)3 HelperTest (net.sf.latexdraw.HelperTest)2 BezierCurve (net.sf.latexdraw.model.api.shape.BezierCurve)2 Circle (net.sf.latexdraw.model.api.shape.Circle)2 Freehand (net.sf.latexdraw.model.api.shape.Freehand)2 ModifiablePointsShape (net.sf.latexdraw.model.api.shape.ModifiablePointsShape)2 Rectangle (net.sf.latexdraw.model.api.shape.Rectangle)2 Shape (net.sf.latexdraw.model.api.shape.Shape)2 NotNull (org.jetbrains.annotations.NotNull)2 Click (io.github.interacto.jfx.interaction.library.Click)1 DnD (io.github.interacto.jfx.interaction.library.DnD)1 MultiClick (io.github.interacto.jfx.interaction.library.MultiClick)1 PointsData (io.github.interacto.jfx.interaction.library.PointsData)1 Press (io.github.interacto.jfx.interaction.library.Press)1 ArrayList (java.util.ArrayList)1 Arrays (java.util.Arrays)1