by steve r » Tue Jul 24, 2012 5:38 pm
stuartmitch wrote:Thanks Thom Thom, is there anything you don't know about???
I have tried it with adjoining and separate faces and it still doesn't seem to provide a Gradient of colors. Rather, it simply adds color 1 to the first face, color 2 to the second face and so on. Do I need to stipulate the degree of gradient somewhere?
Cheers....Scotty
It seems like the issue you might be having is with the number of faces. This plugin only applies one color to one face at a time, and doesn't sub-divide them. In the picture you've provided, it looks like you've got two different applications of the plugin, but each time it's to only three faces. So, Gradientator sees that you've got three faces selected, and just applies the three colors; no gradient needed. However, with more than three faces, it will begin to gradient to greater degrees. So, trying to replicate your image with more faces: 
As you can see, it's still applying those three colors, but the "in-between" faces are getting the gradient colors, or colors that are in-between those main colors. So, the amount of gradientating you'll get is dependent on the number of faces you select at one time. Does that help?
-
steve r
-
- Posts: 17
- Joined: Wed May 23, 2012 6:19 pm
- Name: steve
by stuartmitch » Mon Jul 30, 2012 4:12 am
steve r wrote:It seems like the issue you might be having is with the number of faces. This plugin only applies one color to one face at a time, and doesn't sub-divide them. In the picture you've provided, it looks like you've got two different applications of the plugin, but each time it's to only three faces. So, Gradientator sees that you've got three faces selected, and just applies the three colors; no gradient needed. However, with more than three faces, it will begin to gradient to greater degrees. So, trying to replicate your image with more faces: 
As you can see, it's still applying those three colors, but the "in-between" faces are getting the gradient colors, or colors that are in-between those main colors. So, the amount of gradientating you'll get is dependent on the number of faces you select at one time. Does that help?
Steve, many thanks for clarifying that for me. I had missed the point that I needed more than three faces. From the initial illustrations it had looked like only 1 face was having colours gradiented (no such word??) across it. I've got it now. Just needed to be belted on the head a couple of times! Cheers...>Scotty
-
stuartmitch
-
- Posts: 39
- Joined: Fri Sep 17, 2010 7:40 am
- Location: Melbourne, Australia
- Name: stuartmitch
- Operating system: Mac
- SketchUp version: 2013
- License type: Free/Make
- SketchUp use: product design
- Level of SketchUp: Intermediate
by chuzhuo » Mon Aug 19, 2013 3:47 pm
its so cool!
-
chuzhuo
-
- Posts: 1
- Joined: Mon Aug 19, 2013 3:25 pm
- Name: chuzhuo
- Operating system: Windows
- SketchUp version: pre-2013
- License type: Pro
- SketchUp use: architecture
- Level of SketchUp: Advanced
by leefordjudes » Sun Oct 19, 2014 7:26 am
It shows an error on sketchup 2014
Error Loading File gradientator.rb Error: #<SyntaxError: C:/Users/admin/AppData/Roaming/SketchUp/SketchUp 2014/SketchUp/Plugins/gradientator.rb:79: formal argument cannot be an instance variable ...ck("get_data") do |@grad_dialog,action_name|
... ^>
how to
-
leefordjudes
-
- Posts: 1
- Joined: Fri Sep 05, 2014 2:57 pm
- Name: anand
- Operating system: Windows
- SketchUp version: 2014
- License type: Free/Make
- SketchUp use: education
- Level of SketchUp: Beginner
by sdmitch » Sun Oct 19, 2014 3:54 pm
leefordjudes wrote:It shows an error on sketchup 2014
Error Loading File gradientator.rb Error: #<SyntaxError: C:/Users/admin/AppData/Roaming/SketchUp/SketchUp 2014/SketchUp/Plugins/gradientator.rb:79: formal argument cannot be an instance variable ...ck("get_data") do |@grad_dialog,action_name|
... ^>
how to
Using Notepad or similar text editor, simply remove the '@' in |@grad_dialog,action_name| in line 79 to this - Code: Select all
@grad_dialog.add_action_callback("get_data") do |grad_dialog,action_name|
-

sdmitch
- PluginStore Author

-
- Posts: 1496
- Joined: Wed Mar 02, 2011 9:21 pm
- Name: sdmitch
- Operating system: Windows
- SketchUp version: 2014
- License type: Free/Make
- SketchUp use: hobby
- Level of SketchUp: Beginner
by Box » Sun Oct 19, 2014 5:35 pm
That works, Cheers Sd. 
-

Box
-
- Posts: 5259
- Joined: Mon Jun 07, 2010 1:55 pm
- Location: Sydney
- Name: Box
- Operating system: Windows
- SketchUp version: 2022
- License type: Pro
- SketchUp use: other
- Level of SketchUp: Intermediate
-
by dtrarch » Sat Nov 01, 2014 3:16 am
Thx a bunch Mitch. Just plain fun to mess with. Works too dtr
-
dtrarch
- Premium Member

-
- Posts: 532
- Joined: Tue Nov 13, 2007 8:03 pm
by bomastudio » Mon Aug 17, 2015 11:08 am
In SketchUp 2015 I get the following error after the install: Error: #<SyntaxError: C:/Users/nessuno/AppData/Roaming/SketchUp/SketchUp 2015/SketchUp/Plugins/gradientator.rb:79: formal argument cannot be an instance variable ...ck("get_data") do |@grad_dialog, action_name| ... ^> C:/Users/nessuno/AppData/Roaming/SketchUp/SketchUp 2015/SketchUp/Plugins/rubytoolbar/rubytoolbar.rb:144:in `load' C:/Users/nessuno/AppData/Roaming/SketchUp/SketchUp 2015/SketchUp/Plugins/rubytoolbar/rubytoolbar.rb:144:in `rt_load' C:/Users/nessuno/AppData/Roaming/SketchUp/SketchUp 2015/SketchUp/Plugins/rubytoolbar/rubytoolbar.rb:190:in `block in <module:RubyToolbar>' SketchUp:1:in `call' I solved changing row 79 to the end of the do block in this way - Code: Select all
@grad_dialog.add_action_callback("get_data") do |grad_dialog, action_name| if action_name == "begin_gradientating" @grad_dialog = grad_dialog @coloronename = @grad_dialog.get_element_value("color_one_name") @colortwoname = @grad_dialog.get_element_value("color_two_name") @colorthreename = @grad_dialog.get_element_value("color_three_name") @grad_dialog.close gradientate(@coloronename,@colortwoname,@colorthreename,@faces,@model) end if action_name == "close_this_window" @grad_dialog.close end end
-

bomastudio
- PluginStore Author

-
- Posts: 110
- Joined: Mon Dec 14, 2009 4:38 pm
- Name: Alessandro Barracco
- Operating system: Linux
- SketchUp version: 2015
- License type: Free/Make
- SketchUp use: architecture
- Level of SketchUp: Advanced
by utiler » Fri Nov 13, 2015 4:34 am
So do I. Would love to try this plugin....
purpose/expression/purpose/....
-

utiler
- Top SketchUcator
-
- Posts: 2473
- Joined: Wed Nov 14, 2007 11:35 am
- Location: Queensland, Australia
- Name: Andrew
- Operating system: Windows
- SketchUp version: 2013
- License type: Pro
- SketchUp use: architecture
- Level of SketchUp: Advanced
by Dave R » Fri Nov 13, 2015 11:46 am
utiler wrote:So do I. Would love to try this plugin....
Andrew, did you try the solution offered by sdmitch? I just tried it and that makes it work in SU2015. Screenshot - 11_13_2015 , 4_59_02 AM.png
Etaoin Shrdlu
%
(THERE'S NO PLACE LIKE)
G28 X0.0 Y0.0 Z0.0
M30
%
-

Dave R
- Global Moderator
-
- Posts: 18856
- Joined: Tue Nov 13, 2007 11:52 pm
- Location: SE Minnesota
- Name: Dave R
- Operating system: Windows
- License type: Pro
- SketchUp use: woodworking
- Level of SketchUp: Advanced
-
by TIG » Fri Nov 13, 2015 12:40 pm
utiler wrote:So do I. Would love to try this plugin....
The post just before yours offers a solution viewtopic.php?p=575140#p575140, and @sdmitch gave an even simpler version a few posts earlier viewtopic.php?p=541222#p541222Just edit the RB using a plain-text editor like Notepad++, then find the do |@grad_dialog, text around line #79, and remove the @ so it's do |grad_dialog,. Save the RB and restart SketchUp... Since the @grad_dialog is defined earlier it is not necessary to redefine it in the do block, so using ANY name which doesn't start with a @ will work !
TIG
-

TIG
- Global Moderator
-
- Posts: 20209
- Joined: Mon Nov 12, 2007 7:24 pm
- Location: Northumbria UK
- Name: TIG
- Operating system: Windows
- License type: Pro
- SketchUp use: architecture
- Level of SketchUp: Advanced
by utiler » Sun Nov 15, 2015 9:42 am
Thanks Dave / TIG. Trust me to jump into a new plugin without reading through recent posts.... Cheers, I'll give it a crack tonight!
purpose/expression/purpose/....
-

utiler
- Top SketchUcator
-
- Posts: 2473
- Joined: Wed Nov 14, 2007 11:35 am
- Location: Queensland, Australia
- Name: Andrew
- Operating system: Windows
- SketchUp version: 2013
- License type: Pro
- SketchUp use: architecture
- Level of SketchUp: Advanced
by utiler » Mon Nov 16, 2015 1:28 am
 Worked a treat, guys. Thanks!!! I'll post in a few days what I needed it for. Glad to share.... 
purpose/expression/purpose/....
-

utiler
- Top SketchUcator
-
- Posts: 2473
- Joined: Wed Nov 14, 2007 11:35 am
- Location: Queensland, Australia
- Name: Andrew
- Operating system: Windows
- SketchUp version: 2013
- License type: Pro
- SketchUp use: architecture
- Level of SketchUp: Advanced
by pilou » Mon Nov 16, 2015 12:24 pm
Works fine!  domino.jpg
-

pilou
- Top SketchUcator
-
- Posts: 22156
- Joined: Wed Jan 23, 2008 10:33 pm
- Name: Pilou
- Operating system: Windows
- SketchUp version: 2017
- License type: Free/Make
- SketchUp use: hobby
- Level of SketchUp: Advanced
-
by GianfrancoGalli » Sat Aug 06, 2016 10:53 am
hi, just landed on this post. the plugin is not working in make 15/16. i can select it in both Make 15 as 16, but it's not doing anything. i've used v1.21. downloaded it to C:\Users\YOUR USERNAME\AppData\Roaming\SketchUp\SketchUp 201X\SketchUp\Plugins
thanks for your thoughts!
-
GianfrancoGalli
-
- Posts: 1
- Joined: Sat Aug 06, 2016 10:46 am
- Name: Gianfranco
- Operating system: Windows
- SketchUp version: 2015
- License type: Free/Make
- SketchUp use: engineering and mechanical design
- Level of SketchUp: Beginner
by sdmitch » Mon Aug 08, 2016 5:27 pm
GianfrancoGalli wrote:hi, just landed on this post. the plugin is not working in make 15/16. i can select it in both Make 15 as 16, but it's not doing anything. i've used v1.21. downloaded it to C:\Users\YOUR USERNAME\AppData\Roaming\SketchUp\SketchUp 201X\SketchUp\Plugins
thanks for your thoughts! http://sketchucation.com/forums/viewtopic.php?f=323%26amp;t=45951%26amp;p=601292#p541222
-

sdmitch
- PluginStore Author

-
- Posts: 1496
- Joined: Wed Mar 02, 2011 9:21 pm
- Name: sdmitch
- Operating system: Windows
- SketchUp version: 2014
- License type: Free/Make
- SketchUp use: hobby
- Level of SketchUp: Beginner
by JaysonBata » Sun May 03, 2020 10:02 am
why is it not functioning to my sketchup 2017? 
-
JaysonBata
-
- Posts: 1
- Joined: Sat May 02, 2020 7:18 am
- Name: Jayson Escobal
- Operating system: Windows
- SketchUp version: 2017
- License type: Free/Make
- SketchUp use: architecture
- Level of SketchUp: Beginner
by Dave R » Sun May 03, 2020 3:22 pm
The script needs some editing to work. Scroll up a few posts and read what sdmitch wrote. Edit the .rb file to make that change and it'll work. this is in SU2020 after editing the script and installing it. Screenshot - 5_3_2020 , 9_31_05 AM.png
Etaoin Shrdlu
%
(THERE'S NO PLACE LIKE)
G28 X0.0 Y0.0 Z0.0
M30
%
-

Dave R
- Global Moderator
-
- Posts: 18856
- Joined: Tue Nov 13, 2007 11:52 pm
- Location: SE Minnesota
- Name: Dave R
- Operating system: Windows
- License type: Pro
- SketchUp use: woodworking
- Level of SketchUp: Advanced
-
by dlightsey » Sat Sep 12, 2020 12:03 am
Does anybody have the repaired file. When I open the RBZ file using note pad, I get a bunch of garbage. I have tried all the standards when opening.
Thanks,
-
dlightsey
-
- Posts: 1
- Joined: Thu Aug 27, 2020 2:57 am
- Name: Dudley C Lightsey
- Operating system: Windows
- SketchUp version: 2020
- License type: Pro
- SketchUp use: engineering and mechanical design
- Level of SketchUp: Beginner
by Dave R » Sat Sep 12, 2020 1:53 am
Download the .rb file from the first post of the thread and make the edit according to the this post.
Etaoin Shrdlu
%
(THERE'S NO PLACE LIKE)
G28 X0.0 Y0.0 Z0.0
M30
%
-

Dave R
- Global Moderator
-
- Posts: 18856
- Joined: Tue Nov 13, 2007 11:52 pm
- Location: SE Minnesota
- Name: Dave R
- Operating system: Windows
- License type: Pro
- SketchUp use: woodworking
- Level of SketchUp: Advanced
-
by its3Dmade » Mon Jan 17, 2022 7:12 pm
I have tried this fix but when I go to notepad or any word process to open I get this -(on PC) - Code: Select all
PK 쉄B4‹"Ût $ gradientator.rbYûsÛ6þÙéÿ€Ò7gi,ÓŽÓÞñܼsžKš'éM'ÓÑ€$(¡¦¸±ÿ÷û IP–œô&±FÝÅ>¾}p—½_Èšá?gµ\V…`F©¬Ò*Y£yQ\³¹(…æF`›Yh!RU(ÍæšgR”†©’-EÍTÎržŠ:þö›]öÊïàÛ“kVq%˜&Ž…LEY‹Œ5e&4Î?Ó‚‰ÇÏÔr©Êš=1Fˤ1R•?©’–…N%/Þ-¸O y)ØÃøˆ}(+¥ H½v4‰5qÙh³z©´˜@p0UnV8Kà†W2鈓 "ÆËŒ¤Y¨Æàû5Ÿ*-jÜòB7[qVóÒàž&Ë´h2YÎ'í)âYÈ¥Äu!3±N’†è"üä‰,¤¹¶¬siJb—+ÒFŵ‘iSpͪFW*¸žÓ• ¶.-/²€½`U4s Ö0%¯»’µ4laLurxˆÝͲŽëKaÒE“Úƒqª–‡WR¬ŒªdW‹êÇ|úðøá_ÍôûþùÃÏs`Ç«ñqûàg¡kâ_*#ê¿h7ÐvÀžd¤â«p›{ð†g‚ýW$ÏaP5gдüƒ',EÊ0ð;¡ã€ §÷j›E®%m¯ÉYeY^¦¢_õ<T&sÒ>Ybů™õ[x;´—ò‚Ô·yÄæ '㢆¹Ôµ™°¥Ì²Vž‚צ=½’EÁCÍÒS’gÓ¹¦v"bÒòyY5&QŸHRÞ_Ù¹Íæ@ËX¦Uu©ˆ«O.š¼&Z;”Ÿ°IæÏYÂ3Hþ’<…óà6£•æU…mÎ/ (Xª¬¡{Á Æ¡‘8=÷¢rcEON•D“d/ µê.J+µ(DêvZ\h5$K»ÖâCÈ$z.½r–ì–à‘.y'KxÊbö¦IÁ°ƒƒ4…©¿cïEŸ”rä•ò”×2e0fâCþ";øEÐ^Ëe'«*‹ëo¿ùö-~o$übÏÇGëd8u±w³0 èÉÎ.„1†Ôóó‹‹§oß½ ¥”² j] Ü;Q ddåîýʾàf‘4>vÁ ŒKæƒLðÿ/-ù)Q·¬3‘“úóXU¢\IÜw5‚5whûN—éB¤—äp×LUäY–ÿ+¥æ…ðäwûøœy%d`ô÷øÈ2Ú‘9½kuâ7ÆFÍrvÊî´"Xš;Îã%ð†‚C¢_TÖ t°àWÝe+±ý»Tˆ|éS7l‹ÙÏÔ:3ÍÝU d´»©Èê"Žœ$Z˜F—P¢ÌZ=†]E‹vw£ ¹3»Þki'‘¥p©š\ßgPºvv"ÑŒÐ~É/q$™b{`=JmÊc ܆¼«;#õ †` ¸š}8gyÁçä7µ0t÷ºläî‘4KS{I?xjªŒ[ßsÖ¯)†ˆ“u¨»µ6ÅkAâC¸Mà•Ú•‰:E¶¥53µ¤¿/¹f ÈQCÅD}´àg„lˆj½N‹ª™/<ؤÉ3BMÜ‹$çä. °’Tȵ•…ÃQ„¯?ÓKâOY+RKÕûÌnÄ ±¬güÇΧON^âØ˜ÝöÂ]X¯© …Ö”ÿó÷2™•{¦Å>*,Û ëö][Pñ; ÑL[9Øç„QÎáWÓ);Ú:ïq$á.ÃìnÓ_«†Jro|e+ÕÈ`T-‘æª ²`k”O¹¨¹#‡\!ùœSÔ±—ôrByãä¡«w*ö˜ílf3$/ê.CˆlNrŠ£öwŸH£¨ŽIm”óRiç‡á‡ípðnT[DFh„‰ÖûNCÅ&WÖŠ6Ó¹èÝÁ~¿»¸+Œ4”+ð7WŸh$ÅÚèkv Kûç+™™Å„-„œ/P…Èñ‰šjÒ6½›’êg™ã5eÎON:Þq)V£(¼7"'‡*Á#Â×ãMØÃ#|ÿ ¾?r5^'—7³„§—sDX™Íl¶EÏÒ¿(ÈïAìUÂâœÁÇôj!¡ôIe ¡©ü|„£v–CE!©ÞvUà pUŽ«¥Ó5Óia5fÜúØŒØÐFÑ·üñhÌ2Ån¿¹äKqãRÅ[°JÑY!gó¤Êyd÷ºÜyl5¦JáN°LÄž ,5³+^4bÙí3ì·,¼³z*f¥þìßD…J¬?G‡N)…ç¬%Üz¯1Ü|2¸ÁdM’‰C±‰Üq ?“;ÛÔoyÏgfÎøCåoóéAè¿òÕ³-¾Ð;RÙê|ºÒ²¦Î«t¿ ^vPaQš Œö±?JÐùÚ\Sšâs›uPt¡p•qZ®¤³‚£\õ¨9øu)#儬hAÚ rGP+]t^—`6îýß>§Žñ:(PNNžÑrL:¬í¶…Yv«•Z6PˆI,—úz‹<6bY9)60+æ¾Æa,Ný£M÷¢}±í9=M{¥¸ Á‰ž'£h¿g·ÅÝ~4¬ÏÉ¡6>IÀÆ?ŸYn§‡N„³ˆµ× r·hPö$õŠ<¶ª³)¯3ý¿Þ¿y.ÏŽ;ºÔà!«‡â!‘& «½SúrvJÕRc^WbñÉþƯ¸[Îò¦tY‘ë¢I® ÑGcöù÷Fh²iT_V'-ˆ=¦"x# =òÀX(ß®#ðr·dÝÞaóŒBå|îFÞ¸œºk¦Lè³ÓÄý½sÉÝ: {pÂ;õù^fÓu@<ÛÛzÓþÛí› o&ØaãŸ&øpÁ$¿†ä©«œá“Æ ýŽ ,i ɽ#%{ûoûWöVìO?£†¹ …NˆÃÖ‡Ö÷6fN*èñ¨÷à uÂB¨çáE×?TÙ.{O€Ú¶F3ìAÃì1HƒÜ±–:\æè‡ß'†Bß´5&E¤ƒòÚu=ú»ºÙd×9k«ä7˜Ž·óZìQž@a‚Úl9a°:vL‹>9¸R°R•9IZ~{TsÃ%/<ëŸ íÁ‰£°£T†æ‰® ÉÉ"(wlä·?úÂc2‡ @Ë÷ðF؉Í}GZSÙCðÛšE]¬ï~帰‹WOiµ“ž ËáŠùµ5‚÷Ûè‡ãŽƒ|–×8ÐÊ:ZÛÂáaÏ¡½çô`‹]»ÃÇ®öœè…ê:ÞMÝ`¤ŠžÒºuèóRþ!l©‚賜›T}õÕAÙó)M/©0S1Í+™!ÝÙÍ&ºz£¦QÚJ—ç–èêÚõQ7£Aùªkq©Éæ1gP«@?õBæ†Ã—Fã°6p‡ñáhv½vŠ4><è$Ö %Où~JÖ:›d²RÙ•¯¥vG²!½ŽÃýôÈK6 GëÙhá+IÝ‘l@¬¥~/±Ö—º W–Ò e Ã]HT·mË.~o¸}Oä‹ßR"á…ñN‡`öJÝ´«+ó¶µUa¾VøýFÆK!*ÔëÕ(ÅEEÎ5ÂAÑ´Ì5»[Ô°oÕÁõA0\€2ý”M‹+©š‘Ö”Jg‚¼ÔM`\桤 (éøŸíQ6+;‘;2 T¬W¦9…íïig?(*ël)×}6¼8NД}¶%²³¾mnèû s>Ò_§o/Î_ÿ·òYg‰ªçëØãžÙÃŽkh…¡Ãà“ä†ñ~e§Ó3–ЗÛxÉ+zVÞ°òãѯá”íCyàæ‘ÆO…h8“‰¤™Ïí[÷Ú‹Þ´å¬Ú8ñGŽ¿´Rì~]ú–-x‘cñ®£ÃÏcÛ›8ˆÞ ’Qñï £ÅõÖÓnÏÏTƒgÇá3ŠÁÛ8äó„½£@uœ<`ÚXÙß=<ä|z÷|²v>žOúTäÇu7oW¨ì픵 gÒ~¨:qƒÂ¾‡Öš¼xI3éBŸÜ¨s´À³ØM~Ó§½Ýþ32‡ ér›5µ}7A3\†•—%¢U|â©AdÙ~YRÞ"9H éÊ'Ûi[ït<œŽhÁšÀFîm«3#½ÒÂ… g|`?ò¸»ð”}ÍyÒ„ €¬[¨¹µ_ƒÎ»–},šÎs`Ó ‰<˜^V¶ÆÚ„SvÚì‡ ‚xÖPSÒ × x»šPé š³ãȪm‰ãžgA 3jÕ²åRlñm®ü¶’èjUÞB(Ùôtí‹êÿ—.‰ßÓµym0Sê1š²ßö€ïmLN¾¦è&O2S—Úý¦Mi©Í²=7QÔ¡”§l“Œ[„ƒwô•Õ&Ñö§,,t6F;z4Ù*”Š5ÃmÒV[“Ý§Š®¹W©} 5N|…J’/«$ù’J’-3Å.E¹·Hë¯üîm’ÃNxLÃçÁ¶7[_%ïÒëñà}‡hçˆ4i·/ôh¨U61m¦|ˆfX³Bq$ÆG/ñ#Nxm™Ñlöòüõ‹Ùlì;uÛ{”Í(ú£íX]¢×;‘«×Ä;9 ;›ÀíµH’@„0¼áúÒ5ónnæÎÄÿPK 쉄B4‹"Ût $ gradientator.rbPK = ¡
-Mark
-
its3Dmade
-
- Posts: 2
- Joined: Mon Nov 13, 2017 6:37 pm
- Name: Mark Fishbain
- Operating system: Windows
- SketchUp version: 2017
- License type: Pro
- SketchUp use: product design
- Level of SketchUp: Intermediate
by TIG » Mon Jan 17, 2022 11:11 pm
An RBZ file is a type of Compressed ZIP file - hence the PK at the start of the opening in Notepad++ You cannot edit it that way.
Take the RBZ and install it, that should leave you with an RB file containing the script's code. Edit that RB file as explained in earlier posts, using Notepad++.
Replace that RB in the Plugins folder and restart SketchUp to se the changes.
An alternative is to use the RB file directly, or rename the RBZ with a .ZIP file-type suffix and extract its contents. The result will contain the RB code file etc - proceeded as directed previously...
TIG
-

TIG
- Global Moderator
-
- Posts: 20209
- Joined: Mon Nov 12, 2007 7:24 pm
- Location: Northumbria UK
- Name: TIG
- Operating system: Windows
- License type: Pro
- SketchUp use: architecture
- Level of SketchUp: Advanced
by Ad Machine » 5 minutes ago
-
Ad Machine
- Robot
-
- Posts: 2012
-
Return to Plugins
|