Jump to content
Developer Wiki and Function Reference Links ×

3D path objects: how to get points?


Assembly

Recommended Posts

PROCEDURE Voorbeeld;
VAR
pathHd,PioPathHd,PioHd,PiorecHd,PiowHd : HANDLE;
PioName : STRING;
BEGIN
IF GetCustomObjectInfo(PioName,PioHd,PiorecHd,PiowHd) THEN
BEGIN
{get the handle to the path}
	PioPathHd:=GetCustomObjectPath(PioHd);
{to make it visible, duplicate it}
	PathHd:=CreateDuplicateObject(PioPathHd,NIL);
{now that you have the handle to the drawn poly, give it an other color (for example)}
	SetPenFore(PathHd,65535,0,0);
END;
END;
RUN(Voorbeeld);

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...