normalize-path-scale

WebJar for normalize-path-scale

Лицензия

Лицензия

MIT
Категории

Категории

ORM Данные
Группа

Группа

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

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

normalize-path-scale
Последняя версия

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

2.0.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

normalize-path-scale
WebJar for normalize-path-scale
Ссылка на сайт

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

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

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

https://github.com/mattdesl/normalize-path-scale

Скачать normalize-path-scale

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

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

Зависимости

compile (2)

Идентификатор библиотеки Тип Версия
org.webjars.npm : bound-points jar [1.0.0,2)
org.webjars.npm : unlerp jar [1.0.1,2)

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

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

normalize-path-scale

stable

Normalizes a 2D path to its bounding box, producing positions that are in the -1.0 ... 1.0 range with correct aspect ratio. For example; to render arbitrary SVG paths in 3D, centred in world units.

This does not produce a copy of the path, but instead mutates it in place.

var path = [ [x1, y1], [x2, y2], ... ]

//normalize path to -1.0 .. 1.0
normalize(path)

//render with webgl / canvas / etc
//...

Usage

NPM

normalize(path[, bounds])

Normalizes the 2D path in place, scaling the points to -1.0 .. 1.0 range. Maintains aspect ratio of the path.

You can specify bounds for a custom bounding box:

[ [minX, minY], [maxX, maxY] ]

Otherwise calculates the bounding box with bound-points.

Returns the specified path.

If the width or height of the bounding box is zero, this function returns early.

Changes

  • 2.0 changes the array in place, uses bound-points, returns early on zero size
  • 1.0 a simple version that does not mutate the input

License

MIT, see LICENSE.md for details.

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

Версия
2.0.0