Example #1
0
 private void RaiseOnTransformBoundSphereChanged(BoundingSphere newBoundSphere, BoundingSphere oldBoundSphere)
 {
     OnTransformBoundSphereChanged?.Invoke(this, ref newBoundSphere, ref oldBoundSphere);
 }
Example #2
0
 private void RaiseOnTransformBoundSphereChanged(BoundingSphere newBoundSphere, BoundingSphere oldBoundSphere)
 {
     OnTransformBoundSphereChanged?.Invoke(elementCore, new BoundChangeArgs <BoundingSphere>(ref newBoundSphere, ref oldBoundSphere));
 }
Example #3
0
 /// <summary>
 /// Raises the on transform bound sphere changed.
 /// </summary>
 /// <param name="args">The arguments.</param>
 protected void RaiseOnTransformBoundSphereChanged(BoundChangeArgs <global::SharpDX.BoundingSphere> args)
 {
     OnTransformBoundSphereChanged?.Invoke(this, args);
 }