I am working on rotating an arc and am using the following code:
Code: Select all
Select Case _entityType
Case CADImport.EntityType.Arc
Dim arc As New CADArc
arc = _entity
arc.StartAngle = arc.StartAngle + degrees
arc.EndAngle = arc.EndAngle + degrees
_entity = arc
End Select
How would I rotate and transform all four entities properly?
Also, I looked into CADConverter.iterate but that was very unclear in the documentation. I see that it uses a delegate. It looks to me like you still have to write a sub that does the rotate of transform. I seem to be back where I started...how to rotate or transform?