NCF参数化建筑论坛

标题: 学grasshopper里脚本的朋友看过来 [打印本页]

作者: 翳影    时间: 2011-3-31 10:06
标题: 学grasshopper里脚本的朋友看过来
本帖最后由 翳影 于 2011-3-31 12:19 编辑 Object Class (System) System Namespace () 你懂的 再加一个! Array::SetValue Method (Object, Int32, Int32)[size=1em].NET Framework 4 Sets a value to the element at the specified position in the two-dimensional Array. The indexes are specified as 32-bit integers. Namespace: System Assembly: mscorlib (in mscorlib.dll)

登录/注册后可看大图
Syntax VBC#F#JScript public:void SetValue( Object^ value, int index1, int index2) ParametersvalueType: System::Object The new value for the specified element. index1Type: System::Int32 A 32-bit integer that represents the first-dimension index of the Array element to set. index2Type: System::Int32 A 32-bit integer that represents the second-dimension index of the Array element to set.

登录/注册后可看大图
The GetLowerBound and GetUpperBound methods can determine whether any of the indexes is out of bounds. For more information about conversions, see Convert. This method is an O(1) operation.
Note
If SetValue is used to assign nullptr to an element of an array of value types, all fields of the element are initialized to zero. The value of the element is not a null reference, and cannot be found by searching for a null reference.

登录/注册后可看大图
Examples The following code example demonstrates how to set and get a specific value in a one-dimensional or multidimensional array. VB C# F# JScript using namespace System; int main() { // Creates and initializes a one-dimensional array. array^myArr1 = gcnew array(5); // Sets the element at index 3. myArr1->SetValue( "three", 3 ); Console::WriteLine( "[3]: {0}", myArr1->GetValue( 3 ) ); // Creates and initializes a two-dimensional array. array^myArr2 = gcnew array(5,5); // Sets the element at index 1,3. myArr2->SetValue( "one-three", 1, 3 ); Console::WriteLine( "[1,3]: {0}", myArr2->GetValue( 1, 3 ) ); // Creates and initializes a three-dimensional array. array^myArr3 = gcnew array(5,5,5); // Sets the element at index 1,2,3. myArr3->SetValue( "one-two-three", 1, 2, 3 ); Console::WriteLine( "[1,2,3]: {0}", myArr3->GetValue( 1, 2, 3 ) ); // Creates and initializes a seven-dimensional array. array^myArr7 = gcnew array(5,5,5,5,5,5,5); // Sets the element at index 1,2,3,0,1,2,3. array^myIndices = {1,2,3,0,1,2,3}; myArr7->SetValue( "one-two-three-zero-one-two-three", myIndices ); Console::WriteLine( "[1,2,3,0,1,2,3]: {0}", myArr7->GetValue( myIndices ) );} /* This code produces the following output. [3]: three [1,3]: one-three [1,2,3]: one-two-three [1,2,3,0,1,2,3]: one-two-three-zero-one-two-three*/
作者: ememery    时间: 2011-3-31 11:07
晕。不懂!!
作者: 翳影    时间: 2011-3-31 11:20
2# ememery 各种method
作者: elevenyao    时间: 2011-3-31 11:55
确实不懂的说
作者: 3828669    时间: 2011-3-31 12:09
See 一眼。真是不懂哦。
作者: richo    时间: 2011-3-31 12:40
哇,这个帖子好解渴啊
作者: O.C.    时间: 2011-3-31 13:10
先看看。。。。。。。。。。。。。
作者: fz1919    时间: 2011-3-31 13:54
以后懂,参考先
作者: lycher    时间: 2011-3-31 14:03
完全不懂,天书一样
作者: 忘忘    时间: 2011-3-31 14:12
头大头大头很大 E文苦手的说
作者: 翳影    时间: 2011-3-31 14:48
头大头大头很大 E文苦手的说 忘忘 发表于 2011-3-31 14:12
右上角可以调成中文
作者: shisan1988    时间: 2011-3-31 15:00
先顶再看。。。。。。
作者: qq56    时间: 2011-3-31 16:18
回复有意思吗?
作者: miaomiao    时间: 2011-3-31 17:11
先看看。。。。。。。。。。。。。
作者: claudemit    时间: 2011-3-31 17:49
回复看看,还用隐藏功能= =+
作者: maremoor    时间: 2011-3-31 18:34
这个真不行,纯帮顶
作者: 翳影    时间: 2011-3-31 20:35
回复有意思吗? qq56 发表于 2011-3-31 16:18
你觉得呢?嘿嘿
作者: baroque2011    时间: 2011-3-31 21:55
这个。。。。可能以后会弄懂吧。。
作者: rainfish    时间: 2011-3-31 23:36
完全不懂啊,初学。。。
作者: 3321985    时间: 2011-3-31 23:38
script还没开始学习啊。。
作者: ou312382395    时间: 2011-4-1 11:52
RS和这个有什么区别,请问一下~
作者: yinlu1320    时间: 2011-4-1 14:03
谢谢楼主啦!!
作者: renn    时间: 2011-4-1 16:31
GH用 .net 4.0了? 如果是就可以dynamic了
作者: miniorange    时间: 2011-4-1 16:48
請樓主開示
作者: denghua    时间: 2011-4-1 18:47
隐藏了啥 我看看
作者: xuaner567    时间: 2011-4-1 21:16
需要学习一下
作者: yangpei624107    时间: 2011-4-5 20:46
感谢楼主的资料了 辛苦了!
作者: giada    时间: 2011-4-7 01:23
菜鸟一只,我怎么看什么都像乱码啊~~
作者: rainake    时间: 2011-4-7 01:37
看看是什么
作者: ajun    时间: 2011-4-7 02:44
想了解一下 呵呵
作者: zoomer    时间: 2011-4-7 12:06
太牛了吧 多开始脚本了
作者: kebu    时间: 2011-4-8 20:35
牛人 给力!!!
作者: 84999586    时间: 2011-4-8 23:35
渴望已久诶
作者: ccomix    时间: 2011-4-12 15:03
GH里面的vb资料还真是少啊
作者: angelliu321    时间: 2011-4-12 16:13
顶!!!!!!!!!!!!!!!!!!!!!!!!
作者: yingboy    时间: 2011-4-18 23:16
学学,赚点钱。。
作者: undefeatedTom    时间: 2011-5-30 23:11
shawanyi1!!
作者: undefeatedTom    时间: 2011-5-30 23:11
啥玩意!!!
作者: wokuwode    时间: 2011-5-31 15:56
这个真的真的真的不懂哎
作者: 火枫    时间: 2011-6-1 13:15
看看,N久木看到程序指令啦~
作者: zhy8901    时间: 2011-7-11 18:11
完全不懂,天书一样
作者: wenchongyun    时间: 2011-7-12 15:59
又是回复可见,{:3_47:}
作者: carcass    时间: 2011-7-13 11:25
支持~~~~~~~~~~~~~~
作者: Jus_Dina    时间: 2011-7-13 16:03
嘛玩意儿啊
作者: carcass    时间: 2011-7-13 19:11
xuexi .........................
作者: owenandselena    时间: 2011-7-25 23:19
1# 翳影
作者: 停电le    时间: 2011-7-26 16:00
ancdefghijklmn
作者: wuchao3242    时间: 2011-8-23 23:07
找的好辛苦啊
作者: magicboy    时间: 2011-8-24 00:08
看不懂。。。
作者: ping88    时间: 2011-9-11 01:34
帖子好解渴
作者: riddle16_    时间: 2011-9-11 23:29
确实不懂的说。。。。。。
作者: zhujia123    时间: 2011-9-12 00:27
script还没开始学习啊。。
作者: YayaDu    时间: 2011-9-12 09:47
好东西,谢谢分享
作者: gaojie.cd    时间: 2011-9-14 11:02
楼主辛苦了
作者: doubleyao    时间: 2011-9-14 22:33
看不懂。。。看看隐藏了什么。。。
作者: miaomiao    时间: 2011-9-26 04:05
回复有意思!!!!!!!!!!
作者: 736415253    时间: 2011-9-26 09:39
回复一下,看看
作者: 方木    时间: 2011-9-27 22:50
哇 好高端 就是有点看不懂。。。。 不过还是谢谢楼主分享
作者: xhdrizzt    时间: 2011-9-28 08:49
这个貌似很深奥啊
作者: 736415253    时间: 2011-10-1 22:30
很眼晕,不过深入学习GH这是必须的
作者: oldboyang    时间: 2011-10-1 22:35
顶一下,学习了
作者: xh007    时间: 2011-10-4 17:31
先看看。。。。。。。。。。。。。
作者: hitlpy    时间: 2011-10-4 18:13
脚本啊。回复了看看。
作者: hitlpy    时间: 2011-10-4 18:15
7# O.C. 头像照片里身体下坐的大模型看起来不错啊。
作者: 绝顶山河    时间: 2011-10-4 18:53
这一看就头晕的要死
作者: m1i2m3t4    时间: 2011-10-11 18:02
有点看不懂。。。。。。
作者: htjgoo01    时间: 2011-10-14 01:50
有意思,下载学习学习....

作者: 情迷三叶草    时间: 2011-10-14 15:49
受用,谢谢
作者: 大夏龙雀    时间: 2011-10-14 16:03
完全的看不懂呀
作者: nxwzgng    时间: 2011-10-16 22:40
dddddhhhhhh
作者: witch_hehe    时间: 2011-10-19 16:35
woooooooooooooooowwwwwwwwwwww
作者: 戏水云烟    时间: 2011-10-28 21:39
看看那~~~~~~
作者: mimi8704    时间: 2011-10-30 20:53
脚本写的是逻辑,人选的是形式。
作者: 15184495936    时间: 2011-11-2 12:05
像在读天书啊=== --
作者: mai_kuraki28    时间: 2011-11-2 20:44
2# ememery 啊!!看不懂了 !
作者: yy6669    时间: 2011-12-4 12:23
看看..正在学习
作者: frank929cn    时间: 2011-12-4 15:44
dddddddddddddddddddddddddddddddddddd
作者: 菜菜鳥    时间: 2011-12-4 18:21
LOOOOKS REALLY FANCY
作者: sheep2086    时间: 2012-1-4 10:08
每帖必看,看帖必回!呵呵。
作者: 奥巴马    时间: 2012-1-4 10:19
我不懂的。
作者: RUVGOE    时间: 2012-1-10 23:35
http://u.115.com/file/t487c7ccdf#
作者: LA松    时间: 2012-1-15 22:55
新手 不太懂
作者: lyalya    时间: 2012-1-27 22:34
弄个中文翻译
作者: zyhzyh    时间: 2012-2-11 11:56
真是不懂哦
作者: seafood    时间: 2012-2-24 13:49
谢谢楼主分享
作者: bxsqrym    时间: 2012-3-14 18:22
看看是什么啊
作者: hacker    时间: 2012-4-28 14:18
感谢分享啊。
作者: hacker    时间: 2012-4-28 14:19
好贴啊,感谢分享,感谢交流。
作者: 莫凡    时间: 2012-5-18 04:00
。。。。。看不太懂
作者: 443287@qq.com    时间: 2012-6-1 09:27
grasshopper 编程grasshopper 编程grasshopper 编程
作者: wzlcff    时间: 2012-6-6 13:45
看不懂啊……
作者: Bob_Story    时间: 2012-6-6 15:04
..........
作者: question    时间: 2012-6-12 15:00
这是啥了 。。。。
作者: liyanyanhong    时间: 2012-7-21 21:30
不懂啊。。。
作者: Larch    时间: 2012-9-7 23:22
求看~~~~~~~~
作者: chen121212    时间: 2012-12-10 16:17
回完再看zzzz
作者: LGY    时间: 2012-12-10 16:27
你好,你好,你好,帮忙看看吧、哈哈,好东西有些语无伦次了
作者: dodo100zn    时间: 2012-12-11 12:40
lookinging!!
作者: zhanganxiao    时间: 2012-12-11 20:42
{:19:}{:19:}
作者: chinaviet    时间: 2013-3-2 17:12
好的 挺不错 好啊




欢迎光临 NCF参数化建筑论坛 (http://ncf-china.com/) Powered by Discuz! X3.2