Точка(Вершина)

From FreeCAD Documentation
This page is a translated version of the page Part Point and the translation is 43% complete.
Outdated translations are marked like this.

Точка(Вершина)

Системное название
Part Point
Расположение в меню
Деталь → Создать примитивы... → Точка
Верстаки
Part(Деталь)
Быстрые клавиши
Нет
Представлено в версии
-
См. также
Примитивы

Описание

Точка — это параметрический примитив, который можно создать с помощью команды Примитивы.... Её координаты относительны к системе координат, определенным в её свойстве ДанныеPlacement.

Применение

See Part Primitives.

Свойства

See also: Property editor.

A Part Point object is derived from a Part Feature object and inherits all its properties. It also has the following additional properties:

Данные

Attachment

The object has the same attachment properties as a Part Part2DObject.

Base

  • ДанныеX (Distance): The X coordinate of the point. The default is 0mm.
  • ДанныеY (Distance): The Y coordinate of the point. The default is 0mm.
  • ДанныеZ (Distance): The Z coordinate of the point. The default is 0mm.

Программирование

See also: Autogenerated API documentation, Part scripting and FreeCAD Scripting Basics.

A Part Point can be created with the addObject() method of the document:

point = FreeCAD.ActiveDocument.addObject("Part::Vertex", "myPoint")
  • Where "myPoint" is the name for the object.
  • The function returns the newly created object.

Example:

import FreeCAD as App

doc = App.activeDocument()

point = doc.addObject("Part::Vertex", "myPoint")
point.X = 1
point.Y = 2
point.Z = 3

doc.recompute()