Search found 41 matches

by Gandouzi Ghayth
Fri Aug 21, 2020 12:06 pm
Forum: Forum français
Topic: Connexion des bouton d'une interface
Replies: 2
Views: 556

Re: Connexion des bouton d'une interface

il y'a t'il une recommandation concernant ce sujet ? :cry:
by Gandouzi Ghayth
Tue Aug 18, 2020 6:01 pm
Forum: Forum français
Topic: Connexion des bouton d'une interface
Replies: 2
Views: 556

Connexion des bouton d'une interface

Bonjour, Après la création des macro , je veut regroupé c'est différent macro dans des boutons de mon interface , si je clique sur une la première bouton je fais l’exécution du 1 ère macro . d’après vous comment je peut faire cette connexion entre la bouton de l'interface et leur macro correspondant...
by Gandouzi Ghayth
Thu Aug 06, 2020 9:10 pm
Forum: Forum français
Topic: Élaboration d'un script pour les matrice des relation
Replies: 2
Views: 446

Re: Élaboration d'un script pour les matrice des relation

:lol: :lol: le principe est bien présente vous avez me donner 3 remarque essentielle: *oui la est une matrice carré nxn voir la figure pour la matrice X en 2x2 :D ,oui bien sur la présentation de la matrice n'est pas conforme parce que je n'ai pas encore carré l'interface *les trois matrice sont sym...
by Gandouzi Ghayth
Thu Aug 06, 2020 5:55 pm
Forum: Forum français
Topic: Élaboration d'un script pour les matrice des relation
Replies: 2
Views: 446

Élaboration d'un script pour les matrice des relation

Bon soir mes amis , Les assemblages CAO sont basés sur les relations qui existent entre leurs composants. A partir de ces relations, on peut extraire un grand nombre de données qui peuvent être présentées sous forme de matrices. Les matrices extraites sont : la matrice des relations, la matrice d’ad...
by Gandouzi Ghayth
Sun Jul 26, 2020 7:28 pm
Forum: Python scripting and macros
Topic: development of the recording of the macro fc info in xml format
Replies: 6
Views: 1378

Re: development of the recording of the macro fc info in xml format

j'ai trouvez ici la structure mais qu'est ce que je peut mettre ici:"ici votre code pour le xml "? SaveName = "" # SaveName, Filter = PySide.QtGui.QFileDialog.getSaveFileName(None, "Save a file FCInfo", path, "*.FCInfo") # PySide SaveName, Filter = PySide.QtGu...
by Gandouzi Ghayth
Sat Jul 25, 2020 4:56 pm
Forum: Open discussion
Topic: fc info macro and xml
Replies: 0
Views: 952

fc info macro and xml

hello friends, the basis of my work of extracting CAD data from the part is the macro fc info the save command of fc info contains different format: excel, note .fc info ... the most important is how to extract all the data in xml format because the xml format is very interesting for the work of the...
by Gandouzi Ghayth
Sat Jul 25, 2020 4:37 pm
Forum: Python scripting and macros
Topic: development of the recording of the macro fc info in xml format
Replies: 6
Views: 1378

Re: development of the recording of the macro fc info in xml format

yes but i search about the form of the xml that can give the different data like volume,area,mass,inertia
the extraction with the xml form is very important on the system engineering.
by Gandouzi Ghayth
Sat Jul 25, 2020 7:51 am
Forum: Forum français
Topic: Normale d'une Face
Replies: 16
Views: 2151

Re: Normale d'une Face

je veut générer des matrice d'assemblage d'un ensemble des pièces donc c'est sans la sélection des pièces
je veut changer
u=0
v=0
pour déterminer ce vecteur normale
by Gandouzi Ghayth
Fri Jul 24, 2020 7:19 pm
Forum: Forum français
Topic: Normale d'une Face
Replies: 16
Views: 2151

Re: Normale d'une Face

c'est bon voici le code qui vous permet de générer le normale d'une face import FreeCAD import FreeCADGui #creation liste piece LP = [] #LC = ['planesParallel','circularEdge'] LP2=[] for object in FreeCAD.ActiveDocument.Objects: if 'objectType' in object.PropertiesList: LP.append(object.Label) if 'T...
by Gandouzi Ghayth
Fri Jul 24, 2020 5:32 pm
Forum: Python scripting and macros
Topic: the normal of a face
Replies: 7
Views: 1225

Re: the normal of a face

import FreeCAD import FreeCADGui #creation liste piece LP = [] #LC = ['planesParallel','circularEdge'] LP2=[] for object in FreeCAD.ActiveDocument.Objects: if 'objectType' in object.PropertiesList: LP.append(object.Label) if 'Type' in object.PropertiesList: LP2.append(object.Object1) LP2.append(obj...