private void RaiseOnTransformBoundSphereChanged(BoundingSphere newBoundSphere, BoundingSphere oldBoundSphere) { OnTransformBoundSphereChanged?.Invoke(this, ref newBoundSphere, ref oldBoundSphere); }
private void RaiseOnTransformBoundSphereChanged(BoundingSphere newBoundSphere, BoundingSphere oldBoundSphere) { OnTransformBoundSphereChanged?.Invoke(elementCore, new BoundChangeArgs <BoundingSphere>(ref newBoundSphere, ref oldBoundSphere)); }
/// <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); }