Examples of SKPoly6


Examples of org.cmj.flowy.simulation.smothingkernel.SKPoly6

     */
    public SPHSimulation(final float cellSpace, final RectangleF domain, final float viscosity) {
        theCellSpacing = cellSpace;
        theViscosity = viscosity;
        theGrid = new IndexGrid(cellSpace, domain);
        theSKGeneral = new SKPoly6(cellSpace);
        theSKPressure = new SKSpiky(cellSpace);
        theSKViscosity = new SKViscosity(cellSpace);

        // Set the bounds
        theMaxWidth = domain.x + domain.width;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.