Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Grasshopper 0.6 (Revision 9) available for download
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  10 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
David Rutten  
View profile  
 More options Mar 27, 12:26 pm
From: David Rutten <da...@mcneel.com>
Date: Fri, 27 Mar 2009 09:26:22 -0700 (PDT)
Local: Fri, Mar 27 2009 12:26 pm
Subject: Grasshopper 0.6 (Revision 9) available for download
Hi Group,

Revision 9 is available for Download.

Installer: http://download.mcneel.com/s3/mcneel/plug-in/beta/en/grasshopper_wip_...
Zip archive: http://download.mcneel.com/s3/mcneel/plug-in/beta/en/grasshopper_wip_...

Changes and fixes:
- Wire drawing for very short wires would sometimes crash, this has
been fixed.
- Loading of Script components would result in input parameters with
no hints, this has been fixed.
- Null insertion routines sometimes outputted nulls and sometimes
empty branches, this is now consistent.
- Cone component would flip the input frame, this has been fixed.
- Many new components for Data tree manipulation.
- Selected Preview On/Off toolbar buttons added.
- Expression N would not remember the textual expression during Copy/
Save, this has been fixed.
- Added 'Ignore' option to a number of Assert dialogs to prevent
frequent re-display.
- Added Custom References Assemblies option to VB and C# script
components (this is most likely quite buggy)

Enjoy,
David

--
David Rutten
da...@mcneel.com
Robert McNeel & Associates


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
baldino  
View profile  
 More options Mar 27, 12:46 pm
From: baldino <jonas.bre...@gmail.com>
Date: Fri, 27 Mar 2009 09:46:08 -0700 (PDT)
Local: Fri, Mar 27 2009 12:46 pm
Subject: Re: Grasshopper 0.6 (Revision 9) available for download
great ! kudos david

On Mar 27, 5:26 pm, David Rutten <da...@mcneel.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
visose  
View profile  
 More options Mar 28, 4:58 am
From: visose <vic...@gmail.com>
Date: Sat, 28 Mar 2009 01:58:48 -0700 (PDT)
Local: Sat, Mar 28 2009 4:58 am
Subject: Re: Grasshopper 0.6 (Revision 9) available for download
I'd like to suggest an upgrade in the sprout component. It could have
a couple more inputs. One would be the number of items on each branch
and the other would be a boolean switch that turns the previous input
into a step size for branch creation:
http://grasshopper3d.googlegroups.com/web/sproutcomponent.jpg

There are many variations to this so I'm not sure what would be the
best. In the first case the new number input would correspond to the
number of items per branch but in the second case it would correspond
to the total number of branches. So maybe to keeps things simple the
first case could also correspond to the total number of branches, but
you'd have to add a list length component every time you want it to
behave as in its current form.

On Mar 27, 5:26 pm, David Rutten <da...@mcneel.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rajaa  
View profile  
 More options Mar 28, 9:53 am
From: Rajaa <ra...@mcneel.com>
Date: Sat, 28 Mar 2009 06:53:27 -0700 (PDT)
Local: Sat, Mar 28 2009 9:53 am
Subject: Re: Grasshopper 0.6 (Revision 9) available for download
David,

I'm not sure what you mean by
"Added Custom References Assemblies option to VB and C# script
components "

Can you elaborate a little?

On Mar 27, 11:26 am, David Rutten <da...@mcneel.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David Rutten  
View profile  
 More options Mar 28, 11:01 am
From: David Rutten <da...@mcneel.com>
Date: Sat, 28 Mar 2009 08:01:35 -0700 (PDT)
Local: Sat, Mar 28 2009 11:01 am
Subject: Re: Grasshopper 0.6 (Revision 9) available for download
There's a new menu item called "Referenced Assemblies..." in the VB
and C# components.
You can add dlls here, which can then be used from within the Script
component.

There might be problems with compiling scripts with custom references,
only time will tell.

--
David Rutten
da...@mcneel.com
Robert McNeel & Associates

On Mar 28, 2:53 pm, Rajaa <ra...@mcneel.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
michael  
View profile  
 More options Mar 28, 3:39 pm
From: michael <tsw...@gmail.com>
Date: Sat, 28 Mar 2009 12:39:40 -0700 (PDT)
Local: Sat, Mar 28 2009 3:39 pm
Subject: Re: Grasshopper 0.6 (Revision 9) available for download
David,

I tried to use this new "Referenced Assemblies" feature. Somehow i
cannot really make it work properly. At first I thought I linked to
the external assembly successfully, in which only ca very simple class
is defined:

namespace ClassLibrary1
{
    public class Class1
    {
        private int index;

        public Class1(int i)
        {
            index = i;
        }

        public int increase(int i)
        {
            index += i;
            return index;
        }

        public int MyIndex
        {
            get
            {
                return index;
            }
        }
    }

}

Then, when I tried something more with Rhino_DotNet dll, like trying
to create On3dPoint objects. It start to get me errors: like this-->
--------------------------------------------------------------------------- --------------------------------------------------------------------------- ---
Script exception: Could not load file or assembly 'ClassLibrary1,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its
dependencies. The system cannot find the file specified.
--------------------------------------------------------------------------- --------------------------------------------------------------------------- ---

even though I restart the RHino, try my original simple assmebly
without Rhino DotNet SDK, this won't go away. Could you give me some
hint to fix this? Or, where should I pay attention to build my own
assemblies? I believe this "Reference Assemblies" can be very very
powerful if I can linked to, say, my customized class  for remeshing
and also make Grasshopper more complete.

Thanks again for your fantastic work!
Best, michael.

On Mar 28, 11:01 am, David Rutten <da...@mcneel.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
visose  
View profile  
 More options Mar 28, 7:53 pm
From: visose <vic...@gmail.com>
Date: Sat, 28 Mar 2009 16:53:07 -0700 (PDT)
Local: Sat, Mar 28 2009 7:53 pm
Subject: Re: Grasshopper 0.6 (Revision 9) available for download
Not sure if its a bug, but I'm not able to explode polylines created
by a wires component:
http://grasshopper3d.googlegroups.com/web/explodepolylines.jpg
If i bake them, they do explode correctly in rhino.

On Mar 27, 5:26 pm, David Rutten <da...@mcneel.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
DannyB  
View profile  
 More options Mar 31, 4:18 am
From: DannyB <dannybo...@manx.net>
Date: Tue, 31 Mar 2009 01:18:47 -0700 (PDT)
Local: Tues, Mar 31 2009 4:18 am
Subject: Re: Grasshopper 0.6 (Revision 9) available for download
Bump....

for anyone else who missed it!

On Mar 29, 12:53 am, visose <vic...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Wan-Yu  
View profile  
 More options Apr 2, 3:22 pm
From: Wan-Yu <zell...@gmail.com>
Date: Thu, 2 Apr 2009 12:22:53 -0700 (PDT)
Local: Thurs, Apr 2 2009 3:22 pm
Subject: Re: Grasshopper 0.6 (Revision 9) available for download
hello Rutten,

firstly, thank you for all your efforts to improve and update.

here i had a problem when i opened a definition done in Grasshopper
Grasshopper 0.5.0099 with 0.6 revision 9,
it didn't generate results as before but showed a message:
"supplied index too high, no possible solution..."

do you have any idea what kinds of problems this could be?
is there any suggestions to lower the over-high supplied index?
also the output values showing on the yellow panels were all turned
into text 'path', as the attached.

http://rapidpik.com/photos/original/64450-waf1b.jpg

thank you for your kind help!

best,
Wan-Yu

On Mar 27, 6:26 pm, David Rutten <da...@mcneel.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
DannyB  
View profile  
 More options Apr 3, 3:36 am
From: DannyB <dannybo...@manx.net>
Date: Fri, 3 Apr 2009 00:36:02 -0700 (PDT)
Local: Fri, Apr 3 2009 3:36 am
Subject: Re: Grasshopper 0.6 (Revision 9) available for download
Hi Wan-Yu

I can help with the panels problem. Since the release of version 6
they display more information about the structure of the path as well
as the content.
If you increase the size of the panels you will see the data.
Alternatively there is a scroll bar on the right hand side of the
panel (grey blob) use this to scroll down and display the area with
the data. For the rest of your problem it has to do with the new data
structures, but I will let someone else try to explain as I still am
slightly in the dark on this side of grasshopper.

DannyB

On Apr 2, 8:22 pm, Wan-Yu <zell...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google