Funzione Part

From FreeCAD Documentation
Revision as of 18:23, 30 September 2019 by Renatorivo (talk | contribs) (Created page with "Part Feature")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Introduction

A Part Feature object, or formally a Part::Feature, is a simple element with a topological Shape associated that can be displayed in the 3D view.

The Part::Feature is defined in the Part Workbench but can be used as the base class for scripted objects in all workbenches that produce 2D and 3D geometrical shapes.

A Part::Feature has simple properties like a placement, and colors to define the appearance of its vertices, edges, and faces. Workbenches can add more properties to this basic element to produce an object with complex behavior.

Properties

See Property for all property types that scripted objects can have.

These are the properties available in the property editor.

Data

  • DatiPlacement: the position of the object in the 3D view. The placement is defined by a Base point (vector), and a Rotation (axis and angle).
    • DatiAngle: the angle of rotation around the DatiAxis.
    • DatiAxis: the unit vector that defines the axis of rotation for the placement. Each value is between 0 and 1. If any value is above 1, the vector is normalized so that the magnitude of the vector is 1.
    • DatiPosition: the 3D coordinates of the base point of the placement.
  • DatiLabel: the user editable description of this object.

View

  • VistaAngular Deflection: it is a companion to VistaDeviation. It is another way to specify how finely to generate the mesh for rendering on screen or when exporting. The default value is 28.5 degrees, or 0.5 radians. The smaller the value the smoother the appearance will be in the 3D view, and the finer the mesh that will be exported.
  • VistaBounding Box: if it is true, the object will show the bounding box in the 3D view.
  • VistaDeviation: it is a companion to VistaAngular Deflection. It is another way to specify how finely to generate the mesh for rendering on screen or when exporting. The default value is 0.5. The smaller the value the smoother the appearance will be in the 3D view, and the finer the mesh that will be exported.
  • VistaDisplay Mode: Flat Lines (regular visualization), Shaded (soft edges), Wireframe (no faces), Points (only vertices).
  • VistaDraw Style: Solid, Dashed, Dotted, Dashdot; defines the style of the edges in the 3D view.
  • VistaLighting: Two side, One side; the illumination comes from two sides or one side in the 3D view.
  • VistaLine Color: a tuple of three values (r,g,b) to define the color of the edges in the 3D view.
  • VistaLine Width: a float that determines the width in pixels of the edges in the 3D view.
  • VistaOn Top When Selected: Disabled, Enabled, Object, Element.
  • VistaPoint Color: a tuple of three values (r,g,b) to define the color of the vertices in the 3D view.
  • VistaPoint Size: a float that determines the size in pixels of the vertices in the 3D view.
  • VistaSelectable: if it is true, the object can be picked with the pointer in the 3D view. Otherwise, the object cannot be selected until this option is set to true.
  • VistaSelection Style: Shape, BoundBox.
  • VistaShape Color: a tuple of three values (r,g,b) to define the color of the faces in the 3D view.
  • VistaShow In Tree: if it is true, the object appears in the tree view. Otherwise, it is set as invisible.
  • VistaTransparency: a float from 0 to 100 that determines the level of transparency of the faces in the 3D view. A value of 100 indicates completely invisible faces; the faces are invisible but they can still be picked as long as VistaSelectable is true.
  • VistaVisibility: if it is true, the object appears in the 3D view; otherwise it is not present.