function Leadtools.Annotations.Rendering.AnnObjectRenderer.renderRotatePointThumbs( mapper , rotateCenterLocation , rotateGripperLocation , operations )
Parameter | Type | Description |
---|---|---|
mapper | AnnContainerMapper | The mapper object to use for converting coordinates. Must not be null. |
rotateCenterLocation | LeadPointD | Location of the rotate center to render in container coordinates. |
rotateGripperLocation | LeadPointD | Location of the rotate gripper to render in container coordinates. |
operations | AnnFixedStateOperations | The fixed state of the owner object. |
This method is called by the framework to render the object rotation center and gripper thumbs (when the object is in a selected state). AnnObjectRenderer contains all the information required to render the thumbs, therefore, most of the derived classes implementation do not override this method and uses the default implementation instead.
This method will use RotateCenterThumbStyle to render the thumb at rotateCenterLocation and RotateGripperThumbStyle to render the thumb at rotateGripperLocation by calling RotateCenterThumbStyle.Render and RotateGripperThumbStyle.Render respectively. If RotateCenterThumbStyle or RotateGripperThumbStyle is set to null, then no corresponding thumb will not be rendered.
For more information, refer to Annotation Rotation Options.