Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/three

Package Overview
Dependencies
Maintainers
1
Versions
232
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/three - npm Package Compare versions

Comparing version 0.127.0 to 0.127.1

2

three/examples/jsm/controls/OrbitControls.d.ts

@@ -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 @@ */

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