how to design in CST using equations
來源:edatop
更新時間:2024-08-23
閱讀:
i am working on CST....how to design an expression like y=x^2......where x is a variable..
If you have CST 2010 SP1 or later you can do it.
In earlier versions you can use a macro to draw an equation based curve.
For example (untested)
Code:
With Spline .Reset .Name "name" .Curve "curve_name" .Point 0,0 For x = 0 To END y = x^2 .LineTo x,y Next .CreateEnd With