|
马上注册,结交更多同行朋友,交流,分享,学习。
您需要 登录 才可以下载或查看,没有帐号?注册
x
各位:
我嘗試加入一個annotation 在已選擇的面上, 但是annotation 是加在面的中間, 而不是我點的那點.
以下是用來加annotation 的code
CATSO* pSO = new CATSO;
pSO->Empty();
pSO->AddElement(pathElement,0); //pathElement 是從catcso list 拿出來的, 是當前選的entity
CATMathPlane Plane = CATMathOIJ;
CATITPSText * piText = NULL;
hr = piFactAdv->CreateTextOnGeometry(pSO, &Plane, &textString, &piText); //piFactAdv是 instance of CATITPSFactoryAdvanced
但我看見一個例子, 它可以將annotation 加在所click 的位置上, 它是用CATSO * pSelection = _pAgentGeometry -> GetListOfValues(); _pAgentGeometry 是一個instance of CATPathElementAgent, 而我是 new 一個catso 出來. |
|