Part Cubo

From FreeCAD Documentation
Revision as of 16:23, 9 June 2021 by Stylishcp (talk | contribs) (Created page with "==Uso== # Ir al 16px Banco de trabajo Part # Hay varias maneras de invocar al comando: #* Presionando el botón {{Button|I...")

Part Cubo

Ubicación en el Menú
Pieza → Primitivas → Cubo
Entornos de trabajo
Part
Atajo de teclado por defecto
Ninguno
Introducido en versión
-
Ver también
Part Crear primitivas

Descripción

El comando Cubo del Banco de trabajo Part inserta un rectangular cuboid, que es una forma primitiva geométrica paramétrica, en el documento activo. Por defecto, el comando Cubo insertará un cubo de 10x10x10 mm, posicionado en el origen, con el nombre "Cubo". Estos parámetros pueden ser modificados tras la creación del objeto.

Part_Box

Uso

  1. Ir al Banco de trabajo Part
  2. Hay varias maneras de invocar al comando:
    • Presionando el botón Cubo en la barra de herramientas.
    • Seleccionar Pieza → Primitivas → Cubo desde la barra de menú.

Result: The default result is a box with an equal length, width and height of 10 mm. It is attached the the global xy-plane and one edge is coincident with the global z-axis.

The box properties can later be edited, either in the property editor or by double-clicking on the box in the model tree.

Properties

Base

  • DatosPlacement: Specifies the orientation and position of the Box in the 3D space. See Placement. The reference point is the left front lower corner of the box.
  • DatosLabel: Label given to the Box object. Change to suit your needs.

Box

  • DatosLength: The length parameter is the Box's dimension in the x-direction.
  • DatosWidth: The width parameter is the Box's dimension in the y-direction.
  • DatosHeight: The height parameter is the Box's dimension in the z-direction.

Part_Box-Properties

Scripting

The Box command can by used in macros and from the python console using the following function:

FreeCAD.ActiveDocument.addObject("Part::Box", "myBox")
  • Where "myBox" is the label for the Box object.
  • Returns newly created object of type Box.

You can access and modify attributes of the Box object. For example, you may wish to modify the length, width and height parameters.

FreeCAD.ActiveDocument.myBox.Length = 25
FreeCAD.ActiveDocument.myBox.Width = 15
FreeCAD.ActiveDocument.myBox.Height = 30

You can change its placement with:

FreeCAD.ActiveDocument.myBox.Placement = FreeCAD.Placement(FreeCAD.Vector(4, 6, 3), FreeCAD.Rotation(30, 45, 10))