Package org.jzy3d.plot3d.builder

Examples of org.jzy3d.plot3d.builder.Mapper


        initChart();
    }

    public void initChart(){
        // Define a function to plot
        Mapper mapper = new Mapper(){
            public double f(double x, double y) {
                double sigma = 10;
                return Math.exp( -(x*x+y*y) / sigma  *  Math.abs( Math.cos( 2 * Math.PI * ( x*x + y*y ) ) );
            }
        };
View Full Code Here


        initChart();
    }

    public void initChart(){
        // Define a function to plot
        Mapper mapper = new Mapper(){
            public double f(double x, double y) {
                double sigma = 10;
                return Math.exp( -(x*x+y*y) / sigma  *  Math.abs( Math.cos( 2 * Math.PI * ( x*x + y*y ) ) );
            }
        };
View Full Code Here

TOP

Related Classes of org.jzy3d.plot3d.builder.Mapper

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.