1

I have a 3D model of a car in both osg and ive format , is it possible to convert it to .obj or 3ds format ? I'm using a tool that could only load .3ds and .obj format. the tool is processing.js.

melisa zand
  • 211
  • 2
  • 6
  • 16

1 Answers1

5

osg and ive are the native ASCII and binary formats for OpenSceneGraph versions below 3.0 (3.0+ can still read/write osg and ive fine, but they're being phased out in favor of osgt and osgb) - see http://www.openscenegraph.com

Grab the OpenSceneGraph binaries: http://openscenegraph.alphapixel.com/osg/downloads/free-openscenegraph-binary-downloads

And use osgconv to convert to obj, eg osgconv MODEL.osg MODEL.obj

Ruan Caiman
  • 881
  • 5
  • 5
  • 1
    the binaries link is broken - do you know where the new one might reside? – Reece May 27 '16 at 20:52
  • 1
    Not off-hand, except the old Sketchup to OSG exporter plugin has an old version of OSG binaries embedded (2.85, current stable is 3.4), you can download it from Github: https://github.com/rpavlik/sketchupToOSG – Ruan Caiman Jun 22 '16 at 16:01
  • For newcomers to this page, AlphaPixel still hosts the binaries, but the path has changed: http://downloads.alphapixel.org/ – Ruan Caiman Jun 05 '17 at 15:27