• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java Position类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中com.vividsolutions.jts.geomgraph.Position的典型用法代码示例。如果您正苦于以下问题:Java Position类的具体用法?Java Position怎么用?Java Position使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



Position类属于com.vividsolutions.jts.geomgraph包,在下文中一共展示了Position类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: visitInteriorRing

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
private void visitInteriorRing(LineString ring, PlanarGraph graph) {
    Coordinate[] pts = ring.getCoordinates();
    Coordinate pt0 = pts[0];
    /**
     * Find first point in coord list different to initial point.
     * Need special check since the first point may be repeated.
     */
    Coordinate pt1 = findDifferentPoint(pts, pt0);
    Edge e = graph.findEdgeInSameDirection(pt0, pt1);
    DirectedEdge de = (DirectedEdge) graph.findEdgeEnd(e);
    DirectedEdge intDe = null;
    if (de.getLabel().getLocation(0, Position.RIGHT) == Location.INTERIOR) {
        intDe = de;
    } else if (de.getSym().getLabel().getLocation(0, Position.RIGHT) == Location.INTERIOR) {
        intDe = de.getSym();
    }
    Assert.isTrue(intDe != null, "unable to find dirEdge with Interior on RHS");

    this.visitLinkedDirectedEdges(intDe);
}
 
开发者ID:gegy1000,项目名称:Earth,代码行数:21,代码来源:ConnectedInteriorTester.java


示例2: findResultAreaEdges

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
/**
     * Find all edges whose label indicates that they are in the result area(s),
     * according to the operation being performed.  Since we want polygon shells to be
     * oriented CW, choose dirEdges with the interior of the result on the RHS.
     * Mark them as being in the result.
     * Interior Area edges are the result of dimensional collapses.
     * They do not form part of the result area boundary.
     */
    private void findResultAreaEdges(int opCode) {
        for (Object o : graph.getEdgeEnds()) {
            DirectedEdge de = (DirectedEdge) o;
            // mark all dirEdges with the appropriate label
            Label label = de.getLabel();
            if (label.isArea()
                    && !de.isInteriorAreaEdge()
                    && isResultOfOp(
                    label.getLocation(0, Position.RIGHT),
                    label.getLocation(1, Position.RIGHT),
                    opCode)) {
                de.setInResult(true);
//Debug.print("in result "); Debug.println(de);
            }
        }
    }
 
开发者ID:gegy1000,项目名称:Earth,代码行数:25,代码来源:OverlayOp.java


示例3: getRightmostSideOfSegment

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
private int getRightmostSideOfSegment(DirectedEdge de, int i) {
    Edge e = de.getEdge();
    Coordinate coord[] = e.getCoordinates();

    if (i < 0 || i + 1 >= coord.length) {
        return -1;
    }
    if (coord[i].y == coord[i + 1].y) {
        return -1;    // indicates edge is parallel to x-axis
    }

    int pos = Position.LEFT;
    if (coord[i].y < coord[i + 1].y) {
        pos = Position.RIGHT;
    }
    return pos;
}
 
开发者ID:gegy1000,项目名称:Earth,代码行数:18,代码来源:RightmostEdgeFinder.java


示例4: computeRingBufferCurve

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
private void computeRingBufferCurve(Coordinate[] inputPts, int side, OffsetSegmentGenerator segGen) {
        // simplify input line to improve performance
        double distTol = simplifyTolerance(this.distance);
        // ensure that correct side is simplified
        if (side == Position.RIGHT) {
            distTol = -distTol;
        }
        Coordinate[] simp = BufferInputLineSimplifier.simplify(inputPts, distTol);
//    Coordinate[] simp = inputPts;

        int n = simp.length - 1;
        segGen.initSideSegments(simp[n - 1], simp[0], side);
        for (int i = 1; i <= n; i++) {
            boolean addStartPoint = i != 1;
            segGen.addNextSegment(simp[i], addStartPoint);
        }
        segGen.closeRing();
    }
 
开发者ID:gegy1000,项目名称:Earth,代码行数:19,代码来源:OffsetCurveBuilder.java


示例5: addPolygonRing

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
/**
 * Adds an offset curve for a polygon ring.
 * The side and left and right topological location arguments
 * assume that the ring is oriented CW.
 * If the ring is in the opposite orientation,
 * the left and right locations must be interchanged and the side flipped.
 *
 * @param coord the coordinates of the ring (must not contain repeated points)
 * @param offsetDistance the distance at which to create the buffer
 * @param side the side of the ring on which to construct the buffer line
 * @param cwLeftLoc the location on the L side of the ring (if it is CW)
 * @param cwRightLoc the location on the R side of the ring (if it is CW)
 */
private void addPolygonRing(Coordinate[] coord, double offsetDistance, int side, int cwLeftLoc, int cwRightLoc) {
    // don't bother adding ring if it is "flat" and will disappear in the output
    if (offsetDistance == 0.0 && coord.length < LinearRing.MINIMUM_VALID_SIZE) {
        return;
    }

    int leftLoc = cwLeftLoc;
    int rightLoc = cwRightLoc;
    if (coord.length >= LinearRing.MINIMUM_VALID_SIZE
            && CGAlgorithms.isCCW(coord)) {
        leftLoc = cwRightLoc;
        rightLoc = cwLeftLoc;
        side = Position.opposite(side);
    }
    Coordinate[] curve = this.curveBuilder.getRingCurve(coord, side, offsetDistance);
    this.addCurve(curve, leftLoc, rightLoc);
}
 
开发者ID:gegy1000,项目名称:Earth,代码行数:31,代码来源:OffsetCurveSetBuilder.java


示例6: findResultEdges

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
/**
     * Find all edges whose depths indicates that they are in the result area(s).
     * Since we want polygon shells to be
     * oriented CW, choose dirEdges with the interior of the result on the RHS.
     * Mark them as being in the result.
     * Interior Area edges are the result of dimensional collapses.
     * They do not form part of the result area boundary.
     */
    public void findResultEdges() {
        for (Object aDirEdgeList : dirEdgeList) {
            DirectedEdge de = (DirectedEdge) aDirEdgeList;
            /**
             * Select edges which have an interior depth on the RHS
             * and an exterior depth on the LHS.
             * Note that because of weird rounding effects there may be
             * edges which have negative depths!  Negative depths
             * count as "outside".
             */
            // <FIX> - handle negative depths
            if (de.getDepth(Position.RIGHT) >= 1
                    && de.getDepth(Position.LEFT) <= 0
                    && !de.isInteriorAreaEdge()) {
                de.setInResult(true);
//Debug.print("in result "); Debug.println(de);
            }
        }
    }
 
开发者ID:gegy1000,项目名称:Earth,代码行数:28,代码来源:BufferSubgraph.java


示例7: computeRingBufferCurve

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
private void computeRingBufferCurve(Coordinate[] inputPts, int side, OffsetSegmentGenerator segGen) {
        // simplify input line to improve performance
        double distTol = simplifyTolerance(distance);
        // ensure that correct side is simplified
        if (side == Position.RIGHT)
            distTol = -distTol;
        Coordinate[] simp = BufferInputLineSimplifier.simplify(inputPts, distTol);
//    Coordinate[] simp = inputPts;

        int n = simp.length - 1;
        segGen.initSideSegments(simp[n - 1], simp[0], side);
        for (int i = 1; i <= n; i++) {
            boolean addStartPoint = i != 1;
            segGen.addNextSegment(simp[i], addStartPoint);
        }
        segGen.closeRing();
    }
 
开发者ID:Semantive,项目名称:jts,代码行数:18,代码来源:OffsetCurveBuilder.java


示例8: addPolygonRing

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
/**
 * Adds an offset curve for a polygon ring.
 * The side and left and right topological location arguments
 * assume that the ring is oriented CW.
 * If the ring is in the opposite orientation,
 * the left and right locations must be interchanged and the side flipped.
 *
 * @param coord          the coordinates of the ring (must not contain repeated points)
 * @param offsetDistance the distance at which to create the buffer
 * @param side           the side of the ring on which to construct the buffer line
 * @param cwLeftLoc      the location on the L side of the ring (if it is CW)
 * @param cwRightLoc     the location on the R side of the ring (if it is CW)
 */
private void addPolygonRing(Coordinate[] coord, double offsetDistance, int side, int cwLeftLoc, int cwRightLoc) {
    // don't bother adding ring if it is "flat" and will disappear in the output
    if (offsetDistance == 0.0 && coord.length < LinearRing.MINIMUM_VALID_SIZE)
        return;

    int leftLoc = cwLeftLoc;
    int rightLoc = cwRightLoc;
    if (coord.length >= LinearRing.MINIMUM_VALID_SIZE
            && CGAlgorithms.isCCW(coord)) {
        leftLoc = cwRightLoc;
        rightLoc = cwLeftLoc;
        side = Position.opposite(side);
    }
    Coordinate[] curve = curveBuilder.getRingCurve(coord, side, offsetDistance);
    addCurve(curve, leftLoc, rightLoc);
}
 
开发者ID:Semantive,项目名称:jts,代码行数:30,代码来源:OffsetCurveSetBuilder.java


示例9: addNextSegment

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
public void addNextSegment(Coordinate p, boolean addStartPoint) {
    // s0-s1-s2 are the coordinates of the previous segment and the current one
    s0 = s1;
    s1 = s2;
    s2 = p;
    seg0.setCoordinates(s0, s1);
    computeOffsetSegment(seg0, side, distance, offset0);
    seg1.setCoordinates(s1, s2);
    computeOffsetSegment(seg1, side, distance, offset1);

    // do nothing if points are equal
    if (s1.equals(s2)) return;

    int orientation = CGAlgorithms.computeOrientation(s0, s1, s2);
    boolean outsideTurn =
            (orientation == CGAlgorithms.CLOCKWISE && side == Position.LEFT)
                    || (orientation == CGAlgorithms.COUNTERCLOCKWISE && side == Position.RIGHT);

    if (orientation == 0) { // lines are collinear
        addCollinear(addStartPoint);
    } else if (outsideTurn) {
        addOutsideTurn(orientation, addStartPoint);
    } else { // inside turn
        addInsideTurn(orientation, addStartPoint);
    }
}
 
开发者ID:Semantive,项目名称:jts,代码行数:27,代码来源:OffsetSegmentGenerator.java


示例10: computeRingBufferCurve

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
private void computeRingBufferCurve(Coordinate[] inputPts, int side, OffsetSegmentGenerator segGen)
  {
    // simplify input line to improve performance
    double distTol = simplifyTolerance(distance);
    // ensure that correct side is simplified
    if (side == Position.RIGHT)
      distTol = -distTol;
    Coordinate[] simp = BufferInputLineSimplifier.simplify(inputPts, distTol);
//    Coordinate[] simp = inputPts;
    
    int n = simp.length - 1;
    segGen.initSideSegments(simp[n - 1], simp[0], side);
    for (int i = 1; i <= n; i++) {
      boolean addStartPoint = i != 1;
      segGen.addNextSegment(simp[i], addStartPoint);
    }
    segGen.closeRing();
  }
 
开发者ID:GitHubDroid,项目名称:geodroid_master_update,代码行数:19,代码来源:OffsetCurveBuilder.java


示例11: merge

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
/**
 * merge updates only the NULL attributes of this object
 * with the attributes of another.
 */
public void merge(TopologyLocation gl)
{
  // if the src is an Area label & and the dest is not, increase the dest to be an Area
  if (gl.location.length > location.length) {
    int [] newLoc = new int[3];
    newLoc[Position.ON] = location[Position.ON];
    newLoc[Position.LEFT] = Location.NONE;
    newLoc[Position.RIGHT] = Location.NONE;
    location = newLoc;
  }
  for (int i = 0; i < location.length; i++) {
    if (location[i] == Location.NONE && i < gl.location.length)
      location[i] = gl.location[i];
  }
}
 
开发者ID:GitHubDroid,项目名称:geodroid_master_update,代码行数:20,代码来源:TopologyLocation.java


示例12: addRoughOffsetCurves

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
private void addRoughOffsetCurves(Collection offsetCurves, Geometry sourceCurve, BufferParameters parameters, Double offsetDistance) {

        OffsetCurveBuilder builder = new OffsetCurveBuilder(
                sourceCurve.getFactory().getPrecisionModel(), parameters);

        for (int i = 0; i < sourceCurve.getNumGeometries(); i++) {
            if (sourceCurve.getGeometryN(i) instanceof LineString) {
                LineString lineString = (LineString) sourceCurve.getGeometryN(i);
                Coordinate[] cc = lineString.getCoordinates();
                if (lineString.isClosed()) {
                    offsetCurves.add(lineString.getFactory().createLineString(
                            builder.getRingCurve(cc,
                            offsetDistance > 0 ? Position.LEFT : Position.RIGHT,
                            Math.abs(offsetDistance))));
                } else {
                    offsetCurves.add(lineString.getFactory().createLineString(
                            builder.getOffsetCurve(cc, offsetDistance)));
                }
            }
        }
    }
 
开发者ID:geobeyond,项目名称:fluxomajic,代码行数:22,代码来源:FluxoFilterFunction.java


示例13: setInteriorEdgesInResult

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
private void setInteriorEdgesInResult(PlanarGraph graph) {
    for (Object o : graph.getEdgeEnds()) {
        DirectedEdge de = (DirectedEdge) o;
        if (de.getLabel().getLocation(0, Position.RIGHT) == Location.INTERIOR) {
            de.setInResult(true);
        }
    }
}
 
开发者ID:gegy1000,项目名称:Earth,代码行数:9,代码来源:ConnectedInteriorTester.java


示例14: isPotentialResultAreaEdge

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
private boolean isPotentialResultAreaEdge(DirectedEdge de, int opCode) {
    // mark all dirEdges with the appropriate label
    Label label = de.getLabel();
    return label.isArea()
            && !de.isInteriorAreaEdge()
            && OverlayOp.isResultOfOp(
            label.getLocation(0, Position.RIGHT),
            label.getLocation(1, Position.RIGHT),
            opCode);
}
 
开发者ID:gegy1000,项目名称:Earth,代码行数:11,代码来源:ConsistentPolygonRingChecker.java


示例15: computeLabelsFromDepths

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
/**
 * Update the labels for edges according to their depths.
 * For each edge, the depths are first normalized.
 * Then, if the depths for the edge are equal,
 * this edge must have collapsed into a line edge.
 * If the depths are not equal, update the label
 * with the locations corresponding to the depths
 * (i.e. a depth of 0 corresponds to a Location of EXTERIOR,
 * a depth of 1 corresponds to INTERIOR)
 */
private void computeLabelsFromDepths() {
    for (Iterator it = this.edgeList.iterator(); it.hasNext(); ) {
        Edge e = (Edge) it.next();
        Label lbl = e.getLabel();
        Depth depth = e.getDepth();
        /**
         * Only check edges for which there were duplicates,
         * since these are the only ones which might
         * be the result of dimensional collapses.
         */
        if (!depth.isNull()) {
            depth.normalize();
            for (int i = 0; i < 2; i++) {
                if (!lbl.isNull(i) && lbl.isArea() && !depth.isNull(i)) {
                    /**
                     * if the depths are equal, this edge is the result of
                     * the dimensional collapse of two or more edges.
                     * It has the same location on both sides of the edge,
                     * so it has collapsed to a line.
                     */
                    if (depth.getDelta(i) == 0) {
                        lbl.toLine(i);
                    } else {
                        /**
                         * This edge may be the result of a dimensional collapse,
                         * but it still has different locations on both sides.  The
                         * label of the edge must be updated to reflect the resultant
                         * side locations indicated by the depth values.
                         */
                        Assert.isTrue(!depth.isNull(i, Position.LEFT), "depth of LEFT side has not been initialized");
                        lbl.setLocation(i, Position.LEFT, depth.getLocation(i, Position.LEFT));
                        Assert.isTrue(!depth.isNull(i, Position.RIGHT), "depth of RIGHT side has not been initialized");
                        lbl.setLocation(i, Position.RIGHT, depth.getLocation(i, Position.RIGHT));
                    }
                }
            }
        }
    }
}
 
开发者ID:gegy1000,项目名称:Earth,代码行数:50,代码来源:OverlayOp.java


示例16: findEdge

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
public void findEdge(List dirEdgeList) {
    /**
     * Check all forward DirectedEdges only.  This is still general,
     * because each edge has a forward DirectedEdge.
     */
    for (Object aDirEdgeList : dirEdgeList) {
        DirectedEdge de = (DirectedEdge) aDirEdgeList;
        if (!de.isForward()) {
            continue;
        }
        this.checkForRightmostCoordinate(de);
    }

    /**
     * If the rightmost point is a node, we need to identify which of
     * the incident edges is rightmost.
     */
    Assert.isTrue(this.minIndex != 0 || this.minCoord.equals(this.minDe.getCoordinate()), "inconsistency in rightmost processing");
    if (this.minIndex == 0) {
        this.findRightmostEdgeAtNode();
    } else {
        this.findRightmostEdgeAtVertex();
    }
    /**
     * now check that the extreme side is the R side.
     * If not, use the sym instead.
     */
    this.orientedDe = this.minDe;
    int rightmostSide = this.getRightmostSide(this.minDe, this.minIndex);
    if (rightmostSide == Position.LEFT) {
        this.orientedDe = this.minDe.getSym();
    }
}
 
开发者ID:gegy1000,项目名称:Earth,代码行数:34,代码来源:RightmostEdgeFinder.java


示例17: computeLineBufferCurve

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
private void computeLineBufferCurve(Coordinate[] inputPts, OffsetSegmentGenerator segGen) {
        double distTol = simplifyTolerance(this.distance);

        //--------- compute points for left side of line
        // Simplify the appropriate side of the line before generating
        Coordinate[] simp1 = BufferInputLineSimplifier.simplify(inputPts, distTol);
        // MD - used for testing only (to eliminate simplification)
//    Coordinate[] simp1 = inputPts;

        int n1 = simp1.length - 1;
        segGen.initSideSegments(simp1[0], simp1[1], Position.LEFT);
        for (int i = 2; i <= n1; i++) {
            segGen.addNextSegment(simp1[i], true);
        }
        segGen.addLastSegment();
        // add line cap for end of line
        segGen.addLineEndCap(simp1[n1 - 1], simp1[n1]);

        //---------- compute points for right side of line
        // Simplify the appropriate side of the line before generating
        Coordinate[] simp2 = BufferInputLineSimplifier.simplify(inputPts, -distTol);
        // MD - used for testing only (to eliminate simplification)
//    Coordinate[] simp2 = inputPts;
        int n2 = simp2.length - 1;

        // since we are traversing line in opposite order, offset position is still LEFT
        segGen.initSideSegments(simp2[n2], simp2[n2 - 1], Position.LEFT);
        for (int i = n2 - 2; i >= 0; i--) {
            segGen.addNextSegment(simp2[i], true);
        }
        segGen.addLastSegment();
        // add line cap for start of line
        segGen.addLineEndCap(simp2[1], simp2[0]);

        segGen.closeRing();
    }
 
开发者ID:gegy1000,项目名称:Earth,代码行数:37,代码来源:OffsetCurveBuilder.java


示例18: computeSingleSidedBufferCurve

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
private void computeSingleSidedBufferCurve(Coordinate[] inputPts, boolean isRightSide, OffsetSegmentGenerator segGen) {
        double distTol = simplifyTolerance(this.distance);

        if (isRightSide) {
            // add original line
            segGen.addSegments(inputPts, true);

            //---------- compute points for right side of line
            // Simplify the appropriate side of the line before generating
            Coordinate[] simp2 = BufferInputLineSimplifier.simplify(inputPts, -distTol);
            // MD - used for testing only (to eliminate simplification)
            //    Coordinate[] simp2 = inputPts;
            int n2 = simp2.length - 1;

            // since we are traversing line in opposite order, offset position is still LEFT
            segGen.initSideSegments(simp2[n2], simp2[n2 - 1], Position.LEFT);
            segGen.addFirstSegment();
            for (int i = n2 - 2; i >= 0; i--) {
                segGen.addNextSegment(simp2[i], true);
            }
        } else {
            // add original line
            segGen.addSegments(inputPts, false);

            //--------- compute points for left side of line
            // Simplify the appropriate side of the line before generating
            Coordinate[] simp1 = BufferInputLineSimplifier.simplify(inputPts, distTol);
            // MD - used for testing only (to eliminate simplification)
//      Coordinate[] simp1 = inputPts;

            int n1 = simp1.length - 1;
            segGen.initSideSegments(simp1[0], simp1[1], Position.LEFT);
            segGen.addFirstSegment();
            for (int i = 2; i <= n1; i++) {
                segGen.addNextSegment(simp1[i], true);
            }
        }
        segGen.addLastSegment();
        segGen.closeRing();
    }
 
开发者ID:gegy1000,项目名称:Earth,代码行数:41,代码来源:OffsetCurveBuilder.java


示例19: computeOffsetCurve

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
private void computeOffsetCurve(Coordinate[] inputPts, boolean isRightSide, OffsetSegmentGenerator segGen) {
        double distTol = simplifyTolerance(this.distance);

        if (isRightSide) {
            //---------- compute points for right side of line
            // Simplify the appropriate side of the line before generating
            Coordinate[] simp2 = BufferInputLineSimplifier.simplify(inputPts, -distTol);
            // MD - used for testing only (to eliminate simplification)
            //    Coordinate[] simp2 = inputPts;
            int n2 = simp2.length - 1;

            // since we are traversing line in opposite order, offset position is still LEFT
            segGen.initSideSegments(simp2[n2], simp2[n2 - 1], Position.LEFT);
            segGen.addFirstSegment();
            for (int i = n2 - 2; i >= 0; i--) {
                segGen.addNextSegment(simp2[i], true);
            }
        } else {
            //--------- compute points for left side of line
            // Simplify the appropriate side of the line before generating
            Coordinate[] simp1 = BufferInputLineSimplifier.simplify(inputPts, distTol);
            // MD - used for testing only (to eliminate simplification)
//      Coordinate[] simp1 = inputPts;

            int n1 = simp1.length - 1;
            segGen.initSideSegments(simp1[0], simp1[1], Position.LEFT);
            segGen.addFirstSegment();
            for (int i = 2; i <= n1; i++) {
                segGen.addNextSegment(simp1[i], true);
            }
        }
        segGen.addLastSegment();
    }
 
开发者ID:gegy1000,项目名称:Earth,代码行数:34,代码来源:OffsetCurveBuilder.java


示例20: depthDelta

import com.vividsolutions.jts.geomgraph.Position; //导入依赖的package包/类
/**
 * Compute the change in depth as an edge is crossed from R to L
 */
private static int depthDelta(Label label) {
    int lLoc = label.getLocation(0, Position.LEFT);
    int rLoc = label.getLocation(0, Position.RIGHT);
    if (lLoc == Location.INTERIOR && rLoc == Location.EXTERIOR) {
        return 1;
    } else if (lLoc == Location.EXTERIOR && rLoc == Location.INTERIOR) {
        return -1;
    }
    return 0;
}
 
开发者ID:gegy1000,项目名称:Earth,代码行数:14,代码来源:BufferBuilder.java



注:本文中的com.vividsolutions.jts.geomgraph.Position类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java TridentContext类代码示例发布时间:1970-01-01
下一篇:
Java ConflictException类代码示例发布时间:1970-01-01
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap