/* * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. */ import javafx.animation.PathTransition; import javafx.application.Application; import javafx.scene.shape.Circle; import javafx.stage.Stage; import javafx.util.Duration; /** * * @author Alexander Kouznetsov */ public class Bug extends Application { public static void main(String[] args) { // System.setProperty("prism.dirtyopts", "false"); launch(args); } @Override public void start(final Stage stage) throws Exception { PathTransition pt = new PathTransition(Duration.millis(1000), new Circle(100)); pt.interpolate(0); } }