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
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
crazylion
June 18, 2012
Design
0
380
Grasshopper 算法建模學習 第三章(上)
crazylion
June 18, 2012
Tweet
Share
More Decks by crazylion
See All by crazylion
IDF 使用者心理課程
crazylion
1
140
08/27 OOP 設計
crazylion
0
240
InTouch: Crossing Social Interaction with Perception
crazylion
0
300
The Twins: Lighting Design Based on Rich Movements
crazylion
0
160
HexDeck: Gamification of Tangibles for Brainstoming
crazylion
0
740
Interaction Design Paradigms
crazylion
0
220
Paradigm Construction & Manifestos in interaction design
crazylion
0
280
批判設計初探
crazylion
0
280
Generative Algorithms 第四章 - Transformation
crazylion
0
240
Other Decks in Design
See All in Design
社員の意識を高めたブランド浸透施策の裏側!
mixi_design
PRO
0
100
AIスライドデザインを生成する仕組みを社内共有する
kenichiota0711
6
5k
「余白」と「欲望」を味方につける ——AI時代のデザインエンジニアリングと「越境」の作法 #KNOTS2026
koyaman
1
1.6k
情報を翻訳する-伝わる可視化3原則とオープンデータ活用-
hjmkth
1
180
From the Visible Crossroads: Turning Outputs into Outcomes
takaikanako
2
1.2k
Build for the Web, Build on the Web, Build With the Web
csswizardry
0
250
Connpass-Xperia_Camera_App_by_HCD.pdf
sony
0
540
次世代のクリエイティブ体験!Photoshopの最新機能で新しい未来を切り開こう
connecre
0
120
コムデマネージャーがプロダクトデザインに挑戦した。むずかしくて楽しかった。
payatsusan213
0
240
AI時代に必要な アイデアの形
uxman
0
130
kintone_aroma
kintone
0
1.7k
Drawing_for_Anim_Final_PDF.pdf
lynteo
2
110
Featured
See All Featured
Jamie Indigo - Trashchat’s Guide to Black Boxes: Technical SEO Tactics for LLMs
techseoconnect
PRO
0
83
Navigating the moral maze — ethical principles for Al-driven product design
skipperchong
2
280
Git: the NoSQL Database
bkeepers
PRO
432
66k
Evolving SEO for Evolving Search Engines
ryanjones
0
150
16th Malabo Montpellier Forum Presentation
akademiya2063
PRO
0
71
JAMstack: Web Apps at Ludicrous Speed - All Things Open 2022
reverentgeek
1
390
The Illustrated Guide to Node.js - THAT Conference 2024
reverentgeek
1
310
Embracing the Ebb and Flow
colly
88
5k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
State of Search Keynote: SEO is Dead Long Live SEO
ryanjones
0
150
How to Build an AI Search Optimization Roadmap - Criteria and Steps to Take #SEOIRL
aleyda
1
2k
Mind Mapping
helmedeiros
PRO
1
120
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