Куб

From FreeCAD Documentation
Revision as of 22:39, 11 February 2021 by FuzzyBot (talk | contribs) (Updating to match new version of source page)

Куб

Системное название
Part Box
Расположение в меню
Деталь → Примитивы → Куб
Верстаки
Part, Complete
Быстрые клавиши
Нет
Представлено в версии
-
См. также
Создать примитивы

Описание

Команда Куб из верстака Part добавляет параметрический геометрический примитив [1]. По умолчанию, команда добавляет куб с меткой "Куб" со стороной 10мм и располагает его в начале координат. Параметры могут быть изменены после добавления объекта.

Part_Box

Использование

  1. Переключитесь на верстак Part
  2. Выполните команду одним из способов:
    • Нажмите на иконку куба на панели инструментов
    • Выберите из меню Деталь → Примитивы → Куб

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

  • Данные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: Label given to the Box object. Change to suit your needs.

Box

  • ДанныеLength: The length parameter is the Box's dimension in the x-direction.
  • ДанныеWidth: The width parameter is the Box's dimension in the y-direction.
  • ДанныеHeight: 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))