资讯 --- grasshopper0.6新版面世!

[复制链接]
跳转到指定楼层
61678 pole2008 发表于 2009-3-19 10:45:17 楼主
来源:http://groups.google.com/group/grasshopper3d/browse_thread/thread/f480447fd3691e5d
Dear testers,
Grasshopper 0.6.0005 is now available for download. Please read the
following warnings before you install this new version:
1) THIS IS A MAJOR RELEASE THAT MOST LIKELY SUFFERS FROM SEVERE BUGS.
DO NOT INSTALL 0.6 IF YOU RELY ON GRASSHOPPER.
2) DO NOT OPEN+SAVE IMPORTANT FILES MADE WITH PREVIOUS VERSIONS.
ALWAYS MAKE BACKUPS OF ORIGINAL FILES BEFORE LOADING THEM IN
GRASSHOPPER 0.6
3) GRASSHOPPER 0.6 NO LONGER SUPPORTS THE *.WRM FILE FORMAT. IF YOU
HAVE WRM FILES LEFT, CONVERT THEM TO *.GH OR *.GHX FILES USING
GRASSHOPPER 0.5.0099 FIRST
4) DATA HANDLING HAS BEEN CHANGED. OLD FILES MIGHT NOT WORK AS
EXPECTED.
I'm not replacing the old download url for Grasshopper 0.5.0099, so it
will be easy to revert until we get the major kinks ironed out.
Download link for GH 0.6.0005:
http://download.mcneel.com/s3/mcneel/plug-in/beta/en/grasshopper_wip_...
=====================================
What's new in Grasshopper 0.6
=====================================
Things to watch for:
- File reading errors. Old files should load without errors, even
though they may not work as expected. If you encounter a read error,
please mail the file in question to da...@mcneel.com
- Display and layout errors. Display code has been significantly
reworked, so if things look odd, please ring the bell.
- Behaviour of components that output multiple values for a single
input, for example DivideCurve, DivideInterval, ExplodeCurve etc. It
is possible I forgot to update a component, in which case it will only
have a single output value instead of the list you'd expect. If this
happens please tell me which component (no need to send files in this
case)
- Behaviour of components which feed on data lists, for example Loft,
Sweep, Polyline etc. Many things have changed with regard to lists, so
there's bound to be bugs here.
- Old components would sometimes output surfaces with kinks in them.
This is technically bad geometry and I suspect it was causing crashes.
Many components have now been made smart enough to convert 'kinky'
surfaces into Breps, this may be a problem in your old files if you
were the output specifically as surfaces.
- Crashes or errors due to null data. Until now it was impossible to
insert <null> items into a data stream (for example when an
intersection yields no results), there is now a NULL at that location.
There will almost certainly be components that will choke when they
are given NULLs. If you find one, please let me know which component.
You don't have to send the entire file.
- Data conversion has been completely rewritten. If you see errors
like "The supplied data could not be converted: blah blah", please
send me a screenshot of the error dialog.
- If automatic data conversion from one type (say vector) into another
(say colour) doesn't work as expected, please let me know what you
would expect.
- Persistence of variable inputs. There are now more components that
support variable amounts of input and output parameters. For example
Expression N, Merge Multiple, Stream Gates and Filters, Weave. If you
change the default number of parameters there might be problems with
reading those files back in. If you find that parameters are missing
or have funky names after opening a file, please send me the file.
- And of course if anything appears odd or out of the ordinary, feel
free to bitch about it.
=====================================
New commands:
- GrasshopperExportHelp. Collects all help topics and writes all html
files and images into the folder of your choosing.
=====================================
New components:
- Data Structure Path parameter
- Structure viewer; allows you to examine the hierarchical storage of
data inside components. The output of a Structure Viewer is a list of
path specifications.
- Clean Tree; remove all NULLS and INVALIDS from a data structure.
- Flatten Tree; remove all branching information from a data tree
(Flatten is now also an option on all floating and input parameters)
- Create Path; create a branch path from a list of integers.
- Decompose Path; extract the index values from a branch path.
- Tree Item; works similar to List Item, except you get to specify the
branch path as well.
- Tree Branch; works similar to Tree Item, except it returns the
entire list of data at the branch path.
- Receiver; allows you to transmit data across the canvas without a
visible connector wire.
- Variable Expression; same as old expression components, but this one
has a variable amount of inputs.
- Merge Multiple; all merge components (except Merge 2) have been
replaced with this single component that supports multiple inputs.
- Sort has been adjusted to allow for variable inputs/outputs.
- Stream Filter; allow only a single input stream to continue.
- Stream Gate; guide a single input stream to a specific output
stream.
- Weave; compose a composite stream of data using variable input
streams and a custom weave pattern.
- Point List; Display point lists as series of index numbers in the
viewports.
- Curve Discontinuity; Find discontinuous points along a curve using
different levels of discontinuity. This component is not working
correctly yet, I'm awaiting Rhino SDK additions.
- Curvature Graph; Draw standard Rhino curvature graphs on curves.
- Bi-Arc; Create a biarc curve primitive (a biarc consists of 2
tangent circular arcs that meet start and end points + tangent).
Similar to the _BlendCrv command, except the output is not a single
nurbs curve.
- Fillet; curve fillets with fixed radii.
- Fillet Distance; curve fillets that start a certain distance from
the corner.
- Join Breps; join a number of partial breps into larger breps.
- Surface Dimensions; get approximate dimensions of a surface U and V
direction if the surface were flattened.
- Trim Inclusion; test a UV coordinate for trim inclusion (i.e.
whether or not it resides on the existing part of a trimmed surface)
- Region Union; Boolean union with planar curves.
- Region Difference; Boolean difference with planar curves.
- Region Intersection; Boolean intersection with planar curves.
- Several Numeric (in)equality operator components.
- I'm sure I forgot a few. I keep terrible records of what I actually
do any given day...
=====================================
New functionality:
- Navigate feature on the canvas toolbar.
- Time parameters now have better string parsers, so you should be
able to type "today", "yesterday", "8pm", "12:30:15", "jan 3 2010"
etc. If you find that a specific time or date string isn't getting
parsed correctly, let me know. Time parameters are still not used
anywhere, so they serve no purpose yet.
- Added more expression parsers to data types. You should now be able
to type an expression into Text panels and feed those into numbers,
point, vector, interval etc. parameters.
- Added Interval string parsers.
- Text Panels now have custom backcolors and optional title blocks.
- Text Panel Entry Number rendering has been improved.
- Improved VB and C# interface. Editors are no longer modal, and they
will optionally shrink when focus is lost. It is still possible to
open more than 1 editor for a single Script component, I'm working on
this.
- Improved VB and C# compiler. The Return statement can now be used
throughout the custom code without loss of functionality.
- Mass Addition component now also outputs partial summation results.
- Smooth view transitions are now time-coupled so they take the same
amount of time irregardless of how long it takes to redraw the canvas.
- Components tended to output surfaces with kinks. Now, kinky surfaces
are split at the seams and you get Breps instead.
- Extrude Component was having problems with certain inputs. This has
been fixed.
- Curve Planarity tests now rely on Document Tolerance rather than
zero-tolerance.
- Divide Distance did not work in all cases, this has been fixed.
- Brep|Brep intersect component now outputs joined curves rather than
per face segments.
- Brep Section component now outputs joined curves rather than per
face segments.
- Popup Component Search now accepts arrow key navigation and it auto-
selects the first hit so you can type ["poi" + Enter] to get a Point
Parameter.
- Display Layout of components has been largely rewritten so icons
will no longer appear to shake when the component isn't aligned
exactly to the pixel grid.
- The radius of preview planes can be adjusted via the View menu. This
affects all planes, there's no per-parameter override yet.
- Compass widget would 'hug' the edges of the canvas depending on
Windows Theme properties. I think this has been fixed.
- The Canvas.TooltipDelay setting in the registry is no longer just
for show.
- A bunch of improved Help topics.
- Errors thrown by components during a solution can now be ignored on
a per-component basis. Ignore flags can be reset via the menu. Ignore
flags are not saved to file so they only persist while the file in
question remains loaded.
- The height of the Component toolbar would sometimes be incorrect
upon opening Grasshopper, causing the layout to go haywire. This has
been fixed.
- And all the other stuff I've forgotten.

[ 本帖最后由 pole2008 于 2009-3-19 10:46 编辑 ]
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享
关于大陆地区Rhino原厂培训中心
 楼主| pole2008 发表于 2009-3-19 10:47:28
2
那位大大E文好的翻译下:lol :victory:
patriot 发表于 2009-3-19 10:58:58
3
亲爱的测试,
蝗虫0.6.0005现在可供下载。请阅读
下面的警告,然后再安装这个新版本:
1 )这是一个重大的新闻稿中最有可能遭受严重的错误。
不要安装0.6如果您依赖蝗虫。
2 )不要打开+保存的重要文件,提出以前的版本。
总是备份原始档案在装货前他们在
草蜢0.6
3 )草蜢0.6不再支持*. WRM文件格式。如果您
已WRM文件左边,其转换为*.生长激素或*. GHX档案利用
蝗虫0.5.0099第一
4 )数据处理已更改。旧文件可能无法正常工作
预期。
我不是取代旧的下载网址为蝗虫0.5.0099 ,所以
将很容易恢复,直到我们的主要缺陷得到解决。
下载链接的生长激素0.6.0005 :
http://download.mcneel.com/s3/mc ... en/grasshopper_wip_ ...
=====================================
有什么新蝗虫0.6
=====================================
事情的关注:
-文件读取错误。旧文件应负荷没有错误,即使
尽管他们可能无法如预期般运作。如果您遇到的读取错误,
请发邮件到该文件中的问题,大... @ mcneel.com
-显示和布局错误。显示代码已显着
返工,因此,如果单看的东西,请敲钟。
-行为的组成部分,输出多个值为单一
输入,例如DivideCurve , DivideInterval , ExplodeCurve等
可能我忘了更新的一个组成部分,在这种情况下,将只
有一个单一的输出值,而不是列出您期望。如果这
请告诉我发生的这部分(没有必要在这个传送档案
案)
-行为的组成部分饲料列出的数据,例如顶楼,
扫描,折线等许多事情已经改变关于清单,以便
有必然是错误这里。
-旧部件有时会输出表面缺陷在他们。
这是技术上的几何和坏,我怀疑这是造成事故。
许多组成部分已取得了足够的智慧转换'淫'
表面到Breps ,这可能是一个问题,您的旧文件如果您
具体的输出作为表面。
-崩溃或错误而无效的数据。到现在为止是不可能的
插入<null>项目成数据流(例如当
相交产量没有结果) ,现在有一个NULL在此位置。
目前几乎肯定会的组成部分,将窒息时
给出了空值。如果您发现,请让我知道它的组成部分。
您没有将整个文件。
-数据转换已完全改写。如果您看到错误
像“提供的数据无法转换:等等等等” ,请
给我的截图的错误对话框。
-如果自动数据转换从一个类型(说向量)到另一个
(例如颜色)并不如预期般运作,请让我知道你
希望。
-持续可变投入。现在有更多的组件
支持可变数量的输入和输出参数。例如
表达氮,合并多个,分流盖茨和过滤器,编织。如果您
更改默认的参数数目可能有问题
阅读这些文件回英寸如果您发现参数失踪
或有时髦的名字后,打开文件,请寄给我的文件。
-当然,如果出现什么奇怪或不寻常,感觉
自由婊子的。
=====================================
新的命令:
- GrasshopperExportHelp 。收集所有帮助主题和写入所有的HTML文件
文件和图像到您选择的文件夹。
=====================================
新的组成部分:
-数据结构path参数
-结构观众;允许你检查的分级存储
数据内部的组成部分。输出的结构Viewer是清单
路径规格。
-清洁树;删除所有空值和残疾人从一个数据结构。
-拼合树;删除所有分支信息数据树
(拼合现在也是一种选择所有floati
软件翻译的,;P
Jessesn 发表于 2009-3-19 11:41:44
4
境内下载部分地区需要境外代理服务器的支持,提供论坛下载地址
点击进入下载-grasshopper_wip_20090318.exe
paul427 发表于 2009-3-19 12:21:29
5
需要注册不?
fivenet 发表于 2009-3-19 19:12:39
6
Series生成的数据结构完全改了,有大虫,估计明后天就会发补丁...
保险起见以前做的文件建议还是用0.5打开,如果有商业用途的话。

数据管理有大改进,脚本组件速度加快了很多
继续测试中.....
wudi1212 发表于 2009-3-19 20:50:11
7
319版本 更新318若干bug

移步
http://bbs.rhino3d.asia/thread-5690-1-1.html
清一 发表于 2009-7-14 11:23:08
8
谢 J 大   谢 wudi
lujunjunjay 发表于 2010-12-31 11:41:32
9
1# pole2008 顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶
您需要登录后才可以回帖 登录 | 注册成为会员

本版积分规则