Skip to content

Commit

Permalink
sequence composition
Browse files Browse the repository at this point in the history
  • Loading branch information
rms80 committed May 22, 2018
1 parent e569636 commit d2a0063
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions math/TransformSequence.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,17 @@ public TransformSequence()
Operations = new List<XForm>();
}

public TransformSequence(TransformSequence copy)
{
Operations = new List<XForm>(copy.Operations);
}



public void Append(TransformSequence sequence)
{
Operations.AddRange(sequence.Operations);
}


public void AppendTranslation(Vector3d dv)
Expand Down

0 comments on commit d2a0063

Please sign in to comment.