com.vividsolutions.jts.triangulate.quadedge.QuadEdgeSubdivision.initSubdiv()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(96)

本文整理了Java中com.vividsolutions.jts.triangulate.quadedge.QuadEdgeSubdivision.initSubdiv方法的一些代码示例,展示了QuadEdgeSubdivision.initSubdiv的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。QuadEdgeSubdivision.initSubdiv方法的具体详情如下:
包路径:com.vividsolutions.jts.triangulate.quadedge.QuadEdgeSubdivision
类名称:QuadEdgeSubdivision
方法名:initSubdiv

QuadEdgeSubdivision.initSubdiv介绍

暂无

代码示例

代码示例来源:origin: com.vividsolutions/jts

/**
 * Creates a new instance of a quad-edge subdivision based on a frame triangle
 * that encloses a supplied bounding box. A new super-bounding box that
 * contains the triangle is computed and stored.
 * 
 * @param env
 *          the bouding box to surround
 * @param tolerance
 *          the tolerance value for determining if two sites are equal
 */
public QuadEdgeSubdivision(Envelope env, double tolerance) {
  // currentSubdiv = this;
  this.tolerance = tolerance;
  edgeCoincidenceTolerance = tolerance / EDGE_COINCIDENCE_TOL_FACTOR;
  createFrame(env);
  
  startingEdge = initSubdiv();
  locator = new LastFoundQuadEdgeLocator(this);
}

代码示例来源:origin: com.vividsolutions/jts-core

/**
 * Creates a new instance of a quad-edge subdivision based on a frame triangle
 * that encloses a supplied bounding box. A new super-bounding box that
 * contains the triangle is computed and stored.
 * 
 * @param env
 *          the bouding box to surround
 * @param tolerance
 *          the tolerance value for determining if two sites are equal
 */
public QuadEdgeSubdivision(Envelope env, double tolerance) {
  // currentSubdiv = this;
  this.tolerance = tolerance;
  edgeCoincidenceTolerance = tolerance / EDGE_COINCIDENCE_TOL_FACTOR;
  createFrame(env);
  
  startingEdge = initSubdiv();
  locator = new LastFoundQuadEdgeLocator(this);
}

相关文章