Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Grasshopper 算法建模學習 第三章(上)
Search
crazylion
June 18, 2012
Design
0
370
Grasshopper 算法建模學習 第三章(上)
crazylion
June 18, 2012
Tweet
Share
More Decks by crazylion
See All by crazylion
IDF 使用者心理課程
crazylion
1
120
08/27 OOP 設計
crazylion
0
220
InTouch: Crossing Social Interaction with Perception
crazylion
0
280
The Twins: Lighting Design Based on Rich Movements
crazylion
0
140
HexDeck: Gamification of Tangibles for Brainstoming
crazylion
0
700
Interaction Design Paradigms
crazylion
0
210
Paradigm Construction & Manifestos in interaction design
crazylion
0
270
批判設計初探
crazylion
0
270
Generative Algorithms 第四章 - Transformation
crazylion
0
220
Other Decks in Design
See All in Design
Franks Myth
gfht1
0
210
Liquid GlassとApp Intents
touyou
0
510
kintone Style Book
kintone
5
6.4k
CursorでAI活用のナレッジベースを構築する
kanzaki
0
960
“ことば”が苦手なデザイナーへの処方箋 「なんとなく」から「意図」へ、 デザインを動かす言葉の力
mixi_design
PRO
0
110
SAMSUL KAMAR ABDUL RAHMAN
samsulrahman32
0
180
「批評」を習慣にするための仕組みと場のデザイン/uxdesign202507
nikkei_engineer_recruiting
6
940
Crisp Code inc.|ブランドガイドライン - Brand guidelines
so_kotani
1
220
The Spectacular Lies of Maps
axbom
PRO
1
360
AI業務アプリケーションの体験デザイン
kazuhirokimura
0
220
新しいデザインの難しさ(公開版) / Difficulties in the New Design (public ver.)
usagimaru
2
960
デザイナーがAIを使い倒して爆速プロダクト開発!社内ハッカソンでの取り組み紹介
abokadotyann
9
2.7k
Featured
See All Featured
Rails Girls Zürich Keynote
gr2m
95
14k
GitHub's CSS Performance
jonrohan
1032
470k
Practical Orchestrator
shlominoach
190
11k
Done Done
chrislema
186
16k
A Tale of Four Properties
chriscoyier
162
23k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
37
2.6k
KATA
mclloyd
PRO
32
15k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
234
17k
Statistics for Hackers
jakevdp
799
230k
Thoughts on Productivity
jonyablonski
73
4.9k
[RailsConf 2023] Rails as a piece of cake
palkan
57
6.1k
The Language of Interfaces
destraynor
162
25k
Transcript
None
slider (params/specia/number slider) integer(params/primitive/integer)
產生一組等差數列。 範例 輸入 輸出 S: 起始值 S: 數列
N : 個數 C : 公差 輸入 輸出 S: 0 S: 0,2,4,6,8, …,98,100 N: 50 C: 2
產生一組等比數列。 範例 輸入 輸出 D: 範圍 S: 數列
N : 個數 輸入 輸出 S: 0-10 S: 0,1,2,3….,10 N: 10
透過 params > Geometry > point 導入。 在rhino視窗中改變,會連帶改變。
使用 point xyz 導入,可以給予固定的值。
None
透過sliders 來改變點的座標
None
使用 range 來實做矩陣
None
根據參數產生隨機數 範例 輸入 輸出 R: 數值範圍 R: 一串數字
N : 個數 S : 亂數種子 I : 是否是整數 輸入 輸出 R: 0-10 S: 0,3,5,6,8 N: 5 S: 2 I: true
產生亂數矩陣 (x,y,z均相同)
隨機弄亂給予的陣列 輸入 輸出 I: 輸入的資料 R: 弄亂後的資料 J :
亂的程度(0.0 -1.0(最亂)) I: S : 亂數種子 輸入 輸出 R: 0-10 S: N: 5 S: 2 I: true
Jitter
改變 seed 參數
F(n) = F(n-1)+F(n-2) Ex: F(0) =0, F(1)=1
Output: 0,1,1,2,3,5,8…..
None
F1(x) 輸入 輸出 F: 函式 (有函數編輯器) r: 運算的結果 X:
輸入變數 輸入 輸出 F: x*2*π S: 2*π X: 1
None
Mult 圖示改變 意思指每一個點都被放大越來越多,因此產生螺旋
None
透過 panel來顯示數值
比較複雜的範例
None
Cull Nth : 刪除第n 個數據 Cull pattern :
根據額外給定的一組 boolean 資料來操作。 Ex: data: [1,2,3,4,] , pattern: [true,false,false,true] Output: [1,4]
Example: 繪製範圍內點的連線
留待下次…
None