@types/three
Advanced tools
Comparing version 0.127.0 to 0.127.1
@@ -46,3 +46,3 @@ import { Camera, MOUSE, TOUCH, Vector3 } from '../../../src/Three'; | ||
enableKeys: boolean; | ||
keys: { LEFT: number; UP: number; RIGHT: number; BOTTOM: number }; | ||
keys: { LEFT: string; UP: string; RIGHT: string; BOTTOM: string }; | ||
mouseButtons: { LEFT: MOUSE; MIDDLE: MOUSE; RIGHT: MOUSE }; | ||
@@ -49,0 +49,0 @@ touches: { ONE: TOUCH; TWO: TOUCH }; |
@@ -23,3 +23,3 @@ import { Camera, EventDispatcher, MOUSE, Vector3 } from '../../../src/Three'; | ||
maxDistance: number; | ||
keys: number[]; | ||
keys: string[]; | ||
mouseButtons: { LEFT: MOUSE; MIDDLE: MOUSE; RIGHT: MOUSE }; | ||
@@ -26,0 +26,0 @@ |
{ | ||
"name": "@types/three", | ||
"version": "0.127.0", | ||
"version": "0.127.1", | ||
"description": "TypeScript definitions for three", | ||
@@ -27,4 +27,4 @@ "license": "MIT", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "50b74fc8f4f9456a3aa5692264ef7b17b3e1f72f03b0017769258b9fd88046f3", | ||
"typesPublisherContentHash": "bb34c92d209edfafc73802b03fbd58c7966693268d4087b2760aec7eddd6e22a", | ||
"typeScriptVersion": "3.6" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Sat, 03 Apr 2021 17:31:17 GMT | ||
* Last updated: Mon, 12 Apr 2021 14:31:23 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: `THREE` |
import { Vector3 } from './Vector3'; | ||
import { Euler } from './Euler'; | ||
import { Quaternion } from './Quaternion'; | ||
import { Matrix } from './Matrix3'; | ||
import { Matrix, Matrix3 } from './Matrix3'; | ||
@@ -188,2 +188,7 @@ export type Matrix4Tuple = [ | ||
/** | ||
* Sets this matrix as shear transform. | ||
*/ | ||
makeShear(x: number, y: number, z: number): Matrix4; | ||
/** | ||
* Sets this matrix to the transformation composed of translation, rotation and scale. | ||
@@ -239,2 +244,7 @@ */ | ||
/** | ||
* Set the upper 3x3 elements of this matrix to the values of the Matrix3 m. | ||
*/ | ||
setFromMatrix3(m: Matrix3): Matrix4; | ||
/** | ||
* @deprecated Use {@link Matrix4#copyPosition .copyPosition()} instead. | ||
@@ -241,0 +251,0 @@ */ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
585827
18343