Zeplin.Image.Draw C# (CSharp) Method

Draw() private method

Draws this sprite using the given transformation and depth
If on a layer, depth only applies within that layer.
private Draw ( Transformation transformation ) : void
transformation Transformation The transformation to apply to the sprite
return void
        internal void Draw(Transformation transformation)
        {
            Draw(transformation, null);
        }

Same methods

Image::Draw ( Transformation transformation, Rectangle sourceRectangle ) : void