how to design in CST using equations
时间:03-31
整理:3721RD
点击:
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
.Create
End With
