SketchUp has an Ruby API for interacting with the application and also an C++ SDK for reading and writing .skp files.

learn more… | top users | synonyms

0
votes
1answer
59 views

How to debug ruby plugins in SketchUp?

The only tip I got to debug ruby plugins in SketchUp is the use of puts. I tried to launch SketchUp this way: sketchup.exe > log.txt 2> errors.txt, but it only shows logs / errors from SketchUp ...
1
vote
1answer
130 views

Punching a hole through a cylinder using Sketchup Ruby API

I'm writing a script to make a simple flute in SketchUp (free version, Mac). I want to make a tube and and then cylinders which poke through the tube, draw the intersection lines between the tube and ...
0
votes
0answers
47 views

Load External-C Library (Newton.Dylib) via Ruby (Google Sketchup's Version)

I'm trying to load external functions from the newton library into google SketchUp via Ruby as a Google Sketchup Plugin. I'm aware of SketchyPhysics which does this exact thing so I know it's ...
0
votes
1answer
63 views

Position SketchUp model

I have imported a model from SketchUp with the Collada loader (three.js). But now I have a problem. I want to always have the center of the object at the coordinates x0 y0 z0. How can I achieve this?
-1
votes
1answer
88 views

SketchUp FBX cube model textures not correctly exporting [closed]

When exporting a .fbx model from SketchUp, only the buttom, the front and the left textures are exported. Is there a way to fix this?
0
votes
1answer
62 views

Rotate Object in Sketch Up Ruby Script

I'm trying to create a several cylinders with a loop, rotating each one slightly in 3 dimensions each time, a random amount. Here's what I have so far: until i == 200 x += rand(10) y ...
0
votes
1answer
31 views

Changing Style of Page (scene) programmatically, “Page.use_style=” not returning nil

I want to change the Style of a scene (programmatically called a Page), using the SketchUp Ruby API. To begin with, I'm just testing this through the Ruby Console in SketchUp. I've prepended all the ...
0
votes
2answers
63 views

How do I import a texture atlas in SketchUp?

I am following up the book Learning OpenGL for IOS: A Hands-on Guide to Modern 3D Graphics Programming, by Erik M. Buck. The book provides a useful free tool called COLLADAViewer for converting ...
0
votes
1answer
75 views

Google SketchUp export dynamic component to .dae model options are missing?

I have exported this model to dae: http://sketchup.google.com/3dwarehouse/details?mid=c1e4befdfbfd283135b07d6213c348&prevstart=0 But when I import it, it says There are no options to choose on ...
0
votes
1answer
47 views

Ruby to load profile component in selected lines

I have a question in writing ruby code which can do 3d modeling in SketchUp program that I would like my profile components to stretch the lengths in the selected lines for creating glass curtain wall ...
2
votes
1answer
63 views

Each statement inside another each malfunctions?

I'm coding a Google sketchup plugin with Ruby, and I faced a little problem. I have an array containing descriptions of every point like: desc_array = ["anna ", "anna 45", "anna689", "anna36", "anna ...
1
vote
1answer
51 views

ruby - How can I associate text with a construction point with sketchup api?

I'm developing a sketchup plugin with ruby, I have coded the parsing process succesfully and I got the cpoints from csv file to sketchup. The csv file also contains a description within coordinates of ...
1
vote
2answers
74 views

Open a file from `My Documents` on Windows

I'm writing plugins for sketch up. I cannot find a simple way to append a text file from the My Documents directory on Windows. The problems I am having are: opening with the current username ...
0
votes
0answers
162 views

ruby google sketchup plugin - importing textures from a directory

im new here and pretty much brand new to ruby. I am using ruby to write sketchup plugins with the Sketchup module, and i want to import all the image files (textures) from the directory ...
0
votes
2answers
132 views

Resize texture images in SU Ruby

I need to resize texture image files after COLLADA Export in Sketchup Ruby. Is there a way to read images (PNG, JPG) from disk, resize them and save them back to disk using plain Sketchup Ruby API? ...
1
vote
1answer
121 views

How do I create a 3D printable stl file?

Ok, I finally have a good sketch of a teacup I want to 3D print. The next step is to export the sketch to a 3D printable stl file. I have tried using CADspan Pro (which crashes when I click ...
1
vote
1answer
87 views

Legible inspect from Sketchup Ruby API

Some of the objects I'm creating in my Sketchup Plugin contain nested array properties. They are difficult to read in Sketchup's Ruby Console when calling object.inspect. Is it possible to use ...
-1
votes
1answer
100 views

In Sketchup, is it possible to automate dwg 2D line exports of scenes as you can with view.write_image?

I would like to have a one click solution for exporting my Sketchup Pro 8 Scenes to individual 2D dwg files, similar to that using view.write_image? Thanks
1
vote
4answers
120 views

How can I debug Javascript in embebed browser in Window?

I need to debug Javascript (Jquery) sources in embedded browser in Windows 7 and XP, when I working with the browser in the Sketchup. I tried with console.log, but it doesn't helps me because brakes ...
0
votes
1answer
133 views

Sketchup crashes with.rbs scrambled plugin

I have a plugin for Sketchup that is used by clients, and because this I need to Scrambler it to create a .rbs file. When the file is .rb, works perfectly, but when I scramble it to .rbs, the plugin ...
0
votes
1answer
499 views

Change the origin to the center of object in Google SketchUp(Free version)

As shown in the following, I am trying to move the origin to the center of the bounding box of this 3D object by using its Axes tool. At a result, it seems very hard to find that center because there ...
1
vote
2answers
191 views

Is it possible to import a Collada model that aligns to pixels?

Assume I have a model that is simply a cube. (It is more complicated than a cube, but for the purposes of this discussion, we will simplify.) So when I am in Sketchup, the cube is Xmm by Xmm by Xmm, ...
1
vote
0answers
172 views

require rubygems in SketchUp

I have been trying to find out searching online how to require rubygems in SketchUp, but have been unable to find out specifically how. Below is my plugin in C:\Program Files\Google\Google SketchUp ...
0
votes
2answers
177 views

How to count duplicates hash itens in Ruby 1.8.5 ( Sketchup Ruby API )

I need to count the duplicates, they need to be 100% identical to increase my count, but I can not use a nothing out of Ruby 1.8.5, this code will run inside a plugin in google sketchup Google ...
0
votes
0answers
69 views

Communicating 3d mouse data to applications?

I am building my own 3d mouse for object manipulation in 3D CAD programs. It's basically a ball that can be tracked in 3d space very similar to this: http://neil.fraser.name/hardware/3d-mouse/ It ...
0
votes
0answers
44 views

Sketchup SDK Fill Function Call with PointArray stored in Heap rather than in stack

I need to use the Sketchup SDK Fill function for performance reasons. It is defined like that: virtual bool Fill(atlast::geometry::CPoint3d pnts[], int numPoints, FaceDescriptor ...
0
votes
1answer
132 views

How can I export to PDF with SketchUp API?

I need to export a model from the SketchUp Pro API (Ruby or C++) to PDF. There is a native PDF exporter in SketchUp, but it looks like there is no way to access it with the SketchUp API. Maybe I'm ...
0
votes
1answer
73 views

Sketch Up and Open GL ES

Hi I have created a model in Sketch Up and want to export if for use in my open GL ES app. My question is. do I need to specify that I want the output to be all triangles and not polygons. As ...
1
vote
5answers
594 views

Detecting Operating Systems in Ruby

Is there a way to detect the operating system in ruby? I am working on developing a sketchup tool that will need to detect MAC vs. WINDOWS.
1
vote
1answer
114 views

Reflecting a point of a non-horizontal line

I am creating line tool for sketchup and was running out of ideas of calculating the other point on a diamond. Essentially (with this line tool) you draw a line, and then at a set width, it creates a ...
0
votes
1answer
2k views

How to import SketchUp models into After Effects CS6

I'm having a hard time finding a way to get SketchUp models from Google's 3D warehouse into After Effects CS6. As this tutorial describes, in AE CS5.5 and before, it was possible to find a .kmz file ...
0
votes
0answers
179 views

How can you detect Window's VirtualStore with SketchUp Ruby?

I'm writing a Ruby plugin for Sketchup. Default location for SketchUp is C:\Program Files (x86)\Google\Google SketchUp 8\ - plugins are installed to C:\Program Files (x86)\Google\Google SketchUp ...
0
votes
1answer
124 views

Google Sketchup like 3D modeling in Rails App

Is there a way to bring Google Sketchup functionality into a rails application? Essentially build 3d models in the same way using components into a rails application and allow an end user to be able ...
0
votes
0answers
130 views

Compute bounding box of 3D model in Google Earth API

How do I retrieve bounding box coordinates (= min/max latitude, longitude and altitude) of a 3D Collada model in the Google Earth API? What I discovered so far: In the Google Earth API, there is an ...
0
votes
2answers
294 views

Add entity to entities collection?

https://developers.google.com/sketchup/docs/ourdoc/entities I want to add an array of entities to an entities collection, but the entities collection (as you can see in the reference) requires i add ...
0
votes
0answers
199 views

Raytracing library for .obj files

I am looking for a raytracing library where I can upload my scene as an .obj file and make some calculations on it. I have my scene exported as an .obj file from Google SketchUp. For example, I need ...
-2
votes
2answers
474 views

CAD: lines to solid programmatically

How to convert a set of connected lines to a solid in CAD applications? Tool is being used can be AutoCAD, SketchUp, Solidworks, FreeCAD, or any other software you may know that can do this simple ...
0
votes
1answer
802 views

Google sketchup , how to display the model in iPhone/iPad?

Is there any objective-c library or workaround solution to display the skp file ? Thanks
3
votes
1answer
135 views

Problems rendering a Polar Zonohedron in Processing

I've recently been looking into Zonohedrons and Rob Bell made beautiful ones. I had a play with the free Polar Zonohedron Sketchup Plugin and thought about playing with the geometry using Processing. ...
0
votes
2answers
923 views

Export .dae (collada) file from Google Sketchup

Hi I have a simple ( but extremely annoying ) problem. I want to put a model into iBooks Author and im using sketchup to do it. When I export a model out of Sketchup as .dae the camera looks perfect ...
0
votes
0answers
192 views

Emboss a 3d number through a non-regular face

So I have 2 squares that meet at an angle, and I'd like to "delete" a number from the meeting of the two squares. In the picture below what I would like to do is delete the 4 and all the space it ...
0
votes
2answers
300 views

Google sketchup objects transparent in opengl?

I have made two objects in googlesketchup. link1 .On the link you can see a picture of the model. I just made two rectangles and then used push and pull, later I used paint bucket to paint the ...
1
vote
3answers
2k views

Google SketchUp and 3D with C#

I'm not familiar at all with working with 3D, but I need to make a C# application that uses 3D object (just to view them). I think that it would be easiest to make 3D model in Google SketchUp. But I ...
0
votes
1answer
828 views

Sketchup Dynamic Component Options manipulating from ruby

I have created an Dynamic Component which depend of its options. I just need to change this options programmatically from ruby api. But I can't understand how to do it.
0
votes
2answers
786 views

Exporting a 3d model created in sketchup for use in Android

I have a problem using opengl on android to draw a simple rectangle. This is what I have done. I drew a simple rectangle with sketchup. I exported the result using a 3d-model collada .dae file. I ...
2
votes
3answers
6k views

Embed 3D models on website

Is there a way to embed Sketchup models on a website? Preferably a free one, if it's a commercial solution I'd like a confirmation that it's actually worth the money... I know about the 3D warehouse ...
0
votes
1answer
899 views

Google SketchUp API

let's say hypothetically I wanted to create an application that manipulates Google SketchUp files. The GS (Google SketchUp) API is written in Ruby and also has another API specifically used for ...
0
votes
1answer
208 views

How can I intersect a group in SketchUp with a component?

I am trying to get a surface of a group to intersect with model when a component is going through it. I go into edit group, select the surface, and click intersect with model, and it does not seem to ...
-2
votes
2answers
255 views

do I need license to used .3ds .obj or .skp files with my own code [closed]

I'm writing parsers for different kinds of 3D object files like .3ds .obj and .skp. Do I need a license to read these formats with my own code? I couldn't any documents that says that I need a ...
16
votes
4answers
1k views

Importing Google Sketchup models in Mathematica

Google's Sketchup is a nice, simple 3D-object modeler. Moreover Google has an enormous warehouse of 3D objects so that you actually don't have to do much modeling yourself if you aren't particularly ...

1 2