Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MintJulep on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Reg : CAA CreateExtractSolide

Status
Not open for further replies.

zynk

Mechanical
Joined
Aug 7, 2012
Messages
1
Location
IN
Hello All,
I'm trying to use CreateExtractSolide. For this input argument is CATISpecObject. But, I have CATFace, which I need to extract.
spExtractspec is returning as NULL. [sad]
Can anyone help me out in this regards please. Thank you in advance.

CATFace_var pFace(FacesList);

const CATIGSMExtractSolidePropag Proptype = ExtractSolide_TangentPropag;
CATISpecObject_var spExtractspec(pFace);
CATISpecObject_var spExtract = spGsmFact->CreateExtractSolide(spExtractspec, Proptype);

CATIGSMProceduralView_var curobj = spExtract;
if (NULL_var != curobj) {
rc = curobj->InsertInProceduralView();
spExtract->Update();

Regards
zynk
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top