Replies: 5 comments
-
「斷面是已經寫好的函式」是指什麼?寫好的 sweep 本質上,就是從你提供的幾何資料(路徑、斷面的點等),自動計算出「面」來構成 3D 實體,如果你已經用 無論是 sweep 或 loft,兩個斷面間本來就是直線,若要曲線,就是由許多更小的直線接合成看似曲線的東西,應該說,電腦的世界中,本質上沒有真正的曲線這種東西,你所謂的二階曲線方程式,在計算時,也會產生一堆點,點與點間就是直線,只不過夠接近的話,許多點看起來會像是曲線。 |
Beta Was this translation helpful? Give feedback.
-
我先在naca6 裡面寫好我要的三個function 再用最上層的function 來執行成我要的斷面 (代替module ) use <naca6.SCAD> // // ------------------------Parameters //----------------------------------------------- // The lower shape // The upper shape wallThickness = 1; // Wall Thickness - higher values add material but will seal gaps isHollow = 0; // If 1, create a tube. If 0, create a solid. extrusionHeight = 100; // Height of the loft extrusionSlices = 30; sliceHeight = extrusionHeight * 1.0 / extrusionSlices; // Calculate the height of each slice // Generate the top level part // Make the container |
Beta Was this translation helpful? Give feedback.
-
以下naca6 的內容 // this is the object // this is the main function providing the airfoil data // helper functions function camber(x, y, M, P, upper) = |
Beta Was this translation helpful? Give feedback.
-
三個 |
Beta Was this translation helpful? Give feedback.
-
你好最近剛開始自學opensacd 正在建構電腦風扇的翼型模型
看了很多範例都是指向 SWEEP 的斷面只能用點來建構,但是我的斷面是已經寫好的函式
問題1. 是不是一定要用點來標示斷面才能掃略呢?
問題2. SWEEP 掃略的路徑是不是也可以用寫好的函式來帶入呢?(因為非直線 會使用二階曲線方程式)
問題3. 現階段嘗試使用LOFT 功能但是好像兩個斷面也是直線混成 是否能修改混成的路徑呢??
Beta Was this translation helpful? Give feedback.
All reactions