Part Box/es: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
(15 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<languages/>
{{GuiCommand/es|Name=Part_Box|Workbenches=Pieza,Completo}}
{{Docnav
|
|[[Part_Cylinder|Cylinder]]
|[[Part_Module|Part]]
|IconL=
|IconR=Part_Cylinder.svg
|IconC=Workbench_Part.svg
}}


<div class="mw-translate-fuzzy">
Crea un cubo paramétrico simple, con los parámetros de posición, altura, longitud y ancho. El cubo se posicionará en el origen (punto 0,0,0) en la creación.
{{GuiCommand/es|Name=Part Box|Name/es=Part Box|MenuLocation=Part → Box||Workbenches=[[Part Module/es|Part]], Complete|SeeAlso=[[Part_CreatePrimitives/es|Part CreatePrimitives]]}}
</div>


==Description==
Por defecto es un cubo de 10mm x 10mm x 10mm posicionado en el origen global al crearse.
The Box command from the [[Part_Workbench|Part Workbench]] inserts a parametric, [http://en.wikipedia.org/wiki/Cuboid#Rectangular_cuboid rectangular cuboid], geometric primitive into the active document. By default, the Box command will insert a 10x10x10 mm cube, positioned at the origin, with the label "cube". These parameters may be modified after the object has been added.


[[Image:Part_Box.jpg|400px|Part_Box]]
The default is a cube with parameter values for height, length and width being 10mm. The default placement values will locate the cuboid's local origin at the global origin (the location where all axis are 0) and the orientation such that


==Notes==
* {{VersionPlus|0.14}} a [[Part Box]] is referred to in the GUI elements as a '''Cube''' and the default label is "Cube".


==Usage==
La longitud es la distancia en el eje X.
# Switch to the [[Image:Workbench_Part.svg|24px]] [[Part Workbench]]
# Invoke the command several ways:
#* Press the {{KEY|[[Image:Part Box.svg|24px]]}} button in the toolbar.
#* Select the {{MenuCommand|Part → Primitives → Cube}} from the menu bar.


==Options==
El ancho es la distancia en el eje Y.
* Via the [[Property_editor | Property Editor]]:
** '''Length:''' Set the length distance for your Box object (default is 10 mm).
** '''Width:''' Set the width distance for your Box object (default is 10 mm).
** '''Height:''' Set the height distance for your Box object (default is 10 mm).
** '''Placement:''' Specifies the orientation and position of the Box in the 3D space. See [[Placement | Placement]]. The reference point is the left front lower corner of the box.
** '''Label:''' The Label is the name given to the operation. This name can be changed at your convenience.


==Properties==
La altura es la distancia en el eje Z.
{{Properties_Title|Base}}
*{{PropertyData|Placement}}: Specifies the orientation and position of the Box in the 3D space. See [[Placement | Placement]]. The reference point is the left front lower corner of the box.
*{{PropertyData|Label}}: Label given to the Box object. Change to suit your needs.


{{Properties_Title|Box}}
*{{PropertyData|Length}}: The length parameter is the Box's dimension in the x-direction.
*{{PropertyData|Width}}: The width parameter is the Box's dimension in the y-direction.
*{{PropertyData|Height}}: The height parameter is the Box's dimension in the z-direction.


[[Image:Part_Box-Properties.jpg|Part_Box-Properties]]
[[File:box.png|650px|a box created with the Box tool]]


==Scripting==
==FreeCAD - Version==
The Box command can by used in [[macros]] and from the python console using the following function:
{{Code|code=
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.
*{{Version|0.14}}
{{Code|code=
FreeCAD.ActiveDocument.myBox.Length = 25
FreeCAD.ActiveDocument.myBox.Width = 15
FreeCAD.ActiveDocument.myBox.Height = 30
}}


You can change its placement with:
Beginning in FreeCAD version 0.14, a Part Box is referred to in the GUI elements as a Cube and the default label is "Cube".
{{Code|code=
FreeCAD.ActiveDocument.myBox.Placement = FreeCAD.Placement(FreeCAD.Vector(4, 6, 3), FreeCAD.Rotation(30, 45, 10))
}}




{{clear}}
{{Docnav
|
<languages/>
|[[Part_Cylinder|Cylinder]]
|[[Part_Module|Part]]
|IconL=
|IconR=Part_Cylinder.svg
|IconC=Workbench_Part.svg
}}

{{Part Tools navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}

Revision as of 20:16, 1 December 2020

Part Box

Ubicación en el Menú
Part → Box
Entornos de trabajo
Part, Complete
Atajo de teclado por defecto
Ninguno
Introducido en versión
-
Ver también
Part CreatePrimitives

Description

The Box command from the Part Workbench inserts a parametric, rectangular cuboid, geometric primitive into the active document. By default, the Box command will insert a 10x10x10 mm cube, positioned at the origin, with the label "cube". These parameters may be modified after the object has been added.

Part_Box

Notes

  • version 0.14 and above a Part Box is referred to in the GUI elements as a Cube and the default label is "Cube".

Usage

  1. Switch to the Part Workbench
  2. Invoke the command several ways:
    • Press the button in the toolbar.
    • Select the Part → Primitives → Cube from the menu bar.

Options

  • Via the Property Editor:
    • Length: Set the length distance for your Box object (default is 10 mm).
    • Width: Set the width distance for your Box object (default is 10 mm).
    • Height: Set the height distance for your Box object (default is 10 mm).
    • Placement: 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.
    • Label: The Label is the name given to the operation. This name can be changed at your convenience.

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))