FieldEvaluatorInterpolationEnum Enumeration

NXOpen.Fields.FieldEvaluator.InterpolationEnum is an alias for NXOpen.Fields.FieldEvaluatorInterpolationEnum

class NXOpen.Fields.FieldEvaluatorInterpolationEnum

Bases: object

Interpolation type

Enum Members

Enum Member Enum Member Description
NotSet
No interpolation method; table can only be used as a lookup
Linear1d
Standard linear interpolation between bounding points
NearestNeighbor1d
Locates the nearest point and returns its value
InverseDistanceWeighting1d
Sum of the weighted value of all points, based on the inverse of the distance
Delaunay2dFast
Triangulates the independent values and uses the bounding triangle, sacrifices accuracy for speed
Delaunay2dMedium
Triangulates the independent values and uses the bounding triangle, compromise between accuracy and speed
Delaunay2dAccurate
Triangulates the independent values and uses the bounding triangle, sacrifices speed for accuracy
NearestNeighbor2d
Locates the nearest point in a plane and returns its value
RenkaShepard2d
Refined inverse distance weighting in 2D space
InverseDistanceWeighting2d
Sum of the weighted value of all points in 2D space, based on the inverse of the distance
Delaunay3dFast
Creates Tetrahedrals using the independent values and uses the bounding tetrahedron, sacrifices accuracy for speed
Delaunay3dMedium
Creates Tetrahedrals using the independent values and uses the bounding tetrahedron, compromise between accuracy and speed
Delaunay3dAccurate
Creates Tetrahedrals using the independent values and uses the bounding tetrahedron, sacrifices speed for accuracy
NearestNeighbor3d
Locates the nearest point in space and returns its value
RenkaShepard3d
Refined inverse distance weighting in 3D space
InverseDistanceWeighting3d
Sum of the weighted value of all points in 3D space, based on the inverse of the distance
NearestNeighborNd
Locates the nearest point in N dimensional space and returns its value
RenkaShepardNd
Refined inverse distance weighting in N dimensional space
InverseDistanceWeightingNd
Sum of the weighted value of all points in N dimensional, based on the inverse of the distance
ApproxNearestNeighbor2d
Locates the approximate nearest point in a plane and returns its value
ApproxNearestNeighbor3d
Locates the approximate nearest point in space and returns its value
ApproxNearestNeighborNd
Locates the approximate nearest point in N dimensional space and returns its value
ValueOf()

Returns enum member equivalent to the value passed. Useful for bit operations of enum members.

Signature ValueOf(value)

Parameters:value – Any integer value or bit operation result of enum members:type value: int:returns: Enum member equivalent to the value passed.
Return type:Enum Member type.

New in version NX9.0.1.

License requirements: None.