Arquitectura Referencia

From FreeCAD Documentation
Revision as of 20:43, 20 February 2020 by FuzzyBot (talk | contribs) (Updating to match new version of source page)

Arch Reference

Ubicación en el Menú
Arch → Reference
Entornos de trabajo
Arch
Atajo de teclado por defecto
Ninguno
Introducido en versión
-
Ver también
Arch BuildingPart

Descripción

La herramienta de referencia le permite colocar un objeto en el documento actual que copia su forma y los colores de un objeto basado en Part (incluido Arch BuildingPart) almacenado en otro archivo FreeCAD. Si ese archivo de FreeCAD cambia, el objeto de referencia se marca para ser recargado.

Utilización

  1. Presione el botón Arch Reference
  2. Presiona el botón "Choose file..." y selecciona un archivo FreeCAD existente
  3. Seleccione uno de los objetos basados ​​en piezas incluidos de la lista desplegable
  4. Presiona OK

Opciones

  • The reference object can be moved and rotated, the current position will be retained after reloading the object
  • If the original object gets moved in containing file, this movement will reflect in the reference object
  • By right-clicking a Reference object in the tree view, you have the options to reload the original object, or open the containing file
  • To reference several object at once, place them inside an Arch BuildingPart
  • When turning off the Update Colors view property of the Reference, it son't reload the original colors anymore, so you can safely change them

Propiedades

  • DatosFile: The base file this component is built upon
  • DatosPart: The part to use from the base file
  • VistaUpdate Colors: If true, the colors from the linked file will be kept updated

Programación

La herramienta Reference se puede utilizar en macros y desde la consola de Python por medio de las siguientes instrucciones:

makeReference ([file_path,object_name])

creates a Reference object from the given object in the given file.

Ejemplo:

import Arch
Arch.makeReference("/path/to/some/file.FSCtd","myPart")