TImageEnVect.SetObjAnglePoints
Declaration
procedure SetObjAnglePoints(hobj: integer; Points: array of TPoint);
Description
Sets the three points used to define an angle objects (iekAngle).
Parameter | Description |
hobj | Object handle. |
Points | Array of three points used to define the angle. |
Example
ImageEnVect1.ObjKind[IEV_NEXT_INSERTED_OBJECT] := iekAngle;
ImageEnVect1.SetObjAnglePoints(IEV_NEXT_INSERTED_OBJECT, [Point(10, 10), Point(50, 50), Point(10, 100)]);
ImageEnVect1.AddNewObject();