New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@thi.ng/geom-resample

Package Overview
Dependencies
Maintainers
1
Versions
272
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thi.ng/geom-resample - npm Package Compare versions

Comparing version 0.1.10 to 0.1.11

72

CHANGELOG.md

@@ -6,3 +6,3 @@ # Change Log

## [0.1.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.1.9...@thi.ng/geom-resample@0.1.10) (2019-03-21)
## [0.1.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.1.10...@thi.ng/geom-resample@0.1.11) (2019-03-28)

@@ -15,74 +15,4 @@ **Note:** Version bump only for package @thi.ng/geom-resample

## [0.1.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.1.8...@thi.ng/geom-resample@0.1.9) (2019-03-18)
**Note:** Version bump only for package @thi.ng/geom-resample
## [0.1.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.1.7...@thi.ng/geom-resample@0.1.8) (2019-03-12)
**Note:** Version bump only for package @thi.ng/geom-resample
## [0.1.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.1.6...@thi.ng/geom-resample@0.1.7) (2019-03-10)
**Note:** Version bump only for package @thi.ng/geom-resample
## [0.1.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.1.5...@thi.ng/geom-resample@0.1.6) (2019-03-03)
**Note:** Version bump only for package @thi.ng/geom-resample
## [0.1.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.1.4...@thi.ng/geom-resample@0.1.5) (2019-03-01)
**Note:** Version bump only for package @thi.ng/geom-resample
## [0.1.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.1.3...@thi.ng/geom-resample@0.1.4) (2019-02-26)
**Note:** Version bump only for package @thi.ng/geom-resample
## [0.1.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.1.2...@thi.ng/geom-resample@0.1.3) (2019-02-20)
**Note:** Version bump only for package @thi.ng/geom-resample
## [0.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.1.1...@thi.ng/geom-resample@0.1.2) (2019-02-15)
**Note:** Version bump only for package @thi.ng/geom-resample
## [0.1.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-resample@0.1.0...@thi.ng/geom-resample@0.1.1) (2019-02-10)
**Note:** Version bump only for package @thi.ng/geom-resample
# 0.1.0 (2019-02-05)

@@ -89,0 +19,0 @@

2

lib/index.js

@@ -212,4 +212,4 @@ 'use strict';

exports.Sampler = Sampler;
exports.resample = resample;
exports.Sampler = Sampler;
exports.simplify = simplify;

@@ -208,4 +208,4 @@ (function (global, factory) {

exports.Sampler = Sampler;
exports.resample = resample;
exports.Sampler = Sampler;
exports.simplify = simplify;

@@ -212,0 +212,0 @@

{
"name": "@thi.ng/geom-resample",
"version": "0.1.10",
"version": "0.1.11",
"description": "Customizable nD polyline interpolation, re-sampling, splitting & nearest point computation",

@@ -35,7 +35,7 @@ "module": "./index.js",

"dependencies": {
"@thi.ng/checks": "^2.1.3",
"@thi.ng/geom-api": "^0.1.9",
"@thi.ng/geom-closest-point": "^0.1.10",
"@thi.ng/math": "^1.2.0",
"@thi.ng/vectors": "^2.4.4"
"@thi.ng/checks": "^2.1.4",
"@thi.ng/geom-api": "^0.1.10",
"@thi.ng/geom-closest-point": "^0.1.11",
"@thi.ng/math": "^1.2.1",
"@thi.ng/vectors": "^2.5.0"
},

@@ -67,3 +67,3 @@ "keywords": [

"sideEffects": false,
"gitHead": "a8e1ee03ed4fa660408cfa0c781257b8bf7e1fc0"
"gitHead": "1936d357f46f46d0435e3c7597b845898a91b80d"
}

@@ -1,3 +0,2 @@

import { ReadonlyVec } from "@thi.ng/vectors";
import { SamplingOpts } from "@thi.ng/geom-api";
export declare const resample: (pts: ReadonlyVec[], opts: number | Partial<SamplingOpts>, closed?: boolean, copy?: boolean) => ReadonlyVec[];
export declare const resample: (pts: import("@thi.ng/api").ArrayLikeIterable<number>[], opts: number | Partial<SamplingOpts>, closed?: boolean, copy?: boolean) => import("@thi.ng/api").ArrayLikeIterable<number>[];

@@ -12,4 +12,4 @@ import { ReadonlyVec, Vec, VecPair } from "@thi.ng/vectors";

tangentAt(t: number, n?: number): Vec;
splitAt(t: number): ReadonlyVec[][];
splitNear(p: ReadonlyVec): ReadonlyVec[][];
splitAt(t: number): import("@thi.ng/api").ArrayLikeIterable<number>[][];
splitNear(p: ReadonlyVec): import("@thi.ng/api").ArrayLikeIterable<number>[][];
indexAt(t: number): number;

@@ -16,0 +16,0 @@ sampleUniform(dist: number, includeLast?: boolean, result?: Vec[]): Vec[];

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc