JavaScript converter from VRML 1.0 to VRML97 file format, based on Wings 3D conversion logic.
Go to file
Glen Whitney 67a07e2000 chore: Set up development environment
Add the civet and typescript compilers, implement a build step,
  provide examples of using from es6, script, and command line.
  Of course, there is no actual behavior produced; convert always produces
  'foo' at the moment.
2023-09-01 08:20:34 -07:00
etc chore: Set up development environment 2023-09-01 08:20:34 -07:00
src chore: Set up development environment 2023-09-01 08:20:34 -07:00
.gitignore chore: Set up development environment 2023-09-01 08:20:34 -07:00
LICENSE Initial commit 2023-08-31 07:05:29 +00:00
package.json5 chore: Set up development environment 2023-09-01 08:20:34 -07:00
pnpm-lock.yaml chore: Set up development environment 2023-09-01 08:20:34 -07:00
README.md chore: Set up development environment 2023-09-01 08:20:34 -07:00
tsconfig.json chore: Set up development environment 2023-09-01 08:20:34 -07:00

vrml1to97

JavaScript converter from VRML 1.0 to VRML97 file format, based on Wings 3D conversion logic.

Essentially, this is a JavaScript reimplmentation of the algorithm of the "token rearranger" found in the Wings 3D x3d importer (which was written in Erlang).

Usage

From an es6 module

import {convert} from 'vrml1to97'
const vrml1spec = '# VRML 1.0 ....'
const vrml97spec = convert(vrml1spec)

or from a script

(async () => {
   const vrml1to97 = await import('vrml1to97')
   const vrml1spec = '# VRML 1.0 ....'
   const vrml97spec = vrml1to97.convert(vrml1spec)
})()

or from the command line via node

npx vrml1to97 < old.wrl > shinynew.wrl