@thi.ng/vectors
Advanced tools
Comparing version 0.1.2 to 0.1.3
@@ -6,2 +6,10 @@ # Change Log | ||
<a name="0.1.3"></a> | ||
## [0.1.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@0.1.2...@thi.ng/vectors@0.1.3) (2018-08-01) | ||
**Note:** Version bump only for package @thi.ng/vectors | ||
<a name="0.1.2"></a> | ||
@@ -8,0 +16,0 @@ ## [0.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/vectors@0.1.1...@thi.ng/vectors@0.1.2) (2018-07-30) |
import { ICopy, IEqualsDelta } from "@thi.ng/api/api"; | ||
import { Vec } from "./api"; | ||
import { IVec, Vec } from "./api"; | ||
export declare const opg1: (fn: (x: number) => number, a: Vec, num?: number, i?: number, s?: number) => Vec; | ||
@@ -42,3 +42,3 @@ export declare const opg2: (fn: (x: number, y: number) => number, a: Vec, b: ArrayLike<number>, num?: number, ia?: number, ib?: number, sa?: number, sb?: number) => Vec; | ||
export declare const smoothStep: (a: Vec, b: ArrayLike<number>, c: ArrayLike<number>, num?: number, ia?: number, ib?: number, ic?: number, sa?: number, sb?: number, sc?: number) => Vec; | ||
export declare class GVec implements ICopy<GVec>, IEqualsDelta<GVec> { | ||
export declare class GVec implements ICopy<GVec>, IEqualsDelta<GVec>, IVec { | ||
buf: Vec; | ||
@@ -45,0 +45,0 @@ n: number; |
{ | ||
"name": "@thi.ng/vectors", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "Vector algebra for fixed & variable sizes, memory mapped, flexible layouts", | ||
@@ -23,12 +23,12 @@ "main": "./index.js", | ||
"devDependencies": { | ||
"@types/mocha": "^5.2.0", | ||
"@types/node": "^10.0.6", | ||
"mocha": "^5.1.1", | ||
"nyc": "^11.7.1", | ||
"@types/mocha": "^5.2.5", | ||
"@types/node": "^10.5.5", | ||
"mocha": "^5.2.0", | ||
"nyc": "^12.0.2", | ||
"typedoc": "^0.11.1", | ||
"typescript": "^2.8.3" | ||
"typescript": "^3.0.1" | ||
}, | ||
"dependencies": { | ||
"@thi.ng/api": "^4.0.5", | ||
"@thi.ng/checks": "^1.5.6" | ||
"@thi.ng/api": "^4.0.6", | ||
"@thi.ng/checks": "^1.5.7" | ||
}, | ||
@@ -35,0 +35,0 @@ "keywords": [ |
import { ICopy, IEqualsDelta } from "@thi.ng/api/api"; | ||
import { Vec, IVec } from "./api"; | ||
import { IVec, Vec } from "./api"; | ||
export declare const ZERO2: ReadonlyArray<number>; | ||
@@ -58,3 +58,3 @@ export declare const ONE2: ReadonlyArray<number>; | ||
export declare const vec2: (x?: number, y?: number) => Vec2; | ||
export declare class Vec2 implements ICopy<Vec2>, IEqualsDelta<Vec2> { | ||
export declare class Vec2 implements ICopy<Vec2>, IEqualsDelta<Vec2>, IVec { | ||
/** | ||
@@ -61,0 +61,0 @@ * Returns array of memory mapped `Vec2` instances using given |
@@ -63,3 +63,3 @@ import { ICopy, IEqualsDelta } from "@thi.ng/api/api"; | ||
export declare const vec3: (x?: number, y?: number, z?: number) => Vec3; | ||
export declare class Vec3 implements ICopy<Vec3>, IEqualsDelta<Vec3> { | ||
export declare class Vec3 implements ICopy<Vec3>, IEqualsDelta<Vec3>, IVec { | ||
/** | ||
@@ -66,0 +66,0 @@ * Returns array of memory mapped `Vec3` instances using given |
import { ICopy, IEqualsDelta } from "@thi.ng/api/api"; | ||
import { Vec, IVec } from "./api"; | ||
import { IVec, Vec } from "./api"; | ||
export declare const ZERO4: ReadonlyArray<number>; | ||
@@ -53,3 +53,3 @@ export declare const ONE4: ReadonlyArray<number>; | ||
export declare const vec4: (x?: number, y?: number, z?: number, w?: number) => Vec4; | ||
export declare class Vec4 implements ICopy<Vec4>, IEqualsDelta<Vec4> { | ||
export declare class Vec4 implements ICopy<Vec4>, IEqualsDelta<Vec4>, IVec { | ||
/** | ||
@@ -56,0 +56,0 @@ * Returns array of memory mapped `Vec4` instances using given |
159105
Updated@thi.ng/api@^4.0.6
Updated@thi.ng/checks@^1.5.7