To GS points save in a txt is something like this.
Sub CATMain()
Dim oPartDoc As Part
On Error Resume Next
Set oPartDoc = CATIA.ActiveDocument.Part
If Err.Number <> 0 Then
Message = MsgBox("Sorry, This script works with a CATPart as Active document", vbCritical, "Error")
Exit...
Hello.
Selecting a "Geometrical Set", with this macro generates a text file.
'##ALGORITMO CATScript
'Export parameters and values of Geometrical Set to txt File
Sub CATMain()
'Documento Activo
Dim oPartDoc As Part
On Error Resume Next
Set oPartDoc = CATIA.ActiveDocument.Part
If Err.Number...
Good day to all.
Recently I've been learning to program in catia, and currently occupy a small script. which should create a point between two "geometrical set" groups of points .
In the picture would be "FG2_5_C3" and "Geometrical Set.5". Each group has the same amount of points and I will...