AI ile Benzer Model Bul
Baskı Profili(0)
Model Dosyası(0)
Yayınlandı:2026-04-09 22:45:26
1
0
このスワッチは、0.2 mmの層厚を使用する場合のグラデーションステップを示すものです。手動で色を変更する透明な材料、そして異なるフィラメントの色とインフィル密度などの他のスライシング設定との相互作用も考慮する必要があります。
ブレンディング_スワッチ.stlではなく、ブレンディング_スワッチ.3mfをダウンロードし、層の高さを0.2 mmに設定しておくことをお勧めします。
このモデルのカバー写真の両方のサンプルで使用されているフィラメントは、PrusamentのPLA「オパルグリーン」と「バニラホワイト」カラーバリエーションです。
---
モデルのソースコード:
-- 単位はcmです。local layer_height = .02 local steps = 8 local depth = layer_height * steps local extent = 1 model = nil for i = 1, steps, 1 do local step = box(extent, extent, depth + (i - 1) * layer_height) :align(-1, -1, -1) if not model then model = step else model = model :move_x(extent - layer_height) :union(step) end end model = model:align(-1, -1, -1)