SketchUcation Plugin Store

 

 

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

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby DIEGO-RODRIGUEZ » Thu May 27, 2010 6:21 pm

fredo, great plugins. thank you very much for their continued contributions to the user of sketchup

two questions.

floating panel interface, which uses programming language?
you can use images *. png or other format for icons?



when can download the first version of the plugins?
DIEGO-RODRIGUEZ
Banned
 
Posts: 272
Joined: Sat Jan 10, 2009 6:20 pm
Location: Argentina - Mar del plata
Name: diego

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby fredo6 » Thu May 27, 2010 7:02 pm

DIEGO-RODRIGUEZ wrote:floating panel interface, which uses programming language?
you can use images *. png or other format for icons?

It is written in pure Ruby and SU API (which makes it portable PC and Mac).
Unfortunately, png cannot be used (the SU API is missing this functionality, but it would be a good idea to add it)

DIEGO-RODRIGUEZ wrote:when can download the first version of the plugins?

Probably not before a month, except if I released only a subset.
This is also why I need to have some sample geometry, beyond what I am doing test with, because I prefer to adapt the algorithm before the script is released)

Fredo
fredo6
Top SketchUcator
 
Posts: 1674
Joined: Mon Nov 12, 2007 9:07 pm

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby fredo6 » Thu May 27, 2010 7:08 pm

EarthMover wrote:Holy crap!!! Is that speed realtime? Looks amazing! Do the number of segments in the rails matter? Could this possibly be used to replace the standard from contours in the sandbox tools to create graded terrains?

Videos are real time. As usal the performance is driven by the number of facets created, with the exponential slow-down noticed in all scripts.
The number of segments does matter because Curviloft always respects the vertices of the contours and rails. This is why meshes created can be unbalanced or very crowded. In principle, it would be good that users do a rebalancing before applying Curviloft.

For terrain shaping, I would appreciate if you had an example, so that I can answer more accurately.

Fredo
fredo6
Top SketchUcator
 
Posts: 1674
Joined: Mon Nov 12, 2007 9:07 pm

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby solo » Thu May 27, 2010 7:35 pm

Fredo, what kind of example would work for you?

contour maps, completed terrains, an image, point cloud?
My site

Quod gratis asseritur, gratis negatur.
User avatar
solo
Global Moderator
 
Posts: 10774
Joined: Mon Nov 12, 2007 1:46 pm
Location: Dallas, Texas
Name: Pete Stoppel
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: other
Level of SketchUp: Intermediate

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby bagatelo » Thu May 27, 2010 7:47 pm

Yes, Only Fredo6... OMG
I can't wait to try this one.
User avatar
bagatelo
 
Posts: 243
Joined: Wed Apr 16, 2008 4:55 pm
Location: São José, Santa Catarina, Brasil
Name: Alex Henrique
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: interior design
Level of SketchUp: Intermediate

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby Fletch » Thu May 27, 2010 8:44 pm

Fredo, this is simply astounding work, you are absolutely incredible! :enlight:
Fletch
Twilight Render
 
Posts: 760
Joined: Wed Nov 14, 2007 1:02 am
Location: Milwaukee, WI USA / Rovinj, Croatia

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby fredo6 » Thu May 27, 2010 8:44 pm

solo wrote:Fredo, what kind of example would work for you?

contour maps, completed terrains, an image, point cloud?

Actually, a SKP model with contours where you want to generate the surface. Curviloft does not work on point clouds.

Fredo
fredo6
Top SketchUcator
 
Posts: 1674
Joined: Mon Nov 12, 2007 9:07 pm

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby thomthom » Thu May 27, 2010 9:11 pm

Fredo6 wrote:It is written in pure Ruby and SU API (which makes it portable PC and Mac).
Unfortunately, png cannot be used (the SU API is missing this functionality, but it would be a good idea to add it)

I've also requested that SU supports this.
Meanwhile, I've made a framework to read BMP images and render them to screen. Though you can't have too many as it'll slow down. But it works fine for creating toolbars.
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17642
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 Preview] Curviloft 1.0 (Loft and Skinning)

Postby fredo6 » Thu May 27, 2010 9:15 pm

thomthom wrote:
Fredo6 wrote:It is written in pure Ruby and SU API (which makes it portable PC and Mac).
Unfortunately, png cannot be used (the SU API is missing this functionality, but it would be a good idea to add it)

I've also requested that SU supports this.
Meanwhile, I've made a framework to read BMP images and render them to screen. Though you can't have too many as it'll slow down. But it works fine for creating toolbars.

Tom,

This was also my first approach (with view.draw GL_POINTS) but it was definitely too slow. I think that if this is added in native code, it can be ultra fast, even fatser than drawing lines and polygons by view.draw.

Fredo
fredo6
Top SketchUcator
 
Posts: 1674
Joined: Mon Nov 12, 2007 9:07 pm

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby thomthom » Thu May 27, 2010 9:23 pm

What speeds up thing greatly is if when you load the bitmaps you sort the pixels by colour, and then draw each colour in bulk.
I load each bitmap for each toolbar button into a hash with the colour as key and the value as an array of point3d objects. Note that I merge all buttons into one hash.

This means that if you are careful about your icon creation and use a palette of fewer colours you increase performance. A little bit pre-processing required, but the bulk drawing makes up for it many times over.
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17642
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 Preview] Curviloft 1.0 (Loft and Skinning)

Postby fredo6 » Thu May 27, 2010 9:25 pm

One more video, on the possibility to borrow contours from within components....
Contour components.gif


Fredo
Please, register (free) to access all the attachments on the forums.
fredo6
Top SketchUcator
 
Posts: 1674
Joined: Mon Nov 12, 2007 9:07 pm

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby thomthom » Thu May 27, 2010 9:27 pm

Fredo6 wrote:One more video, on the possibility to borrow contours from within components....

:thumb: :thumb: :D
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17642
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 Preview] Curviloft 1.0 (Loft and Skinning)

Postby EscapeArtist » Thu May 27, 2010 9:30 pm

That last process vid you just posted would be a great time saver all by itself. I'm trying to think of something creative to offer as a sample, but you've covered pretty much what I'd use already.
User avatar
EscapeArtist
Top SketchUcator
 
Posts: 1304
Joined: Sun Aug 03, 2008 7:36 pm
Location: Northeast US
Name: Jeff
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: hobby
Level of SketchUp: Intermediate

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby Pilou » Thu May 27, 2010 10:34 pm

On the last example, the curve can make a loop on the same plan?
If yes,there is an automatic clean of the complex auto-intersect skin resulting?
Last edited by Pilou on Thu May 27, 2010 10:35 pm, edited 2 times in total.
Frenchy Pilou
Is beautiful that please without concept!
Speedy Galerie
User avatar
Pilou
Top SketchUcator
 
Posts: 10060
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 Preview] Curviloft 1.0 (Loft and Skinning)

Postby EarthMover » Thu May 27, 2010 10:35 pm

Bloody genius! I'd swear I was looking a video from Rhino or Bonzai!!! :thumb: :thumb:
A designer is an emerging synthesis of artist, inventor, mechanic, objective economist and evolutionary strategist. - R. Buckminster Fuller
Some of my 3D crap
User avatar
EarthMover
Top SketchUcator
 
Posts: 1792
Joined: Fri Sep 12, 2008 9:06 pm
Location: Eastern Pennsylvania
Name: Adam Hails

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby solo » Thu May 27, 2010 10:41 pm

oooh, good thinking.

Would it make a torus shape?
Please, register (free) to access all the attachments on the forums.
My site

Quod gratis asseritur, gratis negatur.
User avatar
solo
Global Moderator
 
Posts: 10774
Joined: Mon Nov 12, 2007 1:46 pm
Location: Dallas, Texas
Name: Pete Stoppel
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: other
Level of SketchUp: Intermediate

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby TIG » Thu May 27, 2010 10:51 pm

A Torus is easily made using the built-in FollowMe tool or even my EEbyLathe - BUT Fredo's new tool seems far more powerful, and so it should be able to do much greater things :bounce:
We await in anticipation...
TIG
User avatar
TIG
Global Moderator
 
Posts: 13992
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 Preview] Curviloft 1.0 (Loft and Skinning)

Postby solo » Thu May 27, 2010 10:59 pm

Okay, let's up the ante.
Please, register (free) to access all the attachments on the forums.
My site

Quod gratis asseritur, gratis negatur.
User avatar
solo
Global Moderator
 
Posts: 10774
Joined: Mon Nov 12, 2007 1:46 pm
Location: Dallas, Texas
Name: Pete Stoppel
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: other
Level of SketchUp: Intermediate

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby Daniel S » Fri May 28, 2010 1:50 am

Fredo

For loft along path you always show two faces or surface and a path...
It will be possible to select more faces?
Something like this image that I found:

And I attach some models to see if they work with loft along path.

Daniel S
Please, register (free) to access all the attachments on the forums.
Daniel S
 
Posts: 349
Joined: Mon Nov 12, 2007 6:06 pm
Location: Mar del Plata, Buenos Aires, Argentina

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby bagatelo » Fri May 28, 2010 2:19 am

Fredo6 wrote:One more video, on the possibility to borrow contours from within components....
Contour components.gif


Fredo



This remember solidworks. Non destructive work can be very interesting. And if can be possible to make smooth junctions.
Fredo, never doubt: WE LOVE YOU!!!
User avatar
bagatelo
 
Posts: 243
Joined: Wed Apr 16, 2008 4:55 pm
Location: São José, Santa Catarina, Brasil
Name: Alex Henrique
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: interior design
Level of SketchUp: Intermediate

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby driven » Fri May 28, 2010 3:02 am

hi Fredo,

if you need a mac tester...

this is a simple version of something I can't get any of the other tools to manage easily, but maybe it's me...
cantfollow.jpg

cantfollow.skp
Please, register (free) to access all the attachments on the forums.
driven
Top SketchUcator
 
Posts: 1409
Joined: Fri May 01, 2009 11:50 pm
Name: John
Operating system: Mac
SketchUp version: 8
License type: Pro
SketchUp use: engineering and mechanical design
Level of SketchUp: Intermediate

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby Daniel S » Fri May 28, 2010 3:34 am

driven wrote:this is a simple version of something I can't get any of the other tools to manage easily, but maybe it's me...


I don´t know how to explain it in english, but you follow and rotate. So if curviloft works with closed paths and you can select more than 2 faces you will need to make something like the attachment.
Not really sure, but this is how should work this feature Fredo?

Daniel S
Please, register (free) to access all the attachments on the forums.
Daniel S
 
Posts: 349
Joined: Mon Nov 12, 2007 6:06 pm
Location: Mar del Plata, Buenos Aires, Argentina

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby DIEGO-RODRIGUEZ » Fri May 28, 2010 4:17 am

Hi FREDO
I have drawn some models for you to teste the loft plugins

you need other models?

Please, register (free) to access all the attachments on the forums.
DIEGO-RODRIGUEZ
Banned
 
Posts: 272
Joined: Sat Jan 10, 2009 6:20 pm
Location: Argentina - Mar del plata
Name: diego

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby Panga » Fri May 28, 2010 8:54 am

Hi Fredo,

As promised, I attach to this post some test files in order you can evaluate your plugin with terrain work.

The first file (road test.skp), show you one of my principal process in order to make roads, and the boring step of cleaning the faces outside the original contours after using the sandbox...I weld all the contours of the road, but I think you'll have to create somme edges in order to divide the whole road in parts.

The second file are classic contours for terrain.

Hope it will help you to test your plugin.

Regards.
Please, register (free) to access all the attachments on the forums.
Panga
Premium Member
Premium Member
 
Posts: 357
Joined: Fri Dec 14, 2007 11:04 am
Location: FRANCE

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby Rainie » Fri May 28, 2010 9:54 am

When it is released. This was just a teaser. ;)


Hi, Thanks Thom for your very quick reply..Thanks!
Rainie
 
Posts: 2
Joined: Sun Mar 21, 2010 4:15 pm

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby gofrez » Fri May 28, 2010 11:25 am

When i've seen this plugin i falled down the chair!! Amazing Fredo!!

Frez
gofrez
 
Posts: 2
Joined: Wed Jun 18, 2008 2:25 pm

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby Daniel S » Fri May 28, 2010 1:13 pm

Here I make another quick test for loft feature. It´s simple but y really want to know if it would work in this cases.

Daniel S
Please, register (free) to access all the attachments on the forums.
Daniel S
 
Posts: 349
Joined: Mon Nov 12, 2007 6:06 pm
Location: Mar del Plata, Buenos Aires, Argentina

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby robert111 » Fri May 28, 2010 1:18 pm

i like this plugin, but i dont see link to dowload it
can anyone have link for this good plugin??
robert111
 
Posts: 108
Joined: Thu Dec 04, 2008 11:25 pm

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby solo » Fri May 28, 2010 1:22 pm

See title, it's a 'Preview', the plugin is still under construction and is not yet available.
My site

Quod gratis asseritur, gratis negatur.
User avatar
solo
Global Moderator
 
Posts: 10774
Joined: Mon Nov 12, 2007 1:46 pm
Location: Dallas, Texas
Name: Pete Stoppel
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: other
Level of SketchUp: Intermediate

Re: [Plugin Preview] Curviloft 1.0 (Loft and Skinning)

Postby Howard Leslie » Fri May 28, 2010 1:56 pm

Fredo,
Looks really good.
.........................
See attached file - a question for both you Fredo and TIG

The Demo video shows clicking of 3 or 4 seperate lines.
Will it be able to skin the attached file - a closed (welded) single polyline ???
or would it have to be broken up into 3 or 4 seperate polylines first ???

Maybe one of TIGs Extrude Tools can handle closed polylines like the attached file ???

This would be really useful and a feature I'd request if this Script doesn't do it already
(or if TIGs Extrude Tool doesn't already do it).
.............
Regards
Howard L'
Please, register (free) to access all the attachments on the forums.
Howard Leslie
 
Posts: 236
Joined: Mon Nov 12, 2007 2:41 pm
Location: Cumbria; UK
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: engineering and mechanical design
Level of SketchUp: Advanced

SketchUcation One-Liner Adverts

by Ad Machine » 5 minutes ago

Are you a Premium Member? Get your freebies here. Are you not a Premium Member yet? Upgrade your account to grab these freebies instantly.

Ad Machine
Robot
 
Posts: 2012

PreviousNext

Return to Plugins

Who is online

Users browsing this forum: VegaOne and 10 guests