| Scaling (SketchUp) vrml files [message #10602] Wed, 10 March 2010 18:21 UTC |
 |
|
Instead of loading the .wrl file in Meshlab to scale it, I found I could add a line to the .wrl file to scale it.
This is the top few lines of the SketchUp vrml export:
#VRML V2.0 utf8
Transform {
rotation 1 0 0 -1.570796
children [
Shape {
I just add a 'scale' line after the rotation:
#VRML V2.0 utf8
Transform {
rotation 1 0 0 -1.570796
scale 0.0254 0.0254 0.0254
children [
Shape {
SketchUp uses inches as it's internal unit. Shapeways uses meters as its default unit. So this line produces the model in the correct scale.
|
|
|
| Re: Scaling (SketchUp) vrml files [message #10606 is a reply to message #10602 ] Wed, 10 March 2010 22:05 UTC |
 |
|
Need to update this...
The Transformation is only in the .wrl file if the "Use VRML Standard Orientation" option has been used.
|
|
|