0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

SketchUp Make v17 / Ruby > 長方形を適当にプッシュプルするスクリプトを試してみた

Last updated at Posted at 2016-12-24
動作環境
SketchUp Make v17.1.173
MacOS X El Capitan

関連 http://qiita.com/7of9/items/806f287f032e600b2fcd
関連 http://qiita.com/7of9/items/c2eee027ef307fe26b54

http://developer.sketchup.com/en/content/welcome
に書いているスクリプトは、実行すると選択した複数の長方形をランダムな長さにプッシュプルするようだ。

試してみた。 

test161224.rb
require 'sketchup.rb'

def dokodoko
	model = Sketchup.active_model
	selection = model.selection.to_a
	faces = selection.grep(Sketchup::Face)

	faces.each do |face|
		face.pushpull(rand(20))
	end
end

http://qiita.com/7of9/items/ff5921cf65b5f88d9311
に記載した場所に上記のスクリプトを置いた。

SketchUpにて直方体を作り、その側面に適当な数の長方形を作成した。

その長方形を複数選択した状態にした。

qiita.png

Rubyコンソールにて以下を実行した。

> dokodoko
[#<Deleted Entity:0x7fcfabe13048>, #<Deleted Entity:0x7fcfabe13020>, #<Deleted Entity:0x7fcfabe12ff8>, #<Deleted Entity:0x7fcfabe12f80>, #<Deleted Entity:0x7fcfabe12f58>, #<Deleted Entity:0x7fcfabe12ee0>, #<Deleted Entity:0x7fcfabe12eb8>]

qiita.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?