DxfDocumentRotateEntityAboutAxis Method
|
Rotate an entity about an arbitrary axis.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public void RotateEntityAboutAxis(
ref EntityObject Entity,
double Rotation,
Vector3 StartPoint,
Vector3 EndPoint
)
Public Sub RotateEntityAboutAxis (
ByRef Entity As EntityObject,
Rotation As Double,
StartPoint As Vector3,
EndPoint As Vector3
)
public:
void RotateEntityAboutAxis(
EntityObject^% Entity,
double Rotation,
Vector3 StartPoint,
Vector3 EndPoint
)
member RotateEntityAboutAxis :
Entity : EntityObject byref *
Rotation : float *
StartPoint : Vector3 *
EndPoint : Vector3 -> unit
METHOD RotateEntityAboutAxis(
Entity REF EntityObject,
Rotation AS REAL8,
StartPoint AS Vector3,
EndPoint AS Vector3
) AS VOID
Parameters
- Entity
- Type: DXFReaderNET.EntitiesEntityObject
The entity 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