2012-04-04 25 views
0

我想遞增旋轉使用下面的代碼在C#和Vb.net(編輯器已導入必要的庫)的曲線。在我的3D建模程序中,我得到重疊的線條而不是具有不同角度的線條。 我在做什麼錯?遞增旋轉使用VB.net或C#曲線

在C#:

private void RunScript(Curve ln, int x, double angle, ref object A) 
{ 
List<Curve> lines = new List<Curve>(); 
Int16 i = default(Int16); 
for(i = 0; i <= x; i++){ 
ln.Rotate(angle * i, Vector3d.ZAxis, ln.PointAtEnd); 
lines.Insert(i, ln); 
} 
A = lines; 

上VB.net:

Private Sub RunScript(ByVal ln As Curve, ByVal x As Integer, ByVal angle As Double,   
ByRef A As Object) 

Dim lns As New List(Of Curve)() 
Dim i As Int16 
For i = 0 To x 
ln.Transform(transform.Rotation(angle * i, vector3d.ZAxis, ln.PointAtEnd)) 
lns.Insert(i, ln) 
Next 
A = lns 

回答

0

我需要在循環旋轉在下單前複製行,否則就沒有它的蹤影。

在C#:

在VB.net
private void RunScript(Curve ln, int x, double angle, ref object A) 
{ 
List<Curve> lns = new List<Curve>; 
for (int = 0; i<= x; i++) 
    { 
    Curve copy = ln.DuplicateCurve(); 
    copy.Rotate(angle * i, Vector3d.ZAxis, ln.PointAtEnd); 
    lns.Add(copy); 
    } 
} 
A = lns; 

Private Sub RunScript(By Val ln As Curve, ByVal x As Integer, ByVal angle As Double, By Ref A as Object) 
    Dim lns As New List(Of Curve)() 
    For i As Integer = 0 To x 
    Dim nl As Curve = ln.DuplicateCurve() 
    nl.Transform(transform.Rotation(angle*i, vector3D.ZAxis, ln.PointAtEnd)) 
    lns.Add(nl) 
    Next 
    A = lns 
End Sub