Click or drag to resize
SoSplitGeometryActionPreCallback Delegate

User pre-split callback.

Namespace: OIV.Inventor.Actions
Assembly: OIV.Inventor (in OIV.Inventor.dll) Version: 2024.1.0.0 (2024.1.0)
Syntax
public delegate void PreCallback(
	SoSplitGeometryAction action,
	SoNode objectToSplit,
	int objectId,
	int divAlongX,
	int divAlongY,
	int divAlongZ
)

Parameters

action
Type: OIV.Inventor.ActionsSoSplitGeometryAction
objectToSplit
Type: OIV.Inventor.NodesSoNode
objectId
Type: SystemInt32
divAlongX
Type: SystemInt32
divAlongY
Type: SystemInt32
divAlongZ
Type: SystemInt32
Remarks

The action will call this function before splitting each shape. A pointer to the action and the node to split is given. The action's options may be modified by the callback function. The number of subdivisions can be changed as well.

See Also