Examples of coordMin()


Examples of net.algart.math.patterns.Pattern.coordMin()

                System.out.println("It is origin of coordinates");
            }
            if (p.isSurelyInteger()) {
                System.out.println("It is integer");
            }
            System.out.println("Minimal coordinates: " + p.coordMin());
            System.out.println("Maximal coordinates: " + p.coordMax());
            for (int k = 0; k < p.dimCount(); k++) {
                System.out.println("Range of coordinate #" + k + ": " + p.coordRange(k));
            }
            points = p.round().lowerSurface(iterationIndex % dimCount).points();
View Full Code Here

Examples of net.algart.math.patterns.UniformGridPattern.coordMin()

                System.out.println("It is also rectangular");
            }
        }
        System.out.println("Grid origin: " + p.originOfGrid());
        System.out.println("Grid steps vector: " + Point.valueOf(p.stepsOfGrid()));
        System.out.println("Minimal coordinates: " + p.coordMin());
        System.out.println("Maximal coordinates: " + p.coordMax());
        System.out.println("Minimal grid indexes: " + p.gridIndexMin());
        System.out.println("Maximal grid indexes: " + p.gridIndexMax());
        Set<IPoint> roundedPoints = p.roundedPoints();
        System.out.println(roundedPoints.size() + " rounded points");
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.