cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X

how to create a gtol in drawing

xd
1-Newbie
1-Newbie

how to create a gtol in drawing

how to create a gtol in drawing mode?

can anyone help? or share some codes?

i did it with protoolkit, however, it does not work right. Maybe the annotation plane or the placement is set wrong.


This thread is inactive and closed by the PTC Community Management Team. If you would like to provide a reply and re-open this thread, please notify the moderator and reference the thread. You may also use "Start a topic" button to ask a new question. Please be sure to include what version of the PTC product you are using so another community member knowledgeable about your version may be able to assist.
1 ACCEPTED SOLUTION

Accepted Solutions
xd
1-Newbie
1-Newbie
(To:xd)

procedure is as follows,

check ProGtoldataStatus step by step,

it's a little complex, the reference , the model, the type and the placement have relations to each other.

ProGtoldataAlloc(drawing,&gtd);

ProGtoldataModelSet(gtd,solid,&gtds);

ProGtoldataTypeSet(gtd,type,&gtds);

ProGtoldataReferenceSet(gtd,rtype,reference,&gtds);

ProGtoldataPlacementSet(gtd,ptype,NULL,NULL,location,NULL,&gtds);

ProGtoldataPlaneSet(gtd,&plane);

ProGtoldataGtoldatumrefSet(gtd,NULL,NULL,NULL,&gtds);

ProGtoldataDiameterSet(gtd,diameter,&gtds);

ProGtoldataValueSet(gtd,b_v,d_v,name,&gtds);

ProGtoldataMatCondSet(gtd,matcond,&gtds);

ProGtolCreate(gtd,&gtol);

ProGtoldataFree(&gtd);

View solution in original post

1 REPLY 1
xd
1-Newbie
1-Newbie
(To:xd)

procedure is as follows,

check ProGtoldataStatus step by step,

it's a little complex, the reference , the model, the type and the placement have relations to each other.

ProGtoldataAlloc(drawing,&gtd);

ProGtoldataModelSet(gtd,solid,&gtds);

ProGtoldataTypeSet(gtd,type,&gtds);

ProGtoldataReferenceSet(gtd,rtype,reference,&gtds);

ProGtoldataPlacementSet(gtd,ptype,NULL,NULL,location,NULL,&gtds);

ProGtoldataPlaneSet(gtd,&plane);

ProGtoldataGtoldatumrefSet(gtd,NULL,NULL,NULL,&gtds);

ProGtoldataDiameterSet(gtd,diameter,&gtds);

ProGtoldataValueSet(gtd,b_v,d_v,name,&gtds);

ProGtoldataMatCondSet(gtd,matcond,&gtds);

ProGtolCreate(gtd,&gtol);

ProGtoldataFree(&gtd);

Top Tags