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

collada-dae-parser

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

collada-dae-parser

Parse collada .dae 3d animation files into json

  • 0.2.0
  • Source
  • npm
  • Socket score

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

collada-dae-parser npm version Build Status

Parse collada .dae file vertex positions, textures, normals and animations

View live demo

WIP

This package is a work in progress so check back later.

Will be adding an api, cli, and example gh-pages

To Install

$ npm install --save collada-dae-parser

Usage

CLI

API

parseDae(xmlString, callback) -> object

xmlString

Required

Type: string

Your collada file as a string

callback

Required

Type: function

function (err, parsedDaeObject) {
  console.log(parsedDaeObject)
  /*
  {
    vertexNormalIndices: [...],
    vertexNormals: [...],
    vertexPositionIndices: [...],
    vertexPositions: [...],
    vertexUVIndices: [...],
    vertexUVs: [...]
    // The rest is TODO
  }
  */
}

TODO:

  • live example(s)
  • parse animation data
  • text multiple .dae exports from different 3d modeling programs

See Also

License

MIT

Keywords

FAQs

Package last updated on 10 Apr 2016

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