PlaneCollection Class

class NXOpen.PlaneCollection

Bases: object

Represents a collection of NXOpen.Plane.

Iterating this collection only returns live uncondemned objects contained in the owning part of the collection. Note that NXOpen.Plane is a smart object and many smart objects are condemned as they only exist to support other objects and are not displayed. Condemned objects will be deleted when their references go away. To obtain an instance of this class, refer to NXOpen.BasePart

New in version NX4.0.0.

Methods

Method Description
CreateFixedPlane Creates a Plane without parameters.
CreatePlane Creates a Plane without parameters.

Method Detail

CreateFixedPlane

PlaneCollection.CreateFixedPlane

Overloaded method CreateFixedPlane

  • CreateFixedPlane(origin, matrix)
  • CreateFixedPlane(origin, matrix, show)

-------------------------------------

Creates a Plane without parameters.

Signature CreateFixedPlane(origin, matrix)

Parameters:
Returns:

the plane

Return type:

NXOpen.Plane

New in version NX11.0.0.

License requirements: None.

-------------------------------------

Creates a Plane without parameters. Has an additional input flag to control if the plane is visible or not after creation.

Signature CreateFixedPlane(origin, matrix, show)

Parameters:
Returns:

the plane

Return type:

NXOpen.Plane

New in version NX11.0.0.

License requirements: None.

-------------------------------------

CreatePlane

PlaneCollection.CreatePlane

Overloaded method CreatePlane

  • CreatePlane(origin, normal, updateOption)
  • CreatePlane(datum)
  • CreatePlane(method, alternate, origin, normal, expression, flip, percent, geometry)

-------------------------------------

Creates a Plane without parameters.

Signature CreatePlane(origin, normal, updateOption)

Parameters:
Returns:

the plane

Return type:

NXOpen.Plane

New in version NX4.0.0.

License requirements: None.

-------------------------------------

Creates a Plane using a datum plane feature.

Signature CreatePlane(datum)

Parameters:datum (NXOpen.Features.Feature) – Datum Feature
Returns:the plane
Return type:NXOpen.Plane

New in version NX4.0.0.

License requirements: None.

-------------------------------------

Creates a Plane using a datum plane feature.

Signature CreatePlane(method, alternate, origin, normal, expression, flip, percent, geometry)

Parameters:
Returns:

the plane

Return type:

NXOpen.Plane

New in version NX4.0.0.

License requirements: None.

-------------------------------------