Macro PartsLibrary/es: Difference between revisions

From FreeCAD Documentation
(Created page with "Este enlace te lleva a la macro:")
(Updating to match new version of source page)
Line 1: Line 1:
{{Macro|Icon=FreeCAD Doc|Name=Parts Library|Description=Starts the Parts Library browser FreeCAD|Author=yorik|Version=01.00|Date=2014-03-25}}
{{Macro|Icon=FreeCAD Doc|Name=Parts Library|Description=Starts the Parts Library browser FreeCAD|Author=yorik|Version=01.00|Date=2014-03-25}}


<div class="mw-translate-fuzzy">
La librería [http://github.com/yorikvanhavre/FreeCAD-library FreeCAD Parts Library] es un esfuerzo de la comunidad para proporcionar una libreria libre de piezas reusables que puedan ser usadas en cualquier proyecto. Se puede participar y subir nuevas piezas siempre que no se infrinjan los derechos intelectuales de nadie al hacerlo. Ver el archivo [http://github.com/yorikvanhavre/FreeCAD-library readme] para más detalles.
La librería [http://github.com/yorikvanhavre/FreeCAD-library FreeCAD Parts Library] es un esfuerzo de la comunidad para proporcionar una libreria libre de piezas reusables que puedan ser usadas en cualquier proyecto. Se puede participar y subir nuevas piezas siempre que no se infrinjan los derechos intelectuales de nadie al hacerlo. Ver el archivo [http://github.com/yorikvanhavre/FreeCAD-library readme] para más detalles.
</div>

The [http://github.com/yorikvanhavre/FreeCAD-library FreeCAD Parts Library] is a community effort to provide a free library of reusable Parts to be inserted into your projects. You are welcome to participate and submit parts to the library, but keep in mind you must have rights to share them. See the [http://github.com/yorikvanhavre/FreeCAD-library readme] file for more details.

{{Codeextralink|https://raw.githubusercontent.com/FreeCAD/FreeCAD-library/master/PartsLibrary.FCMacro}}


Esta macro, también incluida en la librería, hace aparecer un panel en el interface de FreeCAD, desde el cual se pueden inspeccionar fácilmente las piezas contenidas en la librería e insertarlas en el documento abierto con solo hacer un doble clic sobre ellas.
Esta macro, también incluida en la librería, hace aparecer un panel en el interface de FreeCAD, desde el cual se pueden inspeccionar fácilmente las piezas contenidas en la librería e insertarlas en el documento abierto con solo hacer un doble clic sobre ellas.

Revision as of 19:57, 3 August 2018

File:FreeCAD Doc Parts Library

Description
Starts the Parts Library browser FreeCAD

Macro version: 01.00
Last modified: 2014-03-25
Author: yorik
Author
yorik
Download
None
Links
Macro Version
01.00
Date last modified
2014-03-25
FreeCAD Version(s)
None
Default shortcut
None
See also
None

La librería FreeCAD Parts Library es un esfuerzo de la comunidad para proporcionar una libreria libre de piezas reusables que puedan ser usadas en cualquier proyecto. Se puede participar y subir nuevas piezas siempre que no se infrinjan los derechos intelectuales de nadie al hacerlo. Ver el archivo readme para más detalles.

The FreeCAD Parts Library is a community effort to provide a free library of reusable Parts to be inserted into your projects. You are welcome to participate and submit parts to the library, but keep in mind you must have rights to share them. See the readme file for more details.

Temporary code for external macro link. Do not use this code. This code is used exclusively by Addon Manager. Link for optional manual installation: Macro


# This code is copied instead of the original macro code
# to guide the user to the online download page.
# Use it if the code of the macro is larger than 64 KB and cannot be included in the wiki
# or if the RAW code URL is somewhere else in the wiki.

from PySide import QtGui, QtCore

diag = QtGui.QMessageBox(QtGui.QMessageBox.Information,
    "Information",
    "This macro must be downloaded from this link\n"
    "\n"
    "https://raw.githubusercontent.com/FreeCAD/FreeCAD-library/master/PartsLibrary.FCMacro" + "\n"
    "\n"
    "Quit this window to access the download page")

diag.setWindowFlags(QtCore.Qt.WindowStaysOnTopHint)
diag.setWindowModality(QtCore.Qt.ApplicationModal)
diag.exec_()

import webbrowser 
webbrowser.open("https://raw.githubusercontent.com/FreeCAD/FreeCAD-library/master/PartsLibrary.FCMacro")


Esta macro, también incluida en la librería, hace aparecer un panel en el interface de FreeCAD, desde el cual se pueden inspeccionar fácilmente las piezas contenidas en la librería e insertarlas en el documento abierto con solo hacer un doble clic sobre ellas.

Este enlace te lleva a la macro:

http://github.com/yorikvanhavre/FreeCAD-library/blob/master/PartsLibrary.FCMacro