TeX2img.BoundingBox.Translate C# (CSharp) Method

Translate() public method

public Translate ( decimal x, decimal y ) : void
x decimal
y decimal
return void
        public void Translate(decimal x,decimal y) {
            left -= x;right -= x;
            top -= y;bottom -= y;
        }
        public override string ToString() {