osecore.app

model

Name

Description

Model

Base class for models that encapsulate the data (i.e. topography and shape)


class Model(obj)

Bases: object

Base class for models that encapsulate the data (i.e. topography and shape) for a part, and is separate from the “view” or GUI representation.

onDocumentRestored(fp)

Executed after a document is restored, or a FeaturePython object is copied or duplicated.

Parameters

fp (Part::FeaturePython) – Custom feature python object

three_dimensional_space_enums

A set of enumerations relating to three-dimensional space.

Name

Description

CoordinateAxis

A reference line in a three-dimensional cartesian coordinate system.

Plane

A plane in a three-dimensional cartesian coordinate system.

Side

A sides of a three-dimensional object available as one of FreeCAD’s standard views.


class CoordinateAxis

Bases: object

A reference line in a three-dimensional cartesian coordinate system.

X = 'x'
Y = 'y'
Z = 'z'
class Plane

Bases: object

A plane in a three-dimensional cartesian coordinate system.

XY = 'xy'
XZ = 'xz'
YZ = 'yz'
class Side

Bases: object

A sides of a three-dimensional object available as one of FreeCAD’s standard views.

See Also:

Std View Menu

BOTTOM = 'bottom'
FRONT = 'front'
LEFT = 'left'
REAR = 'rear'
RIGHT = 'right'
TOP = 'top'