getRootAxis2Placement

...

Syntax

public const string enginedll = @"engine.dll";

[DllImport(enginedll, EntryPoint = "getRootAxis2Placement")]
public static extern Int32 x86_getRootAxis2Placement(Int32 model, bool exclusiveIfHasGeometry);

[DllImport(enginedll, EntryPoint = "getRootAxis2Placement")]
public static extern Int32 x64_getRootAxis2Placement(Int64 model, bool exclusiveIfHasGeometry);

public static Int32 getRootAxis2Placement(Int64 model, bool exclusiveIfHasGeometry)
		{
			if (IntPtr.Size == 4)
			{
				var _result = x86_getRootAxis2Placement((Int32)model, exclusiveIfHasGeometry);
				return _result;
			}
			else
			{
				return x64_getRootAxis2Placement(model, exclusiveIfHasGeometry);
			}
		}    

Property model

Size: 32 bit / 4 byte (value)
The handle to the model. The model handle is static during its existance. Several models can be opened simultaniously within one session. Different models are always independent, threads are allowed to be running on different models simultaniously.

Property exclusiveIfHasGeometry

Size: 8 bit / 1 byte (value)
???.