Automate the creation of a rectangular pad with fillets.
On the 3DEXPERIENCE platform, NIP-Activity is often executed via or Exchange Server processes . A user can submit a "Batch NIP Request" from a web browser. The 3DEXPERIENCE server allocates a worker node (a CATIA engine without a screen), runs the NIP script, handles PLM revision rules, and notifies the user upon completion. NIP-Activity - Catia
' --- Non-Interactive Geometry Definition --- ' Define Rectangle points (No UI popups) Dim factory2D As Factory2D Set factory2D = sketch1.OpenEdition() Dim rect As 2DShape ' Coordinates: (0,0), (100,0), (100,50), (0,50) Set rect = factory2D.CreateClosedRectangle(0, 0, 100, 50) factory2D.CloseEdition Automate the creation of a rectangular pad with fillets
' --- Non-Interactive Pad --- Dim pad1 As Pad Set pad1 = part1.ShapeFactory.AddNewPadFromRef(sketch1, 20) The 3DEXPERIENCE server allocates a worker node (a
Introduction: What is NIP-Activity in CATIA? In the high-stakes world of 3D product design and engineering, efficiency is paramount. CATIA (Computer-Aided Three-Dimensional Interactive Application), developed by Dassault Systèmes, is the industry standard for product design and innovation. However, even with its robust interface, repetitive tasks can consume thousands of engineering hours annually.