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

@teamteanpm2024/voluptatibus-sequi-dolorem

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@teamteanpm2024/voluptatibus-sequi-dolorem

[![npm](https://img.shields.io/npm/v/@teamteanpm2024/voluptatibus-sequi-dolorem)](https://www.npmjs.com/package/@teamteanpm2024/voluptatibus-sequi-dolorem) [![NPM](https://img.shields.io/npm/l/@teamteanpm2024/voluptatibus-sequi-dolorem)](https://github.co

  • 2.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-83.33%
Maintainers
1
Weekly downloads
 
Created
Source

@teamteanpm2024/voluptatibus-sequi-dolorem

npm NPM

IGESLoader is an IGES file loader for Three.js.

[!WARNING] This package is currently in active development and may not be stable. Use with caution.

[!NOTE] Currently, only a limited number of 'entity' types are parsed (mainly to be able to display points/lines/curves).

Install

npm install @teamteanpm2024/voluptatibus-sequi-dolorem three

Usage

import * as THREE from "three";
import { IGESLoader } from "@teamteanpm2024/voluptatibus-sequi-dolorem";

const loader = new IGESLoader();

const iges_file_path = "/file.iges";

loader.load(
  // resource URL
  iges_file_path,
  // called when load is complete
  function (object) {
    sceneGeometry.add(object);
  },
  // called when loading is in progress
  function (xhr) {
    console.log((xhr.loaded / xhr.total) * 100 + "% loaded");
  },
  // called when loading has errors
  function (error) {
    console.log("Error: " + error);
  }
);

Author

Alex Marinov - Konsept Design Limited

Keywords

FAQs

Package last updated on 29 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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