Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Convert sketchup (*.skp) file to STL or OBJ

Tags:

stl

sketchup

I'm looking for the solutions to Convert sketchup (*.skp) file to STL or OBJ.

Is there a commandline tool to convert sketchup (*.skp) file to STL or OBJ? I'm looking for the tool supporting both windows and mac.

or

How to convert sketchup (*.skp) file to STL or OBJ in javascript?

Any clue or comment is appreciated.

Thanks, Jeffrey

like image 258
Jeffrey Avatar asked Nov 02 '22 18:11

Jeffrey


1 Answers

AFAIK there is no command line tool to do it. Much less a Javascript tool.

SketchUp itself does have the capability, so you can create a Ruby plugin to do the export when SketchUp is opened. So you can have a .bat file or whatever the Mac equivalent is, and let it run SketchUp with your plugin.

Or you can roll your own conversion tool using the SketchUp SDK. http://www.sketchup.com/intl/en/developer/su-api/ The SDK does not need the SketchUp installed, but on the other hand it does not have any built-in .OBJ export support, so you would need to implement the exporter yourself, only using the SDK for reading the SKP file. This might be quite involved.

like image 148
yaku Avatar answered Jan 04 '23 15:01

yaku