How to get dimension constructions(Lines\arrows)
Hey guys!
Now I'm trying to get dimensions from a part.
What I did:
pfcModelItems_ptr items = solid->ListItems(pfcITEM_DIMENSION);
for (xint dimesionId = 0; dimesionId < items->getarraysize(); dimesionId++)
{
const pfcDimension_ptr dimension = pfcDimension::cast(items->get(dimesionId));
}
From the dimension I can get type(linear\angular\diameter etc.), value, additional symbols\text etc. etc.
That's fine. But what about relationship between this dimension(type+text\value) and an actual part\surface\edge\curve.
On the other hand, it would be great to have coordinates for these additional lines\arrows(that build a dimension) + position of the text\value of particular dimension.

Unfortunately I couldn't find corresponding example or some sort of a description in the User Guide. I looked at "22. Dimensions and Parameters->Dimension Objects", p.329
I ran out of ideas 
I would appreciate it if you could give me some advice.
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.

