/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package shapeintersecttapp; import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.image.ImageView; import javafx.scene.layout.HBox; import javafx.scene.layout.Pane; import javafx.scene.layout.VBox; import javafx.scene.paint.Color; import javafx.scene.paint.Paint; import javafx.scene.shape.*; import javafx.stage.Stage; /** * * @author cthulhu */ public class ShapeIntersecttApp extends Application { /** * @param args the command line arguments */ public static void main(String[] args) { ShapeIntersecttApp.launch(args); } private Circle getCircle(Color stroce_col) { Circle circle = new Circle(100.0, 100.0, 80.0); circle.setFill(null); circle.setStroke(stroce_col); circle.getStrokeDashArray().add(16.); circle.getStrokeDashArray().add(14.); circle.setStrokeWidth(5); circle.setStrokeLineCap(StrokeLineCap.ROUND); return circle; } private Rectangle getRect() { Rectangle rect = new Rectangle(200.0, 200.0); rect.setFill(Color.RED); return rect; } @Override public void start(Stage stage) throws Exception { double h = 800; double w = 600; Rectangle rect1 = getRect(); Rectangle rect2 = getRect(); Rectangle rect3 = getRect(); Circle circle1 = getCircle(Color.BLACK); Circle circle3 = getCircle(Color.BLACK); rect1.setClip(Path.intersect(rect1, circle1)); rect3.setClip(circle3); stage.setTitle("Area Intersect Clip Test"); VBox cont = new VBox(); HBox def_shapes = new HBox(); HBox clip_with_intersect_nn = new HBox(); //clip with result of intersection of shape and another shape with NOT null stroke HBox clip_without_intersect_nn = new HBox(); //clip with another shape with NOT null stroke def_shapes.getChildren().addAll(rect2, circle1); clip_with_intersect_nn.getChildren().addAll(rect1); // result of clipping rect with intersection of rect and circle clip_without_intersect_nn.getChildren().addAll(rect3); // result of clipping rectangle with circle cont.getChildren().addAll(def_shapes, clip_with_intersect_nn, clip_without_intersect_nn); Scene scene = new Scene(cont, w, h); stage.setScene(scene); stage.show(); } }