Java Code Examples for sun.awt.geom.Crossings#EvenOdd

The following examples show how to use sun.awt.geom.Crossings#EvenOdd . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Polygon.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
private Crossings getCrossings(double xlo, double ylo,
                               double xhi, double yhi)
{
    Crossings cross = new Crossings.EvenOdd(xlo, ylo, xhi, yhi);
    int lastx = xpoints[npoints - 1];
    int lasty = ypoints[npoints - 1];
    int curx, cury;

    // Walk the edges of the polygon
    for (int i = 0; i < npoints; i++) {
        curx = xpoints[i];
        cury = ypoints[i];
        if (cross.accumulateLine(lastx, lasty, curx, cury)) {
            return null;
        }
        lastx = curx;
        lasty = cury;
    }

    return cross;
}
 
Example 2
Source File: Polygon.java    From jdk8u-dev-jdk with GNU General Public License v2.0 6 votes vote down vote up
private Crossings getCrossings(double xlo, double ylo,
                               double xhi, double yhi)
{
    Crossings cross = new Crossings.EvenOdd(xlo, ylo, xhi, yhi);
    int lastx = xpoints[npoints - 1];
    int lasty = ypoints[npoints - 1];
    int curx, cury;

    // Walk the edges of the polygon
    for (int i = 0; i < npoints; i++) {
        curx = xpoints[i];
        cury = ypoints[i];
        if (cross.accumulateLine(lastx, lasty, curx, cury)) {
            return null;
        }
        lastx = curx;
        lasty = cury;
    }

    return cross;
}
 
Example 3
Source File: Polygon.java    From jdk-1.7-annotated with Apache License 2.0 6 votes vote down vote up
private Crossings getCrossings(double xlo, double ylo,
                               double xhi, double yhi)
{
    Crossings cross = new Crossings.EvenOdd(xlo, ylo, xhi, yhi);
    int lastx = xpoints[npoints - 1];
    int lasty = ypoints[npoints - 1];
    int curx, cury;

    // Walk the edges of the polygon
    for (int i = 0; i < npoints; i++) {
        curx = xpoints[i];
        cury = ypoints[i];
        if (cross.accumulateLine(lastx, lasty, curx, cury)) {
            return null;
        }
        lastx = curx;
        lasty = cury;
    }

    return cross;
}
 
Example 4
Source File: Polygon.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
private Crossings getCrossings(double xlo, double ylo,
                               double xhi, double yhi)
{
    Crossings cross = new Crossings.EvenOdd(xlo, ylo, xhi, yhi);
    int lastx = xpoints[npoints - 1];
    int lasty = ypoints[npoints - 1];
    int curx, cury;

    // Walk the edges of the polygon
    for (int i = 0; i < npoints; i++) {
        curx = xpoints[i];
        cury = ypoints[i];
        if (cross.accumulateLine(lastx, lasty, curx, cury)) {
            return null;
        }
        lastx = curx;
        lasty = cury;
    }

    return cross;
}
 
Example 5
Source File: Polygon.java    From jdk8u_jdk with GNU General Public License v2.0 6 votes vote down vote up
private Crossings getCrossings(double xlo, double ylo,
                               double xhi, double yhi)
{
    Crossings cross = new Crossings.EvenOdd(xlo, ylo, xhi, yhi);
    int lastx = xpoints[npoints - 1];
    int lasty = ypoints[npoints - 1];
    int curx, cury;

    // Walk the edges of the polygon
    for (int i = 0; i < npoints; i++) {
        curx = xpoints[i];
        cury = ypoints[i];
        if (cross.accumulateLine(lastx, lasty, curx, cury)) {
            return null;
        }
        lastx = curx;
        lasty = cury;
    }

    return cross;
}
 
Example 6
Source File: Polygon.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
private Crossings getCrossings(double xlo, double ylo,
                               double xhi, double yhi)
{
    Crossings cross = new Crossings.EvenOdd(xlo, ylo, xhi, yhi);
    int lastx = xpoints[npoints - 1];
    int lasty = ypoints[npoints - 1];
    int curx, cury;

    // Walk the edges of the polygon
    for (int i = 0; i < npoints; i++) {
        curx = xpoints[i];
        cury = ypoints[i];
        if (cross.accumulateLine(lastx, lasty, curx, cury)) {
            return null;
        }
        lastx = curx;
        lasty = cury;
    }

    return cross;
}
 
Example 7
Source File: Polygon.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
private Crossings getCrossings(double xlo, double ylo,
                               double xhi, double yhi)
{
    Crossings cross = new Crossings.EvenOdd(xlo, ylo, xhi, yhi);
    int lastx = xpoints[npoints - 1];
    int lasty = ypoints[npoints - 1];
    int curx, cury;

    // Walk the edges of the polygon
    for (int i = 0; i < npoints; i++) {
        curx = xpoints[i];
        cury = ypoints[i];
        if (cross.accumulateLine(lastx, lasty, curx, cury)) {
            return null;
        }
        lastx = curx;
        lasty = cury;
    }

    return cross;
}
 
Example 8
Source File: Polygon.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
private Crossings getCrossings(double xlo, double ylo,
                               double xhi, double yhi)
{
    Crossings cross = new Crossings.EvenOdd(xlo, ylo, xhi, yhi);
    int lastx = xpoints[npoints - 1];
    int lasty = ypoints[npoints - 1];
    int curx, cury;

    // Walk the edges of the polygon
    for (int i = 0; i < npoints; i++) {
        curx = xpoints[i];
        cury = ypoints[i];
        if (cross.accumulateLine(lastx, lasty, curx, cury)) {
            return null;
        }
        lastx = curx;
        lasty = cury;
    }

    return cross;
}
 
Example 9
Source File: Polygon.java    From Java8CN with Apache License 2.0 6 votes vote down vote up
private Crossings getCrossings(double xlo, double ylo,
                               double xhi, double yhi)
{
    Crossings cross = new Crossings.EvenOdd(xlo, ylo, xhi, yhi);
    int lastx = xpoints[npoints - 1];
    int lasty = ypoints[npoints - 1];
    int curx, cury;

    // Walk the edges of the polygon
    for (int i = 0; i < npoints; i++) {
        curx = xpoints[i];
        cury = ypoints[i];
        if (cross.accumulateLine(lastx, lasty, curx, cury)) {
            return null;
        }
        lastx = curx;
        lasty = cury;
    }

    return cross;
}
 
Example 10
Source File: Polygon.java    From jdk1.8-source-analysis with Apache License 2.0 6 votes vote down vote up
private Crossings getCrossings(double xlo, double ylo,
                               double xhi, double yhi)
{
    Crossings cross = new Crossings.EvenOdd(xlo, ylo, xhi, yhi);
    int lastx = xpoints[npoints - 1];
    int lasty = ypoints[npoints - 1];
    int curx, cury;

    // Walk the edges of the polygon
    for (int i = 0; i < npoints; i++) {
        curx = xpoints[i];
        cury = ypoints[i];
        if (cross.accumulateLine(lastx, lasty, curx, cury)) {
            return null;
        }
        lastx = curx;
        lasty = cury;
    }

    return cross;
}
 
Example 11
Source File: Polygon.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
private Crossings getCrossings(double xlo, double ylo,
                               double xhi, double yhi)
{
    Crossings cross = new Crossings.EvenOdd(xlo, ylo, xhi, yhi);
    int lastx = xpoints[npoints - 1];
    int lasty = ypoints[npoints - 1];
    int curx, cury;

    // Walk the edges of the polygon
    for (int i = 0; i < npoints; i++) {
        curx = xpoints[i];
        cury = ypoints[i];
        if (cross.accumulateLine(lastx, lasty, curx, cury)) {
            return null;
        }
        lastx = curx;
        lasty = cury;
    }

    return cross;
}
 
Example 12
Source File: Polygon.java    From Bytecoder with Apache License 2.0 6 votes vote down vote up
private Crossings getCrossings(double xlo, double ylo,
                               double xhi, double yhi)
{
    Crossings cross = new Crossings.EvenOdd(xlo, ylo, xhi, yhi);
    int lastx = xpoints[npoints - 1];
    int lasty = ypoints[npoints - 1];
    int curx, cury;

    // Walk the edges of the polygon
    for (int i = 0; i < npoints; i++) {
        curx = xpoints[i];
        cury = ypoints[i];
        if (cross.accumulateLine(lastx, lasty, curx, cury)) {
            return null;
        }
        lastx = curx;
        lasty = cury;
    }

    return cross;
}
 
Example 13
Source File: Polygon.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
private Crossings getCrossings(double xlo, double ylo,
                               double xhi, double yhi)
{
    Crossings cross = new Crossings.EvenOdd(xlo, ylo, xhi, yhi);
    int lastx = xpoints[npoints - 1];
    int lasty = ypoints[npoints - 1];
    int curx, cury;

    // Walk the edges of the polygon
    for (int i = 0; i < npoints; i++) {
        curx = xpoints[i];
        cury = ypoints[i];
        if (cross.accumulateLine(lastx, lasty, curx, cury)) {
            return null;
        }
        lastx = curx;
        lasty = cury;
    }

    return cross;
}
 
Example 14
Source File: Polygon.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
private Crossings getCrossings(double xlo, double ylo,
                               double xhi, double yhi)
{
    Crossings cross = new Crossings.EvenOdd(xlo, ylo, xhi, yhi);
    int lastx = xpoints[npoints - 1];
    int lasty = ypoints[npoints - 1];
    int curx, cury;

    // Walk the edges of the polygon
    for (int i = 0; i < npoints; i++) {
        curx = xpoints[i];
        cury = ypoints[i];
        if (cross.accumulateLine(lastx, lasty, curx, cury)) {
            return null;
        }
        lastx = curx;
        lasty = cury;
    }

    return cross;
}
 
Example 15
Source File: Polygon.java    From JDKSourceCode1.8 with MIT License 6 votes vote down vote up
private Crossings getCrossings(double xlo, double ylo,
                               double xhi, double yhi)
{
    Crossings cross = new Crossings.EvenOdd(xlo, ylo, xhi, yhi);
    int lastx = xpoints[npoints - 1];
    int lasty = ypoints[npoints - 1];
    int curx, cury;

    // Walk the edges of the polygon
    for (int i = 0; i < npoints; i++) {
        curx = xpoints[i];
        cury = ypoints[i];
        if (cross.accumulateLine(lastx, lasty, curx, cury)) {
            return null;
        }
        lastx = curx;
        lasty = cury;
    }

    return cross;
}
 
Example 16
Source File: Polygon.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
private Crossings getCrossings(double xlo, double ylo,
                               double xhi, double yhi)
{
    Crossings cross = new Crossings.EvenOdd(xlo, ylo, xhi, yhi);
    int lastx = xpoints[npoints - 1];
    int lasty = ypoints[npoints - 1];
    int curx, cury;

    // Walk the edges of the polygon
    for (int i = 0; i < npoints; i++) {
        curx = xpoints[i];
        cury = ypoints[i];
        if (cross.accumulateLine(lastx, lasty, curx, cury)) {
            return null;
        }
        lastx = curx;
        lasty = cury;
    }

    return cross;
}
 
Example 17
Source File: Polygon.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
private Crossings getCrossings(double xlo, double ylo,
                               double xhi, double yhi)
{
    Crossings cross = new Crossings.EvenOdd(xlo, ylo, xhi, yhi);
    int lastx = xpoints[npoints - 1];
    int lasty = ypoints[npoints - 1];
    int curx, cury;

    // Walk the edges of the polygon
    for (int i = 0; i < npoints; i++) {
        curx = xpoints[i];
        cury = ypoints[i];
        if (cross.accumulateLine(lastx, lasty, curx, cury)) {
            return null;
        }
        lastx = curx;
        lasty = cury;
    }

    return cross;
}
 
Example 18
Source File: Polygon.java    From dragonwell8_jdk with GNU General Public License v2.0 6 votes vote down vote up
private Crossings getCrossings(double xlo, double ylo,
                               double xhi, double yhi)
{
    Crossings cross = new Crossings.EvenOdd(xlo, ylo, xhi, yhi);
    int lastx = xpoints[npoints - 1];
    int lasty = ypoints[npoints - 1];
    int curx, cury;

    // Walk the edges of the polygon
    for (int i = 0; i < npoints; i++) {
        curx = xpoints[i];
        cury = ypoints[i];
        if (cross.accumulateLine(lastx, lasty, curx, cury)) {
            return null;
        }
        lastx = curx;
        lasty = cury;
    }

    return cross;
}