DxfDocumentRotateEntitiesAboutAxis Method
|
Rotate a list of entities about an arbitrary axis.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public void RotateEntitiesAboutAxis(
IEnumerable Entities,
double Rotation,
Vector3 StartPoint,
Vector3 EndPoint
)
Public Sub RotateEntitiesAboutAxis (
Entities As IEnumerable,
Rotation As Double,
StartPoint As Vector3,
EndPoint As Vector3
)
public:
void RotateEntitiesAboutAxis(
IEnumerable^ Entities,
double Rotation,
Vector3 StartPoint,
Vector3 EndPoint
)
member RotateEntitiesAboutAxis :
Entities : IEnumerable *
Rotation : float *
StartPoint : Vector3 *
EndPoint : Vector3 -> unit
METHOD RotateEntitiesAboutAxis(
Entities AS IEnumerable,
Rotation AS REAL8,
StartPoint AS Vector3,
EndPoint AS Vector3
) AS VOID
Parameters
- Entities
- Type: System.CollectionsIEnumerable
The list entities to rotate. - Rotation
- Type: SystemDouble
Rotation angle in degree. - StartPoint
- Type: DXFReaderNETVector3
Start point of rotation axis. - EndPoint
- Type: DXFReaderNETVector3
End point of rotation axis.
See Also