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

@shards-design/core

Package Overview
Dependencies
Maintainers
0
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@shards-design/core - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

3

dist/index.d.ts

@@ -74,3 +74,4 @@ import { Mesh, MeshBuilder, Vector3 } from '@babylonjs/core';

export declare class Cylinder extends BaseObject {
constructor(name: string | undefined, options: Parameters<typeof MeshBuilder.CreateCylinder>[1] & {
constructor(options: Parameters<typeof MeshBuilder.CreateCylinder>[1] & {
name?: string;
anchor?: Vector3;

@@ -77,0 +78,0 @@ });

@@ -181,6 +181,7 @@ "use strict";

class Cylinder extends BaseObject {
constructor(name = 'cylinder', options) {
const mesh = core_1.MeshBuilder.CreateCylinder(name, options);
constructor(options) {
const { name = 'cylinder', anchor } = options, rest = __rest(options, ["name", "anchor"]);
const mesh = core_1.MeshBuilder.CreateCylinder(name, rest);
super(name, mesh);
this.anchor = (options === null || options === void 0 ? void 0 : options.anchor) || core_1.Vector3.Zero();
this.anchor = anchor || core_1.Vector3.Zero();
placeAnchor(mesh, this.anchor);

@@ -187,0 +188,0 @@ }

{
"name": "@shards-design/core",
"version": "0.0.6",
"version": "0.0.7",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.ts",

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