natalie

About

Username
natalie
Joined
Visits
0
Last Active
Roles
Member

Comments

  • Hello Matthias and Michael, I am also looking to make circles. I was wondering if there is a function yet to create real circles, or if I need to make a Ruby Script to do this or round the corners of a polygon. Have any of you been successful wit…
  • Oh, I was able to fix. Here is now my corrected code. Thanks again Matthias! class MenuAction < RBA::Action def initialize( title, shortcut, &action ) self.title = title self.shortcut = shortcut @action = action end de…
    in Perimeter Comment by natalie March 2013
  • Thank you so much for your help Matthias! The code runs and works, but there is one a slight problem. The calculated perimeter is always 1000 times larger than the actual perimeter... Is it possible that it doesn't know when the final edge is? …
    in Perimeter Comment by natalie March 2013
  • I thought maybe I should add my code: class MenuAction < RBA::Action def initialize( title, shortcut, &action ) self.title = title self.shortcut = shortcut @action = action end def triggered @action.call( self ) en…
  • Hello, I have a quick question (at least I hope its quick). I am a bit unfamiliar with this code... Anyhow, I'd like to find the perimeter of a shape. With the code that you have provided for the perimeter, do I need to copy and paste it somewhe…