Package sc.math

Examples of sc.math.Spline2D


                System.exit(0);
            }
        });
        setVisible(true);

        spline = new Spline2D(new CatmullRomCurve());
        selected = -1;
        mouse = new Point();

        // start with one randomly generated curve
        for (int i = 0; i < 2; i++) {
View Full Code Here


                System.exit(0);
            }
        });
        setVisible(true);

        spline = new Spline2D(new BezierCurve());
        selected = -1;
        mouse = new Point();
        delta = new Point();

        // start with one randomly generated curve
View Full Code Here

TOP

Related Classes of sc.math.Spline2D

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.