Click or drag to resize
PoBaseSetUpdateMethod Method

Sets scene graph update method.

Namespace: OIV.MeshViz.Graph
Assembly: OIV.MeshViz (in OIV.MeshViz.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax
public void SetUpdateMethod(
	PoBaseUpdateMethodTypes type
)

Parameters

type
Type: OIV.MeshViz.GraphPoBaseUpdateMethodTypes
Remarks

OIV.MeshViz.Graph.PoBase.UpdateMethodTypes.UPDATE_METHOD_IMMEDIATE indicates that each time a Graph Master or 3D Data Master object is modified, the scene graph must be updated. OIV.MeshViz.Graph.PoBase.UpdateMethodTypes.UPDATE_METHOD_ON_ACTION indicates that the scene graph does not have to be modified when a Graph Master or 3D Data Master object changes; the scene graph being modified when it is necessary (before a rendering action for instance). The faster method is OIV.MeshViz.Graph.PoBase.UpdateMethodTypes.UPDATE_METHOD_ON_ACTION and is particularly useful for representations where more than one field has to be set to obtain the definitive representation, because with the other method, each time a field is changed, the representation is rebuilt. (OIV.MeshViz.Graph.PoBase.UpdateMethodTypes.UPDATE_METHOD_ON_ACTION by default).

See Also