SketchUcation Plugin Store

 

 

[Plugin Beta] Curviloft 1.2d - 13 Apr 12 (Loft & Skinning)

Re: [Plugin Beta] Curviloft 1.1a - 12 Jan 11 (Loft & Skinnin

Postby TIG » Sat Jun 25, 2011 4:32 pm

First:
Only the the files inside the subfolders that have equivalents wrongly installed in the Plugins folder are to be removed... from the Plugins folder...
What you did is correct.

Second:
You do seem to have several Zloader .rb files missing from that Plugins folder - like Zloader_Curviloft.rb - this might be the root cause of your problem - do you perhaps have them in another folder that might also be on your $LOAD_PATH ?
And then they can't load other files are the paths gets tangled up...
Did you get the $LOAD_PATH in the Ruby Console ?
Mine says ["C:/Program Files/Google/Google SketchUp 8/Plugins", "C:/Program Files/Google/Google SketchUp 8/Tools"] yours should also include the H: path ?

..\Plugins\LIBFREDO6_Dir_37\Lib6Core_37.rb; line#225; txt = "T6 = Traductor::T6Mod.new(#{hmod}, '#{path}', '#{rootname}') "
line#226; hmod.module_eval txt

This is the code that sets the constant T6 to have a certain value and typing in the Ruby Console
Curviloft::T6
should show this, which is a Traductor::T6Mod object used to translate between languages; it is complex looking list of code, elements, hashes etc...

It seems that ..\Plugins\LIBFREDO6_Dir_37\Lib6Core_37.rb is not being run properly...
Does the file exist ?
If so are it's properties set so 'you' can see it and read it etc...?
Trying typing load LIBFREDO6_Dir_37\Lib6Core_37.rb + <enter> into the Ruby Console and see if it returns true and if CurviLoft then works... it'll only be a temporary fix but at least we then step on one pace...

If you type this in the Ruby Console +<enter> what is returned ?
Sketchup.find_support_file("Plugins")
I get
C:/Program Files/Google/Google SketchUp 8/Plugins
You must include the H: path to your Plugins... otherwise Fredo's LibFredo6.rb will fail at lines#26/27
require 'LibTraductor.rb' if Sketchup.find_support_file( 'LibTraductor.rb', "Plugins" )#Compatibility
require 'TOS_Dir_13/LibTraductor_20.rb' if Sketchup.find_support_file( 'TOS_Dir_13/LibTraductor_20.rb', "Plugins" )#Compatibility

Otherwise when it doesn't find these files they are not loaded and so the T6 constant never gets defined...
You could rewrite those two lines using a plain-test editor like Notepad[++].exe - as
require 'LibTraductor.rb' if File.exist?(File.join(File.dirname(__FILE__), 'LibTraductor.rb'))#Compatibility
require 'TOS_Dir_13/LibTraductor_20.rb' if File.exist?(File.join(File.dirname(__FILE__), TOS_Dir_13, LibTraductor_20.rb)#Compatibility

I think the second one is not important as the first one gets loaded anyway...
Now it will always load the files found relative to it even on some obscure drive, rather than the default C:...
TIG
User avatar
TIG
Global Moderator
 
Posts: 13902
Joined: Mon Nov 12, 2007 7:24 pm
Location: Northumbria UK
Name: TIG
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin Beta] Curviloft 1.1a - 12 Jan 11 (Loft & Skinnin

Postby hygicell » Sat Jun 25, 2011 5:37 pm

Jeff Hammond wrote:
hygicell wrote:
my other plugins work fine


WindowTools.rb
ZLoader__OnSurface.rb
zone.rb


according to that list, all your other plugins aren't working fine..

you're missing the ZLoader files that come with many of fredo's plugins.. the only one you have is tools on surface but i suspect your round corner, curviloft, and fredoscale aren't working either (amongst others?)

screen 2011-06-25 at 10.54.52 AM.jpg


I had those and the Fredo plugins did't work then
as a test I removed them as I thought they were redundant
I will have to reinstall
have you seen any files I have to remove?
Frank
hygicell
 
Posts: 51
Joined: Sat May 23, 2009 3:48 pm
Name: hygicell
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: engineering and mechanical design
Level of SketchUp: Intermediate

Re: [Plugin Beta] Curviloft 1.1a - 12 Jan 11 (Loft & Skinnin

Postby TIG » Sat Jun 25, 2011 6:09 pm

Do you have another folder Sketchup with some stuff in it, say on the C:drive for example...
Is Curviloft somehow trying to load even when its Zloader is removed ??

Have you read through my last diatribe... :?:
TIG
User avatar
TIG
Global Moderator
 
Posts: 13902
Joined: Mon Nov 12, 2007 7:24 pm
Location: Northumbria UK
Name: TIG
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin Beta] Curviloft 1.1b - 27 Jun 11 (Loft & Skinnin

Postby Fredo6 » Sun Jun 26, 2011 4:40 pm

NEW RELEASE: Curviloft 1.1b - 27 Jun 11

This is a small upgrade to handle the problem of mean curves between contours.
Previous versions were only able to generate the junction curves. This one adds the intermediate curves. And you get the mesh by selecting both options.

Thanks to Jeff Hammond for the suggestion to use Curviloft for generate mean curves between contours
See also discussion at this post on the question of mean curves.

See main post for download

Fredo
Last edited by Fredo6 on Sun Jun 26, 2011 6:46 pm, edited 1 time in total.
Fredo6
Top SketchUcator
 
Posts: 1655
Joined: Mon Nov 12, 2007 9:07 pm

Re: [Plugin Beta] Curviloft 1.1a - 12 Jan 11 (Loft & Skinnin

Postby jgb » Sun Jun 26, 2011 5:07 pm

Jeff Hammond wrote:i can skin that thing with zero problems.
i think you might be using the wrong tool.. i think you're trying to use curviloft's Skinning when you should be using regular Loft (the first of the 3 icons in the toolbar)

just select the two rings then click on the Loft icon.


And Right you are! :oops:

I guess I was so used to skinning my constructs I just forgot about the other 2 functions.

Thanks. :thumb:
__________________
jgb
User avatar
jgb
 
Posts: 552
Joined: Sun Mar 23, 2008 10:52 pm
Location: Toronto, Canada.
Name: Joel Berson
Operating system: Windows
SketchUp version: 8
License type: Free
SketchUp use: engineering and mechanical design
Level of SketchUp: Intermediate

Re: [Plugin Beta] Curviloft 1.1b - 27 Jun 11 (Loft & Skinnin

Postby Gaieus » Sun Jun 26, 2011 9:59 pm

Fredo6 wrote:NEW RELEASE: Curviloft 1.1b - 27 Jun 11

This is a small upgrade to handle the problem of mean curves between contours.

Thanks Fredo. :thumb: :thumb: :thumb:

It seems to be such an important release however that it travelled faster than light and arrived the previous day... :lol:

(You are in the same time zone as me if I am not mistaken)
Please, register (free) to access all the attachments on the forums.
Gai...
User avatar
Gaieus
Administrator
 
Posts: 27601
Joined: Sat Oct 20, 2007 8:24 am
Location: Pécs, Hungary
Name: Csaba Pozsárkó
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: historical reconstruction
Level of SketchUp: Advanced

Re: [Plugin Beta] Curviloft 1.1b - 27 Jun 11 (Loft & Skinnin

Postby TIG » Sun Jun 26, 2011 10:06 pm

Thomthom also lost [gained?] a day earlier today!
Perhaps there's a time-warp out and about :roll:
TIG
User avatar
TIG
Global Moderator
 
Posts: 13902
Joined: Mon Nov 12, 2007 7:24 pm
Location: Northumbria UK
Name: TIG
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin Beta] Curviloft 1.1b - 27 Jun 11 (Loft & Skinnin

Postby thomthom » Sun Jun 26, 2011 10:17 pm

Yeh see?! It's just you lot still stuck behind in yesterday! Keep with the time!
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17545
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin Beta] Curviloft 1.1b - 27 Jun 11 (Loft & Skinnin

Postby Pilou » Mon Jun 27, 2011 12:40 am

Maybe Earth's axis are moving during the night! :enlight:
Frenchy Pilou
Is beautiful that please without concept!
Speedy Galerie
User avatar
Pilou
Top SketchUcator
 
Posts: 10027
Joined: Wed Jan 23, 2008 10:33 pm
Operating system: Windows
SketchUp version: 6
License type: Free
SketchUp use: hobby
Level of SketchUp: Advanced

Re: [Plugin Beta] Curviloft 1.1b - 27 Jun 11 (Loft & Skinnin

Postby jgb » Mon Jun 27, 2011 11:59 am

There is a simple explanation for the time warp. Fredo, whom I believe resides in France, simply sent the update Eastward to us and when it crossed the Pacific Date line, voila, it is tomorrow. :roflmao:

Besides, Curviloft can save you far more than a day's work, so the time warp is justified. :ecstatic:
__________________
jgb
User avatar
jgb
 
Posts: 552
Joined: Sun Mar 23, 2008 10:52 pm
Location: Toronto, Canada.
Name: Joel Berson
Operating system: Windows
SketchUp version: 8
License type: Free
SketchUp use: engineering and mechanical design
Level of SketchUp: Intermediate

Re: [Plugin Beta] Curviloft 1.1b - 27 Jun 11 (Loft & Skinnin

Postby TIG » Mon Jun 27, 2011 12:27 pm

And of course in Norway they only have two days Summer and Winter...
TIG
User avatar
TIG
Global Moderator
 
Posts: 13902
Joined: Mon Nov 12, 2007 7:24 pm
Location: Northumbria UK
Name: TIG
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin Beta] Curviloft 1.1b - 27 Jun 11 (Loft & Skinnin

Postby thomthom » Mon Jun 27, 2011 12:31 pm

The climate is changing it to one intermediate state...
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17545
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin Beta] Curviloft 1.1b - 27 Jun 11 (Loft & Skinnin

Postby TIG » Mon Jun 27, 2011 12:55 pm

Norway is turning into the UK ???
We don't have a Climate/Seasons, we just have Weather...
TIG
User avatar
TIG
Global Moderator
 
Posts: 13902
Joined: Mon Nov 12, 2007 7:24 pm
Location: Northumbria UK
Name: TIG
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin Beta] Curviloft 1.1b - 27 Jun 11 (Loft & Skinnin

Postby thomthom » Mon Jun 27, 2011 1:02 pm

Yea - we have a whole year worth of seasons in 30 minutes. Pretty much how I remember England to be like when I lived there. Just a bit colder and a tad more snow.
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17545
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin Beta] Curviloft 1.1b - 27 Jun 11 (Loft & Skinnin

Postby jgb » Mon Jun 27, 2011 9:17 pm

In Canada, except for the left coast, we get winter then a coupla nice days.
Badum boom :lol:

In Toronto, if you don't like the weather, just wait a few hours.
Badum boom :lol:

Not kidding. 6 weeks ago the furnace was on, then 2 days later the air con was on for 4 days, then a week and a half of torrential rain and thunderstorms. Then the furnace was back on for 2 days, then it became almost nice out.

Garfield.GIF
Please, register (free) to access all the attachments on the forums.
__________________
jgb
User avatar
jgb
 
Posts: 552
Joined: Sun Mar 23, 2008 10:52 pm
Location: Toronto, Canada.
Name: Joel Berson
Operating system: Windows
SketchUp version: 8
License type: Free
SketchUp use: engineering and mechanical design
Level of SketchUp: Intermediate

Re: [Plugin Beta] Curviloft 1.1b - 27 Jun 11 (Loft & Skinnin

Postby Fredo6 » Mon Jun 27, 2011 10:38 pm

Thanks to all for being beta testers between the 26th and 27th.:D
So the release should be OK by now!!

Fredo
Fredo6
Top SketchUcator
 
Posts: 1655
Joined: Mon Nov 12, 2007 9:07 pm

Re: [Plugin Beta] Curviloft 1.1b - 27 Jun 11 (Loft & Skinnin

Postby Jeff Hammond » Mon Jun 27, 2011 10:52 pm

finally had a chance to try the new one out and..

.. that's awesome how you can do this (obtaining the curves) using loft instead of skinning now.

i thought you might of just changed the skinning part of curviloft but being able to get the mean curves via loft (without the need for the extra set-up lines) is really sweet.

thanks for the update!
dotdotdot
User avatar
Jeff Hammond
Global Moderator
 
Posts: 4308
Joined: Thu Jan 24, 2008 11:16 pm
Location: newyorkcity
Operating system: Mac
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin Beta] Curviloft 1.1b - 27 Jun 11 (Loft & Skinnin

Postby Gaieus » Tue Jun 28, 2011 5:18 am

One more thing, Fredo (certainly I could also edit it but that's just a last resort). In the first post, you write Curviloft 1.1a and below you can download 1.1b. This may cause confusion.
Please, register (free) to access all the attachments on the forums.
Gai...
User avatar
Gaieus
Administrator
 
Posts: 27601
Joined: Sat Oct 20, 2007 8:24 am
Location: Pécs, Hungary
Name: Csaba Pozsárkó
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: historical reconstruction
Level of SketchUp: Advanced

Re: [Plugin Beta] Curviloft 1.1c - 29 Jun 11 (Loft & Skinnin

Postby Fredo6 » Wed Jun 29, 2011 9:43 pm

NEW RELEASE: Curviloft 1.1c - 29 Jun 11

Curviloft version 1.1b introduced the generation of mean curves between contours.

There was however a bug, signaled by Defisto, when contours are closed loops.

Version 1.1c fixes this issue

See main post for download

Fredo
Fredo6
Top SketchUcator
 
Posts: 1655
Joined: Mon Nov 12, 2007 9:07 pm

Re: [Plugin Beta] Curviloft 1.1c - 29 Jun 11 (Loft & Skinnin

Postby Pilou » Wed Jun 29, 2011 9:47 pm

And this does be again the case?
Curviloft plugin is still released in BETA
Frenchy Pilou
Is beautiful that please without concept!
Speedy Galerie
User avatar
Pilou
Top SketchUcator
 
Posts: 10027
Joined: Wed Jan 23, 2008 10:33 pm
Operating system: Windows
SketchUp version: 6
License type: Free
SketchUp use: hobby
Level of SketchUp: Advanced

Re: [Plugin Beta] Curviloft 1.1c - 29 Jun 11 (Loft & Skinnin

Postby Fredo6 » Wed Jun 29, 2011 10:57 pm

Pilou,

There is no doc yet and there are many missing features (and probably many bugs).
So I won't call it an official release!

Fredo
Fredo6
Top SketchUcator
 
Posts: 1655
Joined: Mon Nov 12, 2007 9:07 pm

Re: [Plugin Beta] Curviloft 1.1c - 29 Jun 11 (Loft & Skinnin

Postby fiors » Fri Jul 01, 2011 11:47 am

Hi. Great plugin!
I do have one question/concern. I'm trying to use it for a curved railing. The profile is obviously not a perfect circle so it twists along the bezier. Is there a more effective way or different plugin to prevent the twisting and have the profile maintain some universal orientation?

Thank you!
S
fiors
 
Posts: 1
Joined: Fri Jul 01, 2011 11:43 am

Re: [Plugin Beta] Curviloft 1.1c - 29 Jun 11 (Loft & Skinnin

Postby Dave R » Fri Jul 01, 2011 12:27 pm

Follow and Keep?
Inspecting mirrors is a job I could easily see myself doing.
User avatar
Dave R
Global Moderator
 
Posts: 8954
Joined: Tue Nov 13, 2007 11:52 pm
Location: SE Minnesota
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: woodworking
Level of SketchUp: Advanced

Re: [Plugin Beta] Curviloft 1.1c - 29 Jun 11 (Loft & Skinnin

Postby jason_maranto » Fri Jul 01, 2011 1:24 pm

Profile Builder also may work for your needs.

Best,
Jason.
I create video tutorial series about several 2D & 3D graphics programs.
User avatar
jason_maranto
 
Posts: 895
Joined: Thu Feb 04, 2010 7:57 pm
Location: Temple Terrace, FL - USA
Name: Jason Maranto
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: illustration, cartoons
Level of SketchUp: Advanced

Re: [Plugin Beta] Curviloft 1.1c - 29 Jun 11 (Loft & Skinnin

Postby thomthom » Fri Jul 01, 2011 1:27 pm

jason_maranto wrote:Profile Builder also may work for your needs.

Best,
Jason.

PB performs a follow me operation and will twist.
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17545
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin Beta] Curviloft 1.1c - 29 Jun 11 (Loft & Skinnin

Postby mac1 » Fri Jul 01, 2011 4:25 pm

FAK keep will not twist but does not keep elevation in 100% of cases. 1001 bit tools will work. It has a free eval period that you my want to check it out...
Clarification: FAK elevation comes into play when you go over a "hill" and for railing this should not be an issue :oops:
mac1
Top SketchUcator
 
Posts: 680
Joined: Wed Apr 16, 2008 4:05 pm

Re: [Plugin Beta] Curviloft 1.1c - 29 Jun 11 (Loft & Skinnin

Postby rjjvirusx » Mon Jul 04, 2011 7:06 am

Thank you & I need learn some more~!
rjjvirusx
 
Posts: 8
Joined: Mon Apr 04, 2011 12:52 pm

Re: [Plugin Beta] Curviloft 1.1c - 29 Jun 11 (Loft & Skinnin

Postby tutu7931 » Sun Jul 31, 2011 5:29 am

good tool man, thanks for sharing!!
tutu7931
 
Posts: 1
Joined: Sun Jul 31, 2011 5:28 am

Re: [Plugin Beta] Curviloft 1.1c - 29 Jun 11 (Loft & Skinnin

Postby clmene » Thu Sep 08, 2011 2:56 pm

only amazing ....
clmene
 
Posts: 1
Joined: Fri Jul 29, 2011 3:12 pm
Name: clmene

Re: [Plugin Beta] Curviloft 1.1c - 29 Jun 11 (Loft & Skinnin

Postby TrisQ » Fri Sep 09, 2011 4:05 am

Fredo, this tool is brilliant. Thank you so much. I am using it for 3D Printing, and the one issue I am struggling with are "holes" in the shells, that make the resulting STL files cause trouble in the further printing process. Do you have any advice on how to avoid such tiny holes, or what situations to avoid that are prone to causing them? Thanks, TrisQ
TrisQ
 
Posts: 1
Joined: Mon Mar 22, 2010 2:50 am

SketchUcation One-Liner Adverts

by Ad Machine » 5 minutes ago

Need Authorised SketchUp Training by experts in various disciplines? Check out our Training details.

Ad Machine
Robot
 
Posts: 2012

PreviousNext


 

Return to Plugins

Who is online

Users browsing this forum: dezmo, ferinek, Google Feedfetcher, jorge2011, Karolina, Meganito, OmarSun, sumaster, thuphappro and 10 guests