128 lines
18 KiB
HTML
128 lines
18 KiB
HTML
<html><head><title>Power users hub/es</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link type='text/css' href='wiki.css' rel='stylesheet'></head><body><h1>Power users hub/es</h1></div>
|
|
|
|
<div id="mw-content-text" lang="es" dir="ltr" class="mw-content-ltr"><hr/>
|
|
<div class="mw-parser-output"><div class="floatright"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Crystal_Clear_app_terminal.png" class="image" title="150"><img alt="150" src="Crystal_Clear_app_terminal.png" width="128" height="128" /></a></div>
|
|
<p>Este es el lugar al que deberías venir si quieres profundizar un poco en FreeCAD. Aquí puedes aprender sobre personalizar FreeCAD según tus necesidades.
|
|
</p><p>These pages are in early stage of development. If you can't find the information you are looking for, or have found useful information somewhere we have not linked to, then please leave a comment on the <a rel="nofollow" class="external text" href="http://forum.freecadweb.org/">forum</a>, or, why not? <a href="Help_FreeCAD.html" title="Help FreeCAD"> Add some more content here yourself!</a>
|
|
</p><p>One of the nicest features of FreeCAD is that you can script and extend it extremely far without the need to compile anything or touch the source code. All the scripting part is done in <a rel="nofollow" class="external text" href="http://en.wikipedia.org/wiki/Python_(programming_language)">Python</a>, a very powerful but simple programming language. With simple Python scripts, you have total access to about any part of FreeCAD. For example, you can:
|
|
</p>
|
|
<ul><li> <b>Create and modify geometry</b>: Is there a special object you need that's not present in the default FreeCAD installation? You can easily create a new object type, either from scratch or by adapting an existing type.</li>
|
|
<li> <b>Create custom tools and commands</b>: At the moment, FreeCAD already has extensive functionality, but there aren't many convenient tools and commands for the final user yet. But it is already easy to create your own sets of tools.</li>
|
|
<li> <b>Modify the interface</b>: The FreeCAD user interface is still very basic at this stage. But everything is there for you to extend it to your needs. You can, for example, create toolbars to put your own tools, create special panels for interacting with your tools, etc.</li>
|
|
<li><b>Modify the scene representation</b>: FreeCAD has separate processes for building up and computing the geometry and displaying that geometry on your screen. You have full access to the way the scene contents are displayed on screen, therefore you can modify that representation, interact with it, or add all kinds of custom behaviours and screen widgets, like information, draggers, anchors or temporary entities.</li></ul>
|
|
<div id="toc" class="toc"><div class="toctitle"><h2>Contents</h2></div>
|
|
<ul>
|
|
<li class="toclevel-1 tocsection-1"><a href="#Personalizando_FreeCAD"><span class="tocnumber">1</span> <span class="toctext">Personalizando FreeCAD</span></a></li>
|
|
<li class="toclevel-1 tocsection-2"><a href="#Archivos_de_gui.C3.B3n_en_FreeCAD"><span class="tocnumber">2</span> <span class="toctext">Archivos de guión en FreeCAD</span></a>
|
|
<ul>
|
|
<li class="toclevel-2 tocsection-3"><a href="#General"><span class="tocnumber">2.1</span> <span class="toctext">General</span></a></li>
|
|
<li class="toclevel-2 tocsection-4"><a href="#Modules"><span class="tocnumber">2.2</span> <span class="toctext">Modules</span></a></li>
|
|
<li class="toclevel-2 tocsection-5"><a href="#Trabajando_con_mallas"><span class="tocnumber">2.3</span> <span class="toctext">Trabajando con mallas</span></a></li>
|
|
<li class="toclevel-2 tocsection-6"><a href="#Utilizando_OpenCasCade"><span class="tocnumber">2.4</span> <span class="toctext">Utilizando OpenCasCade</span></a></li>
|
|
<li class="toclevel-2 tocsection-7"><a href="#Accediendo_a_los_gr.C3.A1ficos_de_escena_de_Coin"><span class="tocnumber">2.5</span> <span class="toctext">Accediendo a los gráficos de escena de Coin</span></a></li>
|
|
<li class="toclevel-2 tocsection-8"><a href="#Controlando_el_interfaz_Qt"><span class="tocnumber">2.6</span> <span class="toctext">Controlando el interfaz Qt</span></a></li>
|
|
<li class="toclevel-2 tocsection-9"><a href="#Trabajando_con_objetos_param.C3.A9tricos"><span class="tocnumber">2.7</span> <span class="toctext">Trabajando con objetos paramétricos</span></a></li>
|
|
<li class="toclevel-2 tocsection-10"><a href="#Ejemplos"><span class="tocnumber">2.8</span> <span class="toctext">Ejemplos</span></a></li>
|
|
</ul>
|
|
</li>
|
|
<li class="toclevel-1 tocsection-11"><a href="#Funciones_del_API"><span class="tocnumber">3</span> <span class="toctext">Funciones del API</span></a></li>
|
|
<li class="toclevel-1 tocsection-12"><a href="#Modificaci.C3.B3n_avanzada"><span class="tocnumber">4</span> <span class="toctext">Modificación avanzada</span></a></li>
|
|
<li class="toclevel-1 tocsection-13"><a href="#Tutoriales_de_Python"><span class="tocnumber">5</span> <span class="toctext">Tutoriales de Python</span></a></li>
|
|
<li class="toclevel-1 tocsection-14"><a href="#Proyectos_de_la_comunidad"><span class="tocnumber">6</span> <span class="toctext">Proyectos de la comunidad</span></a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<h2><span class="mw-headline" id="Personalizando_FreeCAD">Personalizando FreeCAD</span></h2>
|
|
<ul><li> <a href="Interface_Customization.html" title="Interface Customization">Interface Customization</a>: Starting with the beginning: Toolbars and shortcuts</li>
|
|
<li> <a href="Macros.html" title="Macros">Working with Macros</a>: Easily record often repeated tasks or Python code</li>
|
|
<li> <a href="Macros_recipes.html" title="Macros recipes">Macros recipes</a></li>
|
|
<li> <a href="Customize_Toolbars.html" title="Customize Toolbars">Customize Toolbars</a></li>
|
|
<li> <a href="Installing_more_workbenches.html" title="Installing more workbenches">Installing more workbenches</a></li>
|
|
<li> <a rel="nofollow" class="external text" href="http://forum.freecadweb.org/viewtopic.php?t=10556">Plugin Loader</a></li>
|
|
<li> <a rel="nofollow" class="external text" href="https://github.com/FreeCAD/FreeCAD-addons">Addons installer.FCMacro</a></li></ul>
|
|
<h2><span class="mw-headline" id="Archivos_de_gui.C3.B3n_en_FreeCAD">Archivos de guión en FreeCAD</span></h2>
|
|
<h3><span class="mw-headline" id="General">General</span></h3>
|
|
<ul><li> <a href="Introduction_to_Python.html" title="Introduction to Python">Introduction to Python</a> - See also other Python tutorials at the bottom of this page</li>
|
|
<li> <a href="Python_scripting_tutorial.html" title="Python scripting tutorial">FreeCAD scripting tutorial</a> - A general look at python scripting in FreeCAD</li>
|
|
<li> <a href="FreeCAD_Scripting_Basics.html" title="FreeCAD Scripting Basics">FreeCAD Scripting Basics</a>: Well, the basics...</li>
|
|
<li> <a href="Gui_Command.html" title="Gui Command">Gui Command</a> : Adding custom commands to the GUI</li>
|
|
<li> Using mixed <a href="Units.html" title="Units">Units</a> in FreeCAD</li></ul>
|
|
<h3><span class="mw-headline" id="Modules">Modules</span></h3>
|
|
<p>As the functionality of FreeCAD is separated in Modules which deal with special data types and applications. FreeCAD has built-in modules and Extension Modules (plug-ins). Once plugin modules are installed, they become availible to you as easily as the built-in modules. The modules described below are the default modules, includeed in every FreeCAD installation.
|
|
</p>
|
|
<ul><li> The <a href="Builtin_modules.html" title="Builtin modules">Builtin modules</a> are the principal FreeCAD modules. They contain tools for manipulating general FreeCAD configurations, documents and their contents.</li>
|
|
<li> <a href="Workbench_creation.html" title="Workbench creation">Workbench creation</a> shows you how to create your own workbench</li></ul>
|
|
<h3><span class="mw-headline" id="Trabajando_con_mallas">Trabajando con mallas</span></h3>
|
|
<ul><li> <a href="https://www.freecadweb.org/wiki/index.php?title=Mesh_Scripting/es" title="Mesh Scripting/es"> Archivos de guión con mallas</a>: Cómo interactuar con el módulo de <a href="https://www.freecadweb.org/wiki/index.php?title=Mesh_Module/es" class="mw-redirect" title="Mesh Module/es">Mallas</a></li></ul>
|
|
<h3><span class="mw-headline" id="Utilizando_OpenCasCade">Utilizando OpenCasCade</span></h3>
|
|
<ul><li> <a href="https://www.freecadweb.org/wiki/index.php?title=Part_Module/es" title="Part Module/es">El módulo de Piezas</a>: Cómo se utilizan las herramientas y estructura de OpenCasCade en FreeCAD</li>
|
|
<li> <a href="https://www.freecadweb.org/wiki/index.php?title=Topological_data_scripting/es" title="Topological data scripting/es">Archivos de guión de topología de datos</a>: Cómo interactuar con el módulo de Piezas</li>
|
|
<li> <a href="https://www.freecadweb.org/wiki/index.php?title=PythonOCC/es" title="PythonOCC/es">PythonOCC</a>: Cómo dar rienda suelta a todo el poder de OpenCasCade</li>
|
|
<li> <a href="https://www.freecadweb.org/wiki/index.php?title=Mesh_to_Part/es" title="Mesh to Part/es">De malla a pieza</a>: Conversión entre tipos de objetos</li></ul>
|
|
<h3><span class="mw-headline" id="Accediendo_a_los_gr.C3.A1ficos_de_escena_de_Coin">Accediendo a los gráficos de escena de Coin</span></h3>
|
|
<ul><li> <a href="https://www.freecadweb.org/wiki/index.php?title=Scenegraph/es" title="Scenegraph/es">Los gráficos de escena de Coin/Inventor</a>: Cómo funciona la representación de la escena de FreeCAD</li>
|
|
<li> <a href="https://www.freecadweb.org/wiki/index.php?title=Pivy/es" title="Pivy/es">Pivy</a>: Cómo acceder y modificar los gráficos de escena</li></ul>
|
|
<h3><span class="mw-headline" id="Controlando_el_interfaz_Qt">Controlando el interfaz Qt</span></h3>
|
|
<ul><li> <a href="https://www.freecadweb.org/wiki/index.php?title=PySide/es" title="PySide/es">PyQt</a>: Cómo acceder a la interfaz, y modificar su contenido</li>
|
|
<li> <a href="https://www.freecadweb.org/wiki/index.php?title=Embedding_FreeCADGui/es" title="Embedding FreeCADGui/es">Utilizando la interfaz gráfica de usuario de FreeCAD</a> en otra aplicación Qt con PyQt</li></ul>
|
|
<h3><span class="mw-headline" id="Trabajando_con_objetos_param.C3.A9tricos">Trabajando con objetos paramétricos</span></h3>
|
|
<ul><li> <a href="https://www.freecadweb.org/wiki/index.php?title=Scripted_objects/es" title="Scripted objects/es">Objetos en archivos de guión</a>: Cómo crear objetos 100% desde archivos de guión en Python en FreeCAD</li>
|
|
<li> <a href="https://www.freecadweb.org/wiki/index.php?title=Drawing_Module/es" title="Drawing Module/es">Módulo de dibujo</a>: Automatizando el proceso de pasar de 3D a 2D</li></ul>
|
|
<h3><span class="mw-headline" id="Ejemplos">Ejemplos</span></h3>
|
|
<ul><li> <a href="https://www.freecadweb.org/wiki/index.php?title=Code_snippets/es" title="Code snippets/es">Pedazos de código</a> : Una colección de pedazos de código en Python para FreeCAD, para servir como utilidades en tus archivos de guión...</li>
|
|
<li> <a href="https://www.freecadweb.org/wiki/index.php?title=Line_drawing_function/es" title="Line drawing function/es">Función de dibujar líneas</a>: Cómo construir una simple herramienta para dibujar líneas</li>
|
|
<li> <a href="https://www.freecadweb.org/wiki/index.php?title=Dialog_creation/es" title="Dialog creation/es">Creación de letreros de diálogo</a>: Como crear letreros de diálogo con el diseñador de Qt, y utilizarlos en FreeCAD</li>
|
|
<li> <a href="https://www.freecadweb.org/wiki/index.php?title=Embedding_FreeCAD/es" title="Embedding FreeCAD/es">FreeCAD embebido</a>: Cómo importar FreeCAD como un módulo de Python en otras aplicaciones</li>
|
|
<li> El <a href="https://www.freecadweb.org/wiki/index.php?title=Draft_Module/es" title="Draft Module/es">módulo de croquizado</a> añade funciones básicas de dibujo 2D a FreeCAD. Está escrito enteramente en Python, así que puede ser un buen ejemplo si quieres escribir tus propios módulos.</li>
|
|
<li> <a href="https://www.freecadweb.org/wiki/index.php?title=FreeCAD_vector_math_library/es" title="FreeCAD vector math library/es">Biblioteca de matemática vectorial de FreeCAD</a> : Un par de funciones practicas para manipular vectores en FreeCAD. Esta biblioteca está incluida en el módulo de croquizado.</li></ul>
|
|
<h2><span class="mw-headline" id="Funciones_del_API">Funciones del API</span></h2>
|
|
<p>La descripción completa del API se encuentra <a href="https://www.freecadweb.org/wiki/index.php?title=Category:API" title="Category:API">aquí</a>. Puede estar incompleta, pues aún no hemos encontrado la forma de incluirlas automñaticamente en esta wiki. Para obtener información más precisa, navega directamente por los módulos de FreeCAD.
|
|
</p>
|
|
<h2><span class="mw-headline" id="Modificaci.C3.B3n_avanzada">Modificación avanzada</span></h2>
|
|
<ul><li> <a href="https://www.freecadweb.org/wiki/index.php?title=Start_up_and_Configuration/es" title="Start up and Configuration/es">Inicio y configuración</a>: Inicio y opciones del comando de inicio</li>
|
|
<li> <a href="https://www.freecadweb.org/wiki/index.php?title=Install_on_Windows/es" title="Install on Windows/es">Instalación en Windows</a>: Utilizando el instalador de Windows</li>
|
|
<li> <a href="https://www.freecadweb.org/wiki/index.php?title=CompileOnWindows/es" title="CompileOnWindows/es">Compilando FreeCAD en Windows</a> y <a href="https://www.freecadweb.org/wiki/index.php?title=CompileOnUnix/es" title="CompileOnUnix/es">Compilando FreeCAD en Unix</a></li>
|
|
<li> <a href="https://www.freecadweb.org/wiki/index.php?title=Branding/es" title="Branding/es">Construcción de marca</a>: Simples modificaciones que puedes hacer al código fuente para cambiar algunos aspectos de FreeCAD</li>
|
|
<li> <a href="https://www.freecadweb.org/wiki/index.php?title=Extra_python_modules/es" title="Extra python modules/es">Módulos extra en Python</a> : Extiende el interprete de Python de FreeCAD con estos potentes módulos!</li></ul>
|
|
<h2><span class="mw-headline" id="Tutoriales_de_Python">Tutoriales de Python</span></h2>
|
|
<p>Estos son unos buenos tutoriales genéricos, no específicos para FreeCAD, te pueden interesar si eres nuevo en Python.
|
|
</p><p><b>Python</b>
|
|
</p>
|
|
<ul><li> <a rel="nofollow" class="external text" href="https://docs.python.org/2.7/tutorial/index.html">Official python tutorial</a> - A very complete tutorial for discovering python</li>
|
|
<li> <a rel="nofollow" class="external text" href="http://en.wikibooks.org/wiki/Non-Programmer%27s_Tutorial_for_Python">Non-programmer tutorial for python</a> - an excellent wikibook</li>
|
|
<li> <a rel="nofollow" class="external text" href="http://npt.cc.rsu.ru/user/wanderer/ODP/Python_for_Newbies.htm">Python for newbies</a> - one big tutorial covering all the basics</li></ul>
|
|
<p><b>PySide</b> - How to create and manage FreeCAD's Qt UI interface from python
|
|
</p>
|
|
<ul><li> <a rel="nofollow" class="external text" href="http://zetcode.com/gui/pysidetutorial/">PySide tutorial</a> : A platform-agnostic tutorial showing the usage of PySide with examples</li>
|
|
<li> <a rel="nofollow" class="external text" href="http://www.pythoncentral.io/series/python-pyside-pyqt-tutorial/">PySide/PyQt tutorial</a> : A easy to read tutorial that covers PySide and PyQt with examples</li>
|
|
<li> <a rel="nofollow" class="external text" href="http://qt-project.org/wiki/PySideDocumentation">PySide documentation</a> : from the Qt Project (the people who wrote it all)</li>
|
|
<li> <a rel="nofollow" class="external text" href="http://qt-project.org/wiki/QtCreator_and_PySide">Using QtCreator in PySide</a> : also from the Qt Project</li>
|
|
<li> <a rel="nofollow" class="external text" href="http://srinikom.github.io/pyside-docs/index.html">PySide reference</a> : endless detail on the minutiae of PySide and Qt, a reliable reference source</li>
|
|
<li> <a rel="nofollow" class="external text" href="http://nullege.com/codes/search?cq=PySide">PySide code snippets</a> : a searchable database of PySide code snippets</li></ul>
|
|
<p>The following two references are PyQt specific (not PySide) but may offer some information of use:
|
|
</p>
|
|
<ul><li> <a rel="nofollow" class="external text" href="http://www.cs.usfca.edu/~afedosov/qttut/">Basic PyQt tutorial</a> : A simple and short linux-based tutorial that will explain how to work with PyQt and Qt Designer</li>
|
|
<li> <a rel="nofollow" class="external text" href="http://vizzzion.org/?id=pyqt">Programming Qt applications in python</a> : A more in-depth tutorial covering all the process of working with qt and python.</li></ul>
|
|
<p><b>Pivy</b> - Cómo interactuar con las escenas 3D de FreeCAD
|
|
</p>
|
|
<ul><li> <a rel="nofollow" class="external text" href="http://pivy.coin3d.org/documentation/pycon">Tutorial básico de Pivy</a> : Un tutorial muy simple del sitio oficial de Pivy</li>
|
|
<li> <a rel="nofollow" class="external text" href="http://www.google.com.br/url?sa=U&start=3&q=http://studierstube.icg.tu-graz.ac.at/doc/pdf/PivyStudierstubeTutorial.pdf&ei=XyC1Sc2wOeCKmQem_eHnBQ&usg=AFQjCNEYhb-0DcUc6OxFVijAe1epBb-4aA">Introducción a Pivy</a> : Un documento que no es realmente un tutorial pero que ilustra bien como funciona Pivy</li></ul>
|
|
<h2><span class="mw-headline" id="Proyectos_de_la_comunidad">Proyectos de la comunidad</span></h2>
|
|
<p>On the <a href="FreeCAD_Community_Portal.html" title="FreeCAD Community Portal">Community portal</a>, you can find other FreeCAD-based projects run by the FreeCAD users community. If you are starting a new FreeCAD project, be sure to list it there! We also have a page with things you can do if you would like to <a href="Help_FreeCAD.html" title="Help FreeCAD">Help FreeCAD</a>.
|
|
</p><p><br />
|
|
</p>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div><div class="printfooter">
|
|
Online version: "<a dir="ltr" href="https://www.freecadweb.org/wiki/index.php?title=Power_users_hub/es&oldid=212908">http://www.freecadweb.org/wiki/index.php?title=Power_users_hub/es&oldid=212908</a>"</div>
|
|
<div id="catlinks" class="catlinks" data-mw="interface"></div><div class="visualClear"></div>
|
|
</div>
|
|
</div>
|
|
<div id="mw-navigation">
|
|
<h2>Navigation menu</h2>
|
|
|
|
</body></html> |