예제 #1
0
        private static unsafe void _OnConstraintBreak(IntPtr self, PhyConstraintInfo *constraints, UInt32 count)
        {
            var handle = System.Runtime.InteropServices.GCHandle.FromIntPtr(self);
            var cb     = handle.Target as PhySimulationEventCallback;

            if (cb == null)
            {
                return;
            }

            cb.OnConstraintBreak(constraints, count);
        }
예제 #2
0
 public virtual unsafe void OnConstraintBreak(PhyConstraintInfo *constraints, UInt32 count)
 {
 }