Search found 504 matches

by dcapeletti
Fri Jul 20, 2018 2:27 pm
Forum: Foro en Español
Topic: Trabajar con conjuntos y subconjuntos en freecad
Replies: 6
Views: 1879

Re: Trabajar con conjuntos y subconjuntos en freecad

Gracias por sus respuestas.
Miren acá un vídeo de SolidWorks que muestra como ensambla rconjuntos con algunas piezas https://youtu.be/36Bry_57Pcc?t=792
Creo que ese trabajo se puede comparar con esto https://www.youtube.com/watch?v=iOKjaSpLkt4

¿Qué opinan?

Saludos
by dcapeletti
Fri Jul 20, 2018 8:56 am
Forum: Open discussion
Topic: Change image when starting FreeCAD
Replies: 7
Views: 1223

Re: Change image when starting FreeCAD

This involves compiling freecad, right?

It is not possible, for example, to change the freecad icon using python?
by dcapeletti
Thu Jul 19, 2018 9:18 pm
Forum: Foro en Español
Topic: Trabajar con conjuntos y subconjuntos en freecad
Replies: 6
Views: 1879

Trabajar con conjuntos y subconjuntos en freecad

Estimados, El otro día un amigo me comentó que su empresa ha sido demandada por usar una copia ilegal de solidwork. Estan planeando migrar a freecad. Me pregunto como freecad trabaja con conjuntos y subconjuntos. Y no supe responderle bien porque nose si existen bancos de trabajos para tal fin. Solo...
by dcapeletti
Wed Jul 18, 2018 7:44 pm
Forum: Open discussion
Topic: Change image when starting FreeCAD
Replies: 7
Views: 1223

Change image when starting FreeCAD

Hello, everyone. I want to change the image when I start FreeCAD but I don't know where it is. I would also like to change the FreeCAD icon when opening documents. You could help me find his location or if possible by python code. Thank you very much ;)
by dcapeletti
Wed Jul 18, 2018 12:29 pm
Forum: Open discussion
Topic: Visualization and interaction with the freecad document through the web browser
Replies: 5
Views: 1398

Re: FreeCAD on the web

Estimates, what i am looking for is to visualize an instance of freecad through the web browser. This instance can be read-only, allows you to move in the 3D view and select them to get data sent to the web browser, nothing more. Then, with various html controls, you can send commands to the freecad...
by dcapeletti
Tue Jul 17, 2018 6:11 pm
Forum: Open discussion
Topic: Restructure the freecad interface
Replies: 10
Views: 1069

Re: Restructure the freecad interface

With this small macro I can hide the entire freecad environment, its menu bar and toolbar. The macro runs at the start of FreeCAD. # -*- coding: utf-8 -*- """ *************************************************************************** * Copyright (c) 2016 triplus @ FreeCAD, 2018 dcape...
by dcapeletti
Tue Jul 17, 2018 5:41 pm
Forum: Open discussion
Topic: Restructure the freecad interface
Replies: 10
Views: 1069

Re: Restructure the freecad interface

# Hide menu bar from PySide import QtGui mw = FreeCADGui.getMainWindow() for i in mw.findChildren(QtGui.QAction): if i.objectName() == u'&Help' or i.objectName() == u'&File' or i.objectName() == u'&Windows' or i.objectName() == u'&Edit' or i.objectName() == u'&Macro' or i.objectN...
by dcapeletti
Tue Jul 17, 2018 5:15 pm
Forum: Open discussion
Topic: Restructure the freecad interface
Replies: 10
Views: 1069

Re: Restructure the freecad interface

from PySide import QtGui mw = FreeCADGui.getMainWindow() mw.setVisible(False) #hidden freecad # Hide menu bar for i in mw.findChildren(QtGui.QAction): if i.objectName() == u'&Help' or i.objectName() == u'&File' or i.objectName() == u'&Windows' or i.objectName() == u'&Edit' or i.objec...
by dcapeletti
Tue Jul 17, 2018 4:49 pm
Forum: Open discussion
Topic: Restructure the freecad interface
Replies: 10
Views: 1069

Re: Restructure the freecad interface

Why implement things from scratch when everything needed is already implemented in FreeCAD? :D All that is needed here is to trim down FreeCAD to its bare minimum. Granted, I wouldn't have a clue where to start. I need to remove the menu bar and install a toolbar or custom menu bar that runs my own...
by dcapeletti
Tue Jul 17, 2018 4:41 pm
Forum: Open discussion
Topic: Restructure the freecad interface
Replies: 10
Views: 1069

Re: Restructure the freecad interface

How to hide the entire menu bar - can you do it using python?

This script https://forum.freecadweb.org/viewtopic.php?t=15250 hides the job banks, but not the default freecad menu bar.