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

urdf-loader

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

urdf-loader - npm Package Compare versions

Comparing version 0.9.0 to 0.9.1

6

CHANGELOG.md

@@ -7,3 +7,7 @@ # Changelog

## Unreleased
## [0.9.1] - 2020-10-13
### Fixed
- Fix `URDFRobot.setJointValues` not always setting all joint values.
## [0.9.0] - 2020-10-09
### Added

@@ -10,0 +14,0 @@ - `URDFRobot.frames` map.

2

package.json
{
"name": "urdf-loader",
"version": "0.9.0",
"version": "0.9.1",
"description": "URDF Loader for THREE.js and webcomponent viewer",

@@ -5,0 +5,0 @@ "main": "umd/URDFLoader.js",

@@ -203,2 +203,10 @@ # urdf-loader

### .loadAsync
```js
loadAsync( urdfpath : string ) : Promise<URDFRobot>
```
Promise-wrapped version of `load`.
### .parse

@@ -205,0 +213,0 @@

@@ -0,0 +0,0 @@ import * as THREE from 'three';

@@ -343,7 +343,7 @@ import { Object3D, Quaternion } from 'three';

didChange = didChange || this.setJointValue(name, ...value);
didChange = this.setJointValue(name, ...value) || didChange;
} else {
didChange = didChange || this.setJointValue(name, value);
didChange = this.setJointValue(name, value) || didChange;

@@ -350,0 +350,0 @@ }

@@ -0,0 +0,0 @@ (function (global, factory) {

@@ -347,7 +347,7 @@ (function (global, factory) {

didChange = didChange || this.setJointValue(name, ...value);
didChange = this.setJointValue(name, ...value) || didChange;
} else {
didChange = didChange || this.setJointValue(name, value);
didChange = this.setJointValue(name, value) || didChange;

@@ -354,0 +354,0 @@ }

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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