Click or drag to resize
SoPickStyleMethods Enumeration

Picking method.

Namespace: OIV.Inventor.Nodes
Assembly: OIV.Inventor (in OIV.Inventor.dll) Version: 2024.1.1.0 (2024.1.1)
Syntax
public enum Methods
Members
  Member nameValueDescription
AUTO0

Select the best method to use when picking a shape.

GPU1

Always use GPU accelerated picking if the shape supports it.

CPU2

Always use CPU picking even if the shape supports another picking method.

Remarks

Specifying a method will not change the result of picking but may affect performance. Some shapes like MoMeshSkin implement a fast GPU Picking technique that may be faster than CPU picking (depending on the case). When Method is AUTO, Open Inventor will automatically determine which picking method should be used. However you can force using CPU or GPU picking technique. Please refer to OIV.Inventor.Actions.SoRayPickAction documentation for more details about GPU Picking.

See Also