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 cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

CATIA CAA - How to get CATSurface from a sweep operation

Status
Not open for further replies.

22555

Automotive
Joined
Dec 17, 2003
Messages
24
Location
US
Hi

I have CATIGeometricalElement from Sweep surface which created newly

CATISpecObject_var spSweep1Guide;
Param1.Append(spGuideCurve);
Param1.Append(spCircle);
spSweep1Guide = CAAGsiObjTool.CreateSweepOneGuide(Param1);
Param1.RemoveAll();

CATIGeometricalElement_var spGeomElemSweep = spSweep1Guide;

Will below code work?
CATSurface * mySurface = spGeomElemSweep ;



Can i create a CATSurface from entire sweep surface? Or CATSurface is only for each face of sweep?

my final objective is to create ISOParametricCurve from CATSurface.

CATCurve* pCATCurveV1 = mySurface->ExtractIsoParametricCurve(isoParV1,p1, piGeomFactory);



Thank in advance for your help

Regards
22555
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top