Questions tagged [sketchup]

Trimble SketchUp is a simple, easy-to-use 3D drawing program. Originally created by @Last Software, then purchased by Google in 2006 before Trimble acquired it in 2012. SketchUp has a Ruby API for creating extensions/plugins and a C SDK for reading and writing .skp files.

Trimble SketchUp is a simple, easy-to-use 3D drawing program. Originally created by @Last Software, then purchased by Google in 2006 before Trimble acquired it in 2012.

SketchUp offers third party developers with a Ruby API for creating extensions/plugins and a C SDK for reading and writing .skp files.

The C SDK was introduced in SketchUp 2013 and supersedes the old C++ SDK in previous versions.

287 questions
-2
votes
1 answer

Duplicate a floating point number with Ruby in Sketchup

Is it possible to duplicate a float number array as a variable to a new variable in ruby with sketchup? I have tried both .clone and .dup, but no luck (see below). a = [1.1,2.2,3.3] b = [a.dup,a.dup,a.dup] #Returns "TypeError: can't dup Float" b =…
Poyda
  • 84
  • 11
-2
votes
1 answer

I am trying to make a half circle in sketchup

I'm trying to create essentially a half pipe shape in sketchup but having trouble. I can get an arc and build the shape, but it won't extrude. Thanks, Dirk
1 2 3
19
20