Part TopoShape/it: Difference between revisions

From FreeCAD Documentation
No edit summary
(Created page with "In particolare, l'oggetto base che gestisce questi tipi di forme è la Part Feature (classe {{incode|Part::Feature}}). Tutti gli oggetti derivati da questa...")
Line 16: Line 16:
TopoShape è un oggetto assegnato ad alcuni [[App_DocumentObject/it|App DocumentObjects]].
TopoShape è un oggetto assegnato ad alcuni [[App_DocumentObject/it|App DocumentObjects]].


In particular, the basic object that handles these types of attributes is the [[Part_Feature|Part Feature]] ({{incode|Part::Feature}} class). All objects derived from this class will have access to a Part TopoShape.
In particolare, l'oggetto base che gestisce questi tipi di forme è la [[Part_Feature/it|Part Feature]] (classe {{incode|Part::Feature}}). Tutti gli oggetti derivati da questa classe avranno accesso a una Part TopoShape.


Some of the most important objects with Part TopoShape are the following:
Some of the most important objects with Part TopoShape are the following:

Revision as of 20:41, 2 June 2020

Introduzione

Una Part TopoShape, o formalmente una Part::TopoShape, è una classe che definisce una "forma topologica" parametrica nel software. Gli oggetti del documento che mostrano qualcosa nella vista 3D normalmente hanno una TopoShape.

Le forme topologiche, così come i loro metodi, sono definiti dal kernel OpenCASCADE Technology (OCCT). FreeCAD usa queste forme e crea dei App DocumentObjects attorno ad esse.

Diagramma semplificato delle relazioni tra gli oggetti principali del programma. La classe Part::TopoShape è incorporata nell'oggetto Part::Feature e da lì viene propagata a tutti gli oggetti che ne derivano.

Utilizzo

TopoShape è un oggetto assegnato ad alcuni App DocumentObjects.

In particolare, l'oggetto base che gestisce questi tipi di forme è la Part Feature (classe Part::Feature). Tutti gli oggetti derivati da questa classe avranno accesso a una Part TopoShape.

Some of the most important objects with Part TopoShape are the following:

Scripting

See also: FreeCAD Scripting Basics, and scripted objects.

All objects derived from Part::Feature will have a Part TopoShape, which is normally accessible from its Shape attribute.

import FreeCAD as App

doc = App.newDocument()
obj = App.ActiveDocument.addObject("Part::Box", "Box")
print(obj.Shape)

A TopoShape has many attributes (variables) and methods that contain information about it, and which allow doing operations with it. These variables and methods can be tested in the Python console.

print(obj.Shape.Area)
print(obj.Shape.BoundBox)
print(obj.Shape.CenterOfMass)
print(obj.Shape.ShapeType)

obj.Shape.check()
obj.Shape.copy()
obj.Shape.exportStep("my_file.step")
obj.Shape.exportStl("my_file.stl")

For a full list of attributes and methods, consult the source documentation, and the Std PythonHelp tool.