Exemple #1
0
 private void RaiseOnTransformBoundChanged(BoundingBox newBound, BoundingBox oldBound)
 {
     OnTransformBoundChanged?.Invoke(this, ref newBound, ref oldBound);
 }
Exemple #2
0
 private void RaiseOnTransformBoundChanged(BoundingBox newBound, BoundingBox oldBound)
 {
     OnTransformBoundChanged?.Invoke(elementCore, new BoundChangeArgs <BoundingBox>(ref newBound, ref oldBound));
 }
Exemple #3
0
 /// <summary>
 /// Raises the on transform bound changed.
 /// </summary>
 /// <param name="args">The arguments.</param>
 protected void RaiseOnTransformBoundChanged(BoundChangeArgs <BoundingBox> args)
 {
     OnTransformBoundChanged?.Invoke(this, args);
 }