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)Property exclusiveIfHasGeometry
Size: 8 bit / 1 byte (value)???.