Avalonia.Lottie.Model.Layer.NullLayer.GetBounds C# (CSharp) Method

GetBounds() public method

public GetBounds ( Rect &outBounds, Matrix parentMatrix ) : void
outBounds Rect
parentMatrix Matrix
return void
        public override void GetBounds(ref Rect outBounds, Matrix parentMatrix)
        {
            base.GetBounds(ref outBounds, parentMatrix);
            RectExt.Set(ref outBounds, 0, 0, 0, 0);
        }
    }