SoShapeSimplifyActionApply Method (SoPathList, Boolean) |
Initiates an action on the graph defined by a list of paths.
Namespace: OIV.Inventor.ActionsAssembly: OIV.Inventor (in OIV.Inventor.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax public override void Apply(
SoPathList path_list,
bool obeys_rules
)
Public Overrides Sub Apply (
path_list As SoPathList,
obeys_rules As Boolean
)
public:
virtual void Apply(
SoPathList^ path_list,
bool obeys_rules
) override
abstract Apply :
path_list : SoPathList *
obeys_rules : bool -> unit
override Apply :
path_list : SoPathList *
obeys_rules : bool -> unit
Parameters
- path_list
- Type: OIV.InventorSoPathList
- obeys_rules
- Type: SystemBoolean
Remarks true can be passed for the obeysRules flag if the given path list has the following 4 properties:
All paths have the same head node.
Paths are sorted in traversal order.
If one path ends at node A, no other path continues through A.
No two paths are the same.
These rules will be obeyed by path lists returned by picking and by searches for non-group nodes.
See Also