clean-pslg

WebJar for clean-pslg

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

clean-pslg
Последняя версия

Последняя версия

1.1.2
Дата

Дата

Тип

Тип

jar
Описание

Описание

clean-pslg
WebJar for clean-pslg
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/mikolalysenko/clean-pslg

Скачать clean-pslg

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/clean-pslg/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>clean-pslg</artifactId>
    <version>1.1.2</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/clean-pslg/
implementation 'org.webjars.npm:clean-pslg:1.1.2'
// https://jarcasting.com/artifacts/org.webjars.npm/clean-pslg/
implementation ("org.webjars.npm:clean-pslg:1.1.2")
'org.webjars.npm:clean-pslg:jar:1.1.2'
<dependency org="org.webjars.npm" name="clean-pslg" rev="1.1.2">
  <artifact name="clean-pslg" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='clean-pslg', version='1.1.2')
)
libraryDependencies += "org.webjars.npm" % "clean-pslg" % "1.1.2"
[org.webjars.npm/clean-pslg "1.1.2"]

Зависимости

compile (7)

Идентификатор библиотеки Тип Версия
org.webjars.npm : nextafter jar [1.0.0,2)
org.webjars.npm : robust-segment-intersect jar [1.0.1,2)
org.webjars.npm : uniq jar [1.0.1,2)
org.webjars.npm : union-find jar [1.0.2,2)
org.webjars.npm : big-rat jar [1.0.3,2)
org.webjars.npm : rat-vec jar [1.1.1,2)
org.webjars.npm : box-intersect jar [1.0.1,2)

Модули Проекта

Данный проект не имеет модулей.

clean-pslg

Resolves all self intersections, t-junctions, and removes duplicate vertices/edges from a planar straight line graph using iterated snap rounding.

Demo

Click on the following link to try out clean-pslg in your browser:

Example

This module really only does one thing, which is clean up planar straight line graphs. You invoke it by passing it an array of points and an array of edges like so:

var cleanPSLG = require('clean-pslg')

//Create a planar straight line graph with many degenerate crossings
var points      = [
  [ 0.25, 0.5  ],
  [ 0.75, 0.5  ],
  [ 0.5,  0.25 ],
  [ 0.5,  0.75 ],
  [ 0.25, 0.25 ],
  [ 0.75, 0.75 ],
  [ 0.25, 0.75 ],
  [ 0.75, 0.25 ]
]

//These are the edges of the graph
//They are defined by pairs of indices of vertices
var edges       = [
  [0, 1],
  [2, 3],
  [4, 5],
  [6, 7]
]

//Run clean up on the graph
if(cleanPSLG(points, edges)) {
  console.log('removed degeneracies from graph')
}

//clean-pslg operates on the graph in place, so after running it the points/edges will be modified
console.log('points = \n', points)
console.log('edges = \n', edges)

Output

The program will output the following text:

removed degeneracies from graph
points =
 [ [ 0.25, 0.5 ],
  [ 0.75, 0.5 ],
  [ 0.5, 0.25 ],
  [ 0.5, 0.75 ],
  [ 0.25, 0.25 ],
  [ 0.75, 0.75 ],
  [ 0.25, 0.75 ],
  [ 0.75, 0.25 ],
  [ 0.5, 0.5 ] ]
edges =
 [ [ 8, 0 ],
  [ 1, 8 ],
  [ 8, 2 ],
  [ 3, 8 ],
  [ 8, 4 ],
  [ 5, 8 ],
  [ 8, 6 ],
  [ 7, 8 ],
  [ 8, 8 ] ]

Visually, this corresponds to the following refinement of a planar graph:

Install

npm i clean-pslg

API

require('clean-pslg')(points, edges[, colors])

Processes an unoriented planar straight line graph defined by points and edges in place.

  • points is an array encoding the vertices of the planar straight line graph as pairs of numbers
  • edges is an array encoding the edges of the planar straight line graph as pairs of indices
  • colors is an optional array of edge colors. If specified, only merge edges if they have the same color. This can be used to implement orientation preservation or handle solid geometry.

The following degeneracies are handled:

  • Duplicate points are merged
  • Duplicate edges are merged
  • T-junctions are split
  • Edge crossings are split

The resulting graph meets all invariants required by cdt2d, so it may be triangulated. Note that this procedure does not preserve orientation.

Returns true if repairs were necessary, otherwise false

Note This is a destructive procedure, which means that the contents of points and edges may change. If you don't want this to happen, you should make a deep copy of points and edges before calling clean-pslg

License

(c) 2015 Mikola Lysenko. MIT License

Версии библиотеки

Версия
1.1.2