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

@thi.ng/geom-subdiv-curve

Package Overview
Dependencies
Maintainers
1
Versions
271
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thi.ng/geom-subdiv-curve - npm Package Compare versions

Comparing version 0.1.44 to 0.1.45

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

## [0.1.45](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@0.1.44...@thi.ng/geom-subdiv-curve@0.1.45) (2020-05-14)
**Note:** Version bump only for package @thi.ng/geom-subdiv-curve
## [0.1.44](https://github.com/thi-ng/umbrella/compare/@thi.ng/geom-subdiv-curve@0.1.43...@thi.ng/geom-subdiv-curve@0.1.44) (2020-05-03)

@@ -8,0 +16,0 @@

7

kernels.d.ts

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

import { ReadonlyVec } from "@thi.ng/vectors";
/**

@@ -8,3 +9,3 @@ * HOF subdiv kernel function for computing 2 split points from 2 source

*/
export declare const kernel2: ([ua, ub]: number[], [va, vb]: number[]) => ([a, b]: import("@thi.ng/api").ArrayLikeIterable<number>[]) => import("@thi.ng/vectors").Vec[];
export declare const kernel2: ([ua, ub]: number[], [va, vb]: number[]) => ([a, b]: ReadonlyVec[]) => import("@thi.ng/vectors").Vec[];
/**

@@ -17,3 +18,3 @@ * HOF subdiv kernel function for computing 2 split points from 3 source

*/
export declare const kernel3: ([ua, ub, uc]: number[], [va, vb, vc]: number[]) => ([a, b, c]: import("@thi.ng/api").ArrayLikeIterable<number>[]) => import("@thi.ng/vectors").Vec[];
export declare const kernel3: ([ua, ub, uc]: number[], [va, vb, vc]: number[]) => ([a, b, c]: ReadonlyVec[]) => import("@thi.ng/vectors").Vec[];
/**

@@ -26,3 +27,3 @@ * HOF subdiv kernel function for computing 2 split points from 5 source

*/
export declare const kernel5: ([ua, ub, uc, ud, ue]: number[], [va, vb, vc, vd, ve]: number[]) => ([a, b, c, d, e]: import("@thi.ng/api").ArrayLikeIterable<number>[]) => import("@thi.ng/vectors").Vec[];
export declare const kernel5: ([ua, ub, uc, ud, ue]: number[], [va, vb, vc, vd, ve]: number[]) => ([a, b, c, d, e]: ReadonlyVec[]) => import("@thi.ng/vectors").Vec[];
//# sourceMappingURL=kernels.d.ts.map
{
"name": "@thi.ng/geom-subdiv-curve",
"version": "0.1.44",
"version": "0.1.45",
"description": "Freely customizable, iterative nD subdivision curves for open / closed geometries",

@@ -36,16 +36,16 @@ "module": "./index.js",

"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@microsoft/api-extractor": "^7.7.13",
"@microsoft/api-extractor": "^7.8.0",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.4",
"@types/node": "^14.0.1",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"ts-node": "^8.9.1",
"ts-node": "^8.10.1",
"typedoc": "^0.17.6",
"typescript": "^3.8.3"
"typescript": "^3.9.2"
},
"dependencies": {
"@thi.ng/geom-api": "^1.0.16",
"@thi.ng/transducers": "^6.4.9",
"@thi.ng/vectors": "^4.3.4",
"tslib": "^1.11.1"
"@thi.ng/geom-api": "^1.0.17",
"@thi.ng/transducers": "^6.5.0",
"@thi.ng/vectors": "^4.4.0",
"tslib": "^1.12.0"
},

@@ -75,3 +75,3 @@ "files": [

"sideEffects": false,
"gitHead": "c11f130122cbaa05b8d48d394c3a164e238c8078"
"gitHead": "97c301379d830c1982c364cfbec8766ff14f73f5"
}

@@ -59,3 +59,3 @@ <!-- This file is generated - DO NOT EDIT! -->

Package sizes (gzipped, pre-treeshake): ESM: 641 bytes / CJS: 722 bytes / UMD: 767 bytes
Package sizes (gzipped, pre-treeshake): ESM: 640 bytes / CJS: 721 bytes / UMD: 764 bytes

@@ -62,0 +62,0 @@ ## Dependencies

import type { SubdivKernel } from "@thi.ng/geom-api";
import type { ReadonlyVec } from "@thi.ng/vectors";
/**

@@ -9,3 +10,3 @@ * {@link http://algorithmicbotany.org/papers/subgpu.sig2003.pdf}

*/
export declare const subdivide: (pts: import("@thi.ng/api").ArrayLikeIterable<number>[], { fn, pre, size }: SubdivKernel, iter?: number) => import("@thi.ng/api").ArrayLikeIterable<number>[];
export declare const subdivide: (pts: ReadonlyVec[], { fn, pre, size }: SubdivKernel, iter?: number) => import("@thi.ng/api").ArrayLikeIterable<number>[];
//# sourceMappingURL=subdivide.d.ts.map
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