Examples of BorderRegions


Examples of org.openpixi.pixi.distributed.movement.boundary.BorderRegions

        settings.getCellWidth(),
        settings.getSimulationWidth() - settings.getCellWidth(),
        settings.getCellHeight(),
        settings.getSimulationHeight() - settings.getCellHeight());

    BorderRegions borders = new BorderRegions(simAreaDouble, innerSimAreaDouble);

    int xmin = -Grid.INTERPOLATION_RADIUS;
    int xmax = myPartGlobal.xsize() + Grid.INTERPOLATION_RADIUS - 1;
    int ymin = -Grid.INTERPOLATION_RADIUS;
    int ymax = myPartGlobal.ysize() + Grid.INTERPOLATION_RADIUS - 1;

    for (int x = xmin; x <= xmax; x++) {
      for (int y = ymin; y <= ymax; y++) {
        double simX = x * settings.getCellWidth() + settings.getCellWidth() / 2;
        double simY = y * settings.getCellHeight() + settings.getCellHeight() / 2;

        int region = borders.getRegion(simX, simY);

        List<SharedData> sharedDatas = sharedDataManager.getBorderSharedData(region);
        List<Point> directions = sharedDataManager.getBorderDirections(region);
        assert sharedDatas.size() == directions.size();

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.